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 a7448cb2e3..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 responsiblity 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 d31c820421..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 }} - - - name: Free up disk space - run: | - sudo docker rmi $(sudo docker image ls | grep -E -m1 '' | awk '{ print $3 }') - sudo docker rmi $(sudo docker image ls | awk '/ubuntu-hpc/ { print $3 }') - - - 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/.gitignore b/.gitignore index 460a60a019..30e3d46945 100644 --- a/.gitignore +++ b/.gitignore @@ -62,9 +62,15 @@ rt.conf.single ufs_model tests/modules.fv3_* tests/ecflow_run/ +tests/ecf_comdir/ +tests/ecf_outputdir/ tests/log_*/ tests/lock/ tests/Compile_*.log tests/fail_test +tests/fv3_conf/compile_slurm.IN +tests/fv3_conf/compile_qsub.IN +tests/fv3_conf/fv3_slurm.IN +tests/fv3_conf/fv3_qsub.IN log* build*.log* diff --git a/.gitmodules b/.gitmodules index 5ece87098e..b83f18e92d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,14 +1,14 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + url = https://github.com/tanyasmirnova/fv3atm + branch = ufsdev_ruclsm [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 branch = dev/ufs-weather-model [submodule "stochastic_physics"] path = stochastic_physics - url = https://github.com/noaa-psd/stochastic_physics + url = https://github.com/NOAA-PSL/stochastic_physics branch = master [submodule "CMakeModules"] path = CMakeModules @@ -42,3 +42,7 @@ path = AQM url = https://github.com/NOAA-EMC/AQM branch = develop +[submodule "NOAHMP"] + path = NOAHMP-interface/noahmp + url = https://github.com/NOAA-EMC/noahmp + branch = develop diff --git a/AQM b/AQM index 79ff7a9899..572f3cc272 160000 --- a/AQM +++ b/AQM @@ -1 +1 @@ -Subproject commit 79ff7a9899462a674526c1abaf7044cb2963786d +Subproject commit 572f3cc2727916d8805aae162b656566874bb88a diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index f1ed1b8de6..94acf25b86 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit f1ed1b8de64f466efb24bddb40d4406425b3db07 +Subproject commit 94acf25b8692e38b3c8314125278cdc2700fb869 diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 3990572168..7a9379d210 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -14,7 +14,6 @@ list(APPEND cdeps_share_files CDEPS/share/shr_const_mod.F90 CDEPS/share/shr_kind_mod.F90 CDEPS/share/shr_log_mod.F90 - CDEPS/share/shr_mpi_mod.F90 CDEPS/share/shr_orb_mod.F90 CDEPS/share/shr_precip_mod.F90 CDEPS/share/shr_strconvert_mod.F90 diff --git a/CICE-interface/CICE b/CICE-interface/CICE index c660075e50..e628a9a696 160000 --- a/CICE-interface/CICE +++ b/CICE-interface/CICE @@ -1 +1 @@ -Subproject commit c660075e50530add27cf920ece06911577612a80 +Subproject commit e628a9a696bd146a0036e946884b9f9102ebd8e4 diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index 3dd4d055a1..b841ac0e10 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -7,7 +7,7 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_LINK_FLAGS "" ) elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") set(CMAKE_Fortran_FLAGS "-g -traceback") - set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte -xHOST") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -FR -convert big_endian -assume byterecl -ftz -align array64byte") set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -fp-model precise") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check uninit -check bounds -check pointers -fpe0 -check noarg_temp_created -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "") @@ -24,7 +24,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "GNU") set(CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") set( CMAKE_C_FLAGS "-g -traceback") - set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -xHOST") + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS}") set( CMAKE_C_FLAGS_RELEASE "-O2 -fp-model precise") set( CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set( CMAKE_C_LINK_FLAGS "") diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index bc008ed6a5..4b0b2f7421 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -13,43 +13,44 @@ list(APPEND cice_shared_files CICE/cicecore/shared/ice_spacecurve.F90 #Analysis List: - CICE/cicecore/cicedynB/analysis/ice_diagnostics.F90 - CICE/cicecore/cicedynB/analysis/ice_diagnostics_bgc.F90 - CICE/cicecore/cicedynB/analysis/ice_history.F90 - CICE/cicecore/cicedynB/analysis/ice_history_bgc.F90 - CICE/cicecore/cicedynB/analysis/ice_history_drag.F90 - CICE/cicecore/cicedynB/analysis/ice_history_fsd.F90 - CICE/cicecore/cicedynB/analysis/ice_history_mechred.F90 - CICE/cicecore/cicedynB/analysis/ice_history_pond.F90 - CICE/cicecore/cicedynB/analysis/ice_history_shared.F90 - CICE/cicecore/cicedynB/analysis/ice_history_snow.F90 + CICE/cicecore/cicedyn/analysis/ice_diagnostics.F90 + CICE/cicecore/cicedyn/analysis/ice_diagnostics_bgc.F90 + CICE/cicecore/cicedyn/analysis/ice_history.F90 + CICE/cicecore/cicedyn/analysis/ice_history_bgc.F90 + CICE/cicecore/cicedyn/analysis/ice_history_drag.F90 + CICE/cicecore/cicedyn/analysis/ice_history_fsd.F90 + CICE/cicecore/cicedyn/analysis/ice_history_mechred.F90 + CICE/cicecore/cicedyn/analysis/ice_history_pond.F90 + CICE/cicecore/cicedyn/analysis/ice_history_shared.F90 + CICE/cicecore/cicedyn/analysis/ice_history_snow.F90 #Dynamics List: - CICE/cicecore/cicedynB/dynamics/ice_dyn_eap.F90 - CICE/cicecore/cicedynB/dynamics/ice_dyn_evp.F90 - CICE/cicecore/cicedynB/dynamics/ice_dyn_evp_1d.F90 - CICE/cicecore/cicedynB/dynamics/ice_dyn_shared.F90 - CICE/cicecore/cicedynB/dynamics/ice_dyn_vp.F90 - CICE/cicecore/cicedynB/dynamics/ice_transport_driver.F90 - CICE/cicecore/cicedynB/dynamics/ice_transport_remap.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_eap.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_evp.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_evp_1d.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_shared.F90 + CICE/cicecore/cicedyn/dynamics/ice_dyn_vp.F90 + CICE/cicecore/cicedyn/dynamics/ice_transport_driver.F90 + CICE/cicecore/cicedyn/dynamics/ice_transport_remap.F90 #General List: - CICE/cicecore/cicedynB/general/ice_flux.F90 - CICE/cicecore/cicedynB/general/ice_flux_bgc.F90 - CICE/cicecore/cicedynB/general/ice_forcing.F90 - CICE/cicecore/cicedynB/general/ice_forcing_bgc.F90 - CICE/cicecore/cicedynB/general/ice_init.F90 - CICE/cicecore/cicedynB/general/ice_state.F90 - CICE/cicecore/cicedynB/general/ice_step_mod.F90 + CICE/cicecore/cicedyn/general/ice_flux.F90 + CICE/cicecore/cicedyn/general/ice_flux_bgc.F90 + CICE/cicecore/cicedyn/general/ice_forcing.F90 + CICE/cicecore/cicedyn/general/ice_forcing_bgc.F90 + CICE/cicecore/cicedyn/general/ice_init.F90 + CICE/cicecore/cicedyn/general/ice_state.F90 + CICE/cicecore/cicedyn/general/ice_step_mod.F90 #Infrastructure List - CICE/cicecore/cicedynB/infrastructure/ice_blocks.F90 - CICE/cicecore/cicedynB/infrastructure/ice_domain.F90 - CICE/cicecore/cicedynB/infrastructure/ice_grid.F90 - CICE/cicecore/cicedynB/infrastructure/ice_read_write.F90 - CICE/cicecore/cicedynB/infrastructure/ice_restart_driver.F90 - CICE/cicecore/cicedynB/infrastructure/ice_restoring.F90 -) + CICE/cicecore/cicedyn/infrastructure/ice_blocks.F90 + CICE/cicecore/cicedyn/infrastructure/ice_domain.F90 + CICE/cicecore/cicedyn/infrastructure/ice_grid.F90 + CICE/cicecore/cicedyn/infrastructure/ice_read_write.F90 + CICE/cicecore/cicedyn/infrastructure/ice_restart_driver.F90 + CICE/cicecore/cicedyn/infrastructure/ice_restoring.F90 + CICE/cicecore/cicedyn/infrastructure/ice_memusage.F90 + CICE/cicecore/cicedyn/infrastructure/ice_memusage_gptl.c) #Icepack List: @@ -67,7 +68,6 @@ list(APPEND icepack_files CICE/icepack/columnphysics/icepack_itd.F90 CICE/icepack/columnphysics/icepack_kinds.F90 CICE/icepack/columnphysics/icepack_mechred.F90 - CICE/icepack/columnphysics/icepack_meltpond_cesm.F90 CICE/icepack/columnphysics/icepack_meltpond_lvl.F90 CICE/icepack/columnphysics/icepack_meltpond_topo.F90 CICE/icepack/columnphysics/icepack_mushy_physics.F90 @@ -76,7 +76,6 @@ list(APPEND icepack_files CICE/icepack/columnphysics/icepack_parameters.F90 CICE/icepack/columnphysics/icepack_shortwave.F90 CICE/icepack/columnphysics/icepack_snow.F90 - CICE/icepack/columnphysics/icepack_therm_0layer.F90 CICE/icepack/columnphysics/icepack_therm_bl99.F90 CICE/icepack/columnphysics/icepack_therm_itd.F90 CICE/icepack/columnphysics/icepack_therm_mushy.F90 @@ -91,58 +90,50 @@ list(APPEND icepack_files ) list(APPEND cice_shared_files_c - CICE/cicecore/cicedynB/infrastructure/ice_shr_reprosum86.c + CICE/cicecore/cicedyn/infrastructure/ice_shr_reprosum86.c ) #-- Using MPI list(APPEND cice_mpi_comm_files - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_boundary.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_broadcast.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_communicate.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_exit.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_gather_scatter.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_global_reductions.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_reprosum.F90 - CICE/cicecore/cicedynB/infrastructure/comm/mpi/ice_timers.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_boundary.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_broadcast.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_communicate.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_exit.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_gather_scatter.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_global_reductions.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_reprosum.F90 + CICE/cicecore/cicedyn/infrastructure/comm/mpi/ice_timers.F90 ) #-- Using Serial list(APPEND cice_serial_comm_files - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_boundary.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_broadcast.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_communicate.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_exit.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_gather_scatter.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_global_reductions.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_reprosum.F90 - CICE/cicecore/cicedynB/infrastructure/comm/serial/ice_timers.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_boundary.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_broadcast.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_communicate.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_exit.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_gather_scatter.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_global_reductions.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_reprosum.F90 + CICE/cicecore/cicedyn/infrastructure/comm/serial/ice_timers.F90 ) #-- Using binary IO list(APPEND cice_binary_io_files - CICE/cicecore/cicedynB/infrastructure/io/io_binary/ice_history_write.F90 - CICE/cicecore/cicedynB/infrastructure/io/io_binary/ice_restart.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_binary/ice_history_write.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_binary/ice_restart.F90 ) #-- Using NetCDF IO list(APPEND cice_netcdf_io_files - CICE/cicecore/cicedynB/infrastructure/io/io_netcdf/ice_history_write.F90 - CICE/cicecore/cicedynB/infrastructure/io/io_netcdf/ice_restart.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_netcdf/ice_history_write.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_netcdf/ice_restart.F90 ) #PIO2 I/O List: list(APPEND cice_pio2_io_files - CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_history_write.F90 - CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_pio.F90 - CICE/cicecore/cicedynB/infrastructure/io/io_pio2/ice_restart.F90 -) - -#-- Using standalone driver -list(APPEND cice_standalone_driver_files - CICE/cicecore/drivers/standalone/cice/CICE.F90 - CICE/cicecore/drivers/standalone/cice/CICE_FinalMod.F90 - CICE/cicecore/drivers/standalone/cice/CICE_InitMod.F90 - CICE/cicecore/drivers/standalone/cice/CICE_RunMod.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_pio2/ice_history_write.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_pio2/ice_pio.F90 + CICE/cicecore/cicedyn/infrastructure/io/io_pio2/ice_restart.F90 ) #-- Using NUOPC CMEPS driver @@ -158,32 +149,3 @@ list(APPEND cice_nuopc_cmeps_driver_files CICE/cicecore/drivers/nuopc/cmeps/ice_shr_methods.F90 CICE/cicecore/drivers/nuopc/cmeps/ice_mesh_mod.F90 ) - -#-- Using NUOPC DMI driver -list(APPEND cice_nuopc_dmi_driver_files - CICE/cicecore/drivers/nuopc/dmi/CICE.F90 - CICE/cicecore/drivers/nuopc/dmi/CICE_FinalMod.F90 - CICE/cicecore/drivers/nuopc/dmi/CICE_InitMod.F90 - CICE/cicecore/drivers/nuopc/dmi/CICE_RunMod.F90 -) - -#-- Using direct driver -list(APPEND cice_direct_driver_files - CICE/cicecore/drivers/direct/hadgem3/CICE.F90 - CICE/cicecore/drivers/direct/hadgem3/CICE_FinalMod.F90 - CICE/cicecore/drivers/direct/hadgem3/CICE_InitMod.F90 - CICE/cicecore/drivers/direct/hadgem3/CICE_RunMod.F90 -) - -#-- Using MCT driver -list(APPEND cice_mct_driver_files - CICE/cicecore/drivers/mct/cesm1/CICE_FinalMod.F90 - CICE/cicecore/drivers/mct/cesm1/CICE_InitMod.F90 - CICE/cicecore/drivers/mct/cesm1/CICE_RunMod.F90 - CICE/cicecore/drivers/mct/cesm1/ice_comp_esmf.F90 - CICE/cicecore/drivers/mct/cesm1/ice_comp_mct.F90 - CICE/cicecore/drivers/mct/cesm1/ice_cpl_indices.F90 - CICE/cicecore/drivers/mct/cesm1/ice_import_export.F90 - CICE/cicecore/drivers/mct/cesm1/ice_prescribed_mod.F90 - CICE/cicecore/drivers/mct/cesm1/ice_scam.F90 -) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 763405c02a..4511994b49 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 763405c02a8f7eec8c1e1a360fcb5bf3570604e1 +Subproject commit 4511994b498e349393eb56d3f19756ca458c7d65 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 60104f0dc5..19d530c074 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -1,4 +1,7 @@ -# CMEPS compiler flags +############################################################################### +### CMEPS compiler flags +############################################################################### + if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) @@ -18,6 +21,10 @@ else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() +############################################################################### +### Source files +############################################################################### + list(APPEND _nems_util_files CMEPS/ufs/flux_atmocn_mod.F90 CMEPS/ufs/glc_elevclass_mod.F90 @@ -62,12 +69,104 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_rof_mod.F90 CMEPS/mediator/med_phases_post_wav_mod.F90) -### Create target library and set PUBLIC interfaces on the library -add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files}) +############################################################################### +### Host model for CCPP +############################################################################### + +if(CMEPS_AOFLUX) + ### Query CCPP path + get_filename_component(FV3_PATH "../FV3" REALPATH) + + ### If FV3 is available build CCPP host model under CMEPS too + if(EXISTS ${FV3_PATH}) + ### Print out information + message("FV3_PATH = ${FV3_PATH}") + message("Compiling CMEPS with CCPP support.") + + ### Set environment variable for FV3 directory, used by config file + set(ENV{FV3_PATH} ${FV3_PATH}) + + ### Set suite file that needs to be compiled + set(_ccpp_suites_arg "--suites=FV3_sfc_ocean") + + ### Set options for ccpp_prebuild.py + if(DEBUG) + ### Enable debugging features in auto-generated physics caps + set(_ccpp_debug_arg "--debug") + ### Enable verbose output from ccpp_prebuild.py + set(_ccpp_verbose_arg "--verbose") + endif() + + ### Trigger ccpp_prebuild.py script to connect host model with CCPP physics + message("Calling CCPP code generator (ccpp_prebuild.py) for suites ${_ccpp_suites_arg} ...") + execute_process( + COMMAND ${Python_EXECUTABLE} + "${FV3_PATH}/ccpp/framework/scripts/ccpp_prebuild.py" + "--config=CMEPS/ufs/ccpp/config/ccpp_prebuild_config.py" + "--builddir=${CMAKE_CURRENT_BINARY_DIR}" + "--namespace=med" + ${_ccpp_suites_arg} + ${_ccpp_debug_arg} + ${_ccpp_verbose_arg} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.out + ERROR_FILE ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.err + RESULT_VARIABLE return_code) + + ### Check return code from CCPP prebuild.py + if(return_code EQUAL 0) + message (STATUS "CCPP prebuild step completed successfully") + else(return_code EQUAL 0) + message (FATAL_ERROR "CCPP prebuild step failed, check ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.{out,err}") + endif(return_code EQUAL 0) + + ### Add extra driver file to the source + list(APPEND _nems_util_files + CMEPS/ufs/ccpp/driver/med_ccpp_driver.F90 + CMEPS/ufs/flux_atmocn_ccpp_mod.F90 + CMEPS/ufs/ufs_io_mod.F90) + + ### Set the sources: type definitions + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_TYPEDEFS.cmake) + foreach(typedef_module ${TYPEDEFS}) + list(APPEND MODULES_F90 ${CMAKE_CURRENT_BINARY_DIR}/${typedef_module}) + endforeach() + + ### Set the sources: physics schemes + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_SCHEMES.cmake) + + ### Set the sources: static API + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_STATIC_API.cmake) + + ### Set the sources: cap + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_CAPS.cmake) + + ### Generate list of Fortran modules from defined sources + foreach(source_f90 ${CAPS} ${API}) + get_filename_component(tmp_source_f90 ${source_f90} NAME) + string(REGEX REPLACE ".F90" ".mod" tmp_module_f90 ${tmp_source_f90}) + string(TOLOWER ${tmp_module_f90} module_f90) + list(APPEND MODULES_F90 ${CMAKE_CURRENT_BINARY_DIR}/${module_f90}) + endforeach() + + ### Add special CPP flag for CMEPS/CCPP support + add_definitions(-DUFS_AOFLUX) + endif() +endif() + +############################################################################### +### Libraries +############################################################################### + +### Create target library +add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files} ${SCHEMES} ${CAPS} ${API}) + +### Set PUBLIC interfaces on the library set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(cmeps PUBLIC $ $) -target_link_libraries(cmeps PUBLIC esmf +target_link_libraries(cmeps PUBLIC fms + esmf PIO::PIO_Fortran) if(OpenMP_Fortran_FOUND) target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4bfdfab30e..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 S2S S2SA S2SW S2SWA HAFS HAFSW HAFS-ALL NG-GODAS) +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}") @@ -33,6 +33,7 @@ set(WW3 OFF CACHE BOOL "Enable WW3") set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") set(CMEPS OFF CACHE BOOL "Enable CMEPS") set(CDEPS OFF CACHE BOOL "Enable CDEPS") +set(NOAHMP OFF CACHE BOOL "Enable NOAHMP") # Configure selected application specific components message("") @@ -50,22 +51,25 @@ message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") message("CDEPS ............ ${CDEPS}") message("CMEPS ............ ${CMEPS}") +message("NOAHMP ........... ${NOAHMP}") ############################################################################### ### Build Options ############################################################################### -set(32BIT OFF CACHE BOOL "Enable 32BIT (single precision arithmetic in dycore)") +set(32BIT OFF CACHE BOOL "Enable 32BIT (single precision arithmetic in dycore and fast physics)") +set(CCPP_32BIT OFF CACHE BOOL "Enable CCPP_32BIT (single precision arithmetic in slow physics)") set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") set(DEBUG OFF CACHE BOOL "Enable DEBUG mode") set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") -set(INLINE_POST OFF CACHE BOOL "Enable inline post") +set(INLINE_POST ON CACHE BOOL "Enable inline post") set(MULTI_GASES OFF CACHE BOOL "Enable MULTI_GASES") set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -80,6 +84,7 @@ endif() message("") message("32BIT ............ ${32BIT}") +message("CCPP_32BIT ....... ${CCPP_32BIT}") message("AVX2 ............. ${AVX2}") message("SIMDMULTIARCH .... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") @@ -90,6 +95,8 @@ message("MOVING_NEST ...... ${MOVING_NEST}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") +message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") + message("") ############################################################################### @@ -110,23 +117,32 @@ find_package(MPI REQUIRED) if(OPENMP) find_package(OpenMP REQUIRED) endif() -find_package(NetCDF REQUIRED C Fortran) -find_package(ESMF MODULE REQUIRED) + +find_package(NetCDF 4.7.4 REQUIRED C Fortran) +find_package(ESMF 8.3.0 MODULE REQUIRED) if(FMS) - find_package(FMS REQUIRED COMPONENTS R4 R8) - if(32BIT) + find_package(FMS 2022.04 REQUIRED COMPONENTS R4 R8) + if(APP MATCHES "^(HAFSW)$") add_library(fms ALIAS FMS::fms_r4) - else() + 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|HAFS|HAFS-ALL)$") + if(32BIT) + add_library(fms ALIAS FMS::fms_r4) + else() + add_library(fms ALIAS FMS::fms_r8) + endif() + endif() endif() + if(CMEPS) - find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) + find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran STATIC) endif() -find_package(bacio REQUIRED) -find_package(sp REQUIRED) -find_package(w3nco REQUIRED) +find_package(bacio 2.4.0 REQUIRED) +find_package(sp 2.3.3 REQUIRED) +find_package(w3emc 2.9.2 REQUIRED) # Configure Python find_package(Python 3.6 REQUIRED COMPONENTS Interpreter) @@ -164,9 +180,15 @@ endif() ### Wave components [WW3] ############################################################################### if(WW3) - # Set options for WW3 build - set(SWITCH "multi_esmf" CACHE STRING "Default to switch_multi_esmf") - set(MULTI_ESMF ON CACHE BOOL "Enable ESMF for WW3") + if(APP MATCHES "^(ATMW)$") + set(SWITCH "multi_esmf" CACHE STRING "ESMF cap") + set(UFS_CAP "MULTI_ESMF" CACHE STRING "Build with MULTI_ESMF cap") + list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) + else() + set(SWITCH "meshcap" CACHE STRING "NUOPC mesh cap") + set(UFS_CAP "NUOPC_MESH" CACHE STRING "Build with NUOPC_MESH cap") + list(APPEND _ufs_defs_private FRONT_WW3=wav_comp_nuopc) + endif() add_subdirectory(WW3) endif() @@ -199,10 +221,17 @@ if(CDEPS) add_subdirectory(CDEPS-interface) endif() +############################################################################### +### Land Components [NOAHMP] +############################################################################### +if(NOAHMP) + add_subdirectory(NOAHMP-interface) +endif() + ############################################################################### ### UFS Library ############################################################################### -add_library(ufs driver/EARTH_GRID_COMP.F90) +add_library(ufs driver/UFSDriver.F90) set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs INTERFACE $ @@ -225,7 +254,6 @@ if(UFS_GOCART) endif() if(WW3) - list(APPEND _ufs_defs_private FRONT_WW3=WMESMFMD) target_link_libraries(ufs PUBLIC WW3::WW3) endif() @@ -272,6 +300,12 @@ if(CDEPS) target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() +if(NOAHMP) + add_dependencies(ufs noahmp) + list(APPEND _ufs_defs_private FRONT_NOAHMP=lnd_comp_nuopc) + list(APPEND _ufs_libs_public noahmp) +endif() + target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") @@ -280,7 +314,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) -target_link_libraries(ufs_model ufs esmf w3nco::w3nco_d) +target_link_libraries(ufs_model ufs esmf w3emc::w3emc_d) ############################################################################### ### Install diff --git a/FV3 b/FV3 index 1e9c3da5e0..dd72eb1e55 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 1e9c3da5e0cc9efcc434cb3a2ea08a9f521939d2 +Subproject commit dd72eb1e558d52482624ae2cb88432d72ba1e8bd diff --git a/GOCART b/GOCART index 1ff638919f..b94145fca4 160000 --- a/GOCART +++ b/GOCART @@ -1 +1 @@ -Subproject commit 1ff638919fad66e79120eef07daf835c6fee12a4 +Subproject commit b94145fca46169bbc53ec6b8d4ed849715dc5130 diff --git a/HYCOM-interface/CMakeLists.txt b/HYCOM-interface/CMakeLists.txt index 2566905b27..3a5fcdaefa 100644 --- a/HYCOM-interface/CMakeLists.txt +++ b/HYCOM-interface/CMakeLists.txt @@ -9,9 +9,9 @@ if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) set(CMAKE_Fortran_LINK_FLAGS "") elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") - set(CMAKE_Fortran_FLAGS "-g -traceback -xSSE4.2 -mcmodel=small -r8") + set(CMAKE_Fortran_FLAGS "-g -traceback -mcmodel=small -r8 ${HYCOM_Extra_FORTRAN_FLAGS}") set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") - set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check all -fpe0 -ftrapuv -link_mpi=dbg -init=snan,arrays") set(CMAKE_Fortran_LINK_FLAGS "-V ${CMAKE_Fortran_FLAGS} -static-intel") else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") @@ -24,7 +24,7 @@ if(CMAKE_C_COMPILER_ID MATCHES "GNU") set(CMAKE_C_FLAGS_DEBUG "-O0") set(CMAKE_C_LINK_FLAGS "") elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") - set(CMAKE_C_FLAGS "-g -traceback -xSSE4.2 -mcmodel=small") + set(CMAKE_C_FLAGS "-g -traceback -mcmodel=small ${HYCOM_Extra_C_FLAGS}") set(CMAKE_C_FLAGS_RELEASE "-O") set(CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") diff --git a/HYCOM-interface/HYCOM b/HYCOM-interface/HYCOM index 09bdf00e50..24437531dc 160000 --- a/HYCOM-interface/HYCOM +++ b/HYCOM-interface/HYCOM @@ -1 +1 @@ -Subproject commit 09bdf00e500d99e2b8811c0571258f86c14efc30 +Subproject commit 24437531dcf8580aadaf6ebeb9de544ccfc674f9 diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index e532d86253..520a4d1b09 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit e532d86253a86d9ae23da8199ef27653339f0768 +Subproject commit 520a4d1b09b944b2e77eea9d13433cd488edbd16 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index fd6dbfd2f7..9448378f8c 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -14,6 +14,9 @@ list(APPEND mom6_src_files MOM6/src/ALE/coord_sigma.F90 MOM6/src/ALE/coord_slight.F90 MOM6/src/ALE/coord_zlike.F90 + MOM6/src/ALE/MOM_hybgen_regrid.F90 + MOM6/src/ALE/MOM_hybgen_remap.F90 + MOM6/src/ALE/MOM_hybgen_unmix.F90 MOM6/src/ALE/polynomial_functions.F90 MOM6/src/ALE/regrid_consts.F90 MOM6/src/ALE/regrid_edge_values.F90 @@ -28,6 +31,7 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_barotropic.F90 MOM6/src/core/MOM_boundary_update.F90 MOM6/src/core/MOM_checksum_packages.F90 + MOM6/src/core/MOM_check_scaling.F90 MOM6/src/core/MOM_continuity.F90 MOM6/src/core/MOM_continuity_PPM.F90 MOM6/src/core/MOM_density_integrals.F90 @@ -40,6 +44,7 @@ list(APPEND mom6_src_files MOM6/src/core/MOM_isopycnal_slopes.F90 MOM6/src/core/MOM_open_boundary.F90 MOM6/src/core/MOM_porous_barriers.F90 + MOM6/src/core/MOM_stoch_eos.F90 MOM6/src/core/MOM_transcribe_grid.F90 MOM6/src/core/MOM_unit_tests.F90 MOM6/src/core/MOM_variables.F90 @@ -73,6 +78,7 @@ list(APPEND mom6_src_files MOM6/src/equation_of_state/TEOS10/gsw_gibbs.f90 MOM6/src/equation_of_state/TEOS10/gsw_gibbs_ice.f90 MOM6/src/equation_of_state/TEOS10/gsw_gibbs_pt0_pt0.f90 + MOM6/src/equation_of_state/TEOS10/gsw_mod_error_functions.f90 MOM6/src/equation_of_state/TEOS10/gsw_mod_freezing_poly_coefficients.f90 MOM6/src/equation_of_state/TEOS10/gsw_mod_gibbs_ice_coefficients.f90 MOM6/src/equation_of_state/TEOS10/gsw_mod_kinds.f90 @@ -116,12 +122,16 @@ list(APPEND mom6_src_files MOM6/src/framework/MOM_interpolate.F90 MOM6/src/framework/MOM_intrinsic_functions.F90 MOM6/src/framework/MOM_io.F90 + MOM6/src/framework/posix.F90 MOM6/src/framework/MOM_random.F90 MOM6/src/framework/MOM_restart.F90 MOM6/src/framework/MOM_safe_alloc.F90 MOM6/src/framework/MOM_string_functions.F90 MOM6/src/framework/MOM_unit_scaling.F90 + MOM6/src/framework/MOM_unique_scales.F90 + MOM6/src/framework/MOM_unit_testing.F90 MOM6/src/framework/MOM_write_cputime.F90 + MOM6/src/framework/testing/MOM_file_parser_tests.F90 MOM6/src/ice_shelf/MOM_ice_shelf.F90 MOM6/src/ice_shelf/MOM_ice_shelf_diag_mediator.F90 @@ -141,9 +151,12 @@ list(APPEND mom6_src_files MOM6/src/parameterizations/lateral/MOM_MEKE.F90 MOM6/src/parameterizations/lateral/MOM_MEKE_types.F90 MOM6/src/parameterizations/lateral/MOM_hor_visc.F90 + MOM6/src/parameterizations/lateral/MOM_interface_filter.F90 MOM6/src/parameterizations/lateral/MOM_internal_tides.F90 + MOM6/src/parameterizations/lateral/MOM_load_love_numbers.F90 MOM6/src/parameterizations/lateral/MOM_lateral_mixing_coeffs.F90 MOM6/src/parameterizations/lateral/MOM_mixed_layer_restrat.F90 + MOM6/src/parameterizations/lateral/MOM_spherical_harmonics.F90 MOM6/src/parameterizations/lateral/MOM_thickness_diffuse.F90 MOM6/src/parameterizations/lateral/MOM_tidal_forcing.F90 @@ -201,6 +214,7 @@ list(APPEND mom6_src_files MOM6/src/tracer/MOM_tracer_flow_control.F90 MOM6/src/tracer/MOM_tracer_hor_diff.F90 MOM6/src/tracer/MOM_tracer_registry.F90 + MOM6/src/tracer/MOM_tracer_types.F90 MOM6/src/tracer/RGC_tracer.F90 MOM6/src/tracer/advection_test_tracer.F90 MOM6/src/tracer/boundary_impulse_tracer.F90 @@ -260,19 +274,21 @@ list(APPEND mom6_src_files MOM6/config_src/external/ODA_hooks/write_ocean_obs.F90 MOM6/config_src/external/drifters/MOM_particles.F90 MOM6/config_src/external/drifters/MOM_particles_types.F90 + MOM6/config_src/external/database_comms/MOM_database_comms.F90 + MOM6/config_src/external/database_comms/database_client_interface.F90 - MOM6/config_src/infra/FMS1/MOM_coms_infra.F90 - MOM6/config_src/infra/FMS1/MOM_constants.F90 - MOM6/config_src/infra/FMS1/MOM_couplertype_infra.F90 - MOM6/config_src/infra/FMS1/MOM_cpu_clock_infra.F90 - MOM6/config_src/infra/FMS1/MOM_data_override_infra.F90 - MOM6/config_src/infra/FMS1/MOM_diag_manager_infra.F90 - MOM6/config_src/infra/FMS1/MOM_domain_infra.F90 - MOM6/config_src/infra/FMS1/MOM_ensemble_manager_infra.F90 - MOM6/config_src/infra/FMS1/MOM_error_infra.F90 - MOM6/config_src/infra/FMS1/MOM_interp_infra.F90 - MOM6/config_src/infra/FMS1/MOM_io_infra.F90 - MOM6/config_src/infra/FMS1/MOM_time_manager.F90 + MOM6/config_src/infra/FMS2/MOM_coms_infra.F90 + MOM6/config_src/infra/FMS2/MOM_constants.F90 + MOM6/config_src/infra/FMS2/MOM_couplertype_infra.F90 + MOM6/config_src/infra/FMS2/MOM_cpu_clock_infra.F90 + MOM6/config_src/infra/FMS2/MOM_data_override_infra.F90 + MOM6/config_src/infra/FMS2/MOM_diag_manager_infra.F90 + MOM6/config_src/infra/FMS2/MOM_domain_infra.F90 + MOM6/config_src/infra/FMS2/MOM_ensemble_manager_infra.F90 + MOM6/config_src/infra/FMS2/MOM_error_infra.F90 + MOM6/config_src/infra/FMS2/MOM_interp_infra.F90 + MOM6/config_src/infra/FMS2/MOM_io_infra.F90 + MOM6/config_src/infra/FMS2/MOM_time_manager.F90 ) @@ -283,6 +299,7 @@ list(APPEND mom6_nuopc_src_files MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90 MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90 MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 + MOM6/config_src/drivers/unit_tests/MOM_unit_test_driver.F90 ) list(APPEND mom6_solo_src_files diff --git a/NOAHMP-interface/CMakeLists.txt b/NOAHMP-interface/CMakeLists.txt new file mode 100644 index 0000000000..008327d573 --- /dev/null +++ b/NOAHMP-interface/CMakeLists.txt @@ -0,0 +1,83 @@ +#------------------------------------------------------------------------------ +# Add source files +# NUOPC cap +list(APPEND _noahmp_cap_files noahmp/drivers/nuopc/lnd_comp_kind.F90 + noahmp/drivers/nuopc/lnd_comp_types.F90 + noahmp/drivers/nuopc/lnd_comp_shr.F90 + noahmp/drivers/nuopc/lnd_comp_io.F90 + noahmp/drivers/nuopc/lnd_comp_domain.F90 + noahmp/drivers/nuopc/lnd_comp_import_export.F90 + noahmp/drivers/nuopc/lnd_comp_nuopc.F90 + noahmp/drivers/nuopc/lnd_comp_driver.F90) + +# CCPP interface +list(APPEND _noahmp_ccpp_files noahmp/drivers/ccpp/noahmpdrv.F90 + noahmp/drivers/ccpp/sfc_diff.f + noahmp/drivers/ccpp/machine.F + noahmp/drivers/ccpp/noahmp_tables.f90 + noahmp/drivers/ccpp/namelist_soilveg.f + noahmp/drivers/ccpp/set_soilveg.f + noahmp/drivers/ccpp/funcphys.f90 + noahmp/drivers/ccpp/physcons.F90) + +# NoahMP +list(APPEND _noahmp_files noahmp/src/module_sf_noahmplsm.f90 + noahmp/src/module_sf_noahmp_glacier.f90) + +#------------------------------------------------------------------------------ +# Set CCPP flags for C/C++/Fortran preprocessor +add_definitions(-DCCPP) + +#------------------------------------------------------------------------------ +# Set MPI flags for C/C++/Fortran preprocessor +if(MPI) + add_definitions(-DMPI) +endif() + +#------------------------------------------------------------------------------ +# Set flag for 32bit dynamics build +if(32BIT) + message(STATUS "Compile CCPP slow physics with 64-bit precision, fast physics with 32-bit precision") + add_definitions(-DOVERLOAD_R4) + if(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS_PHYSICS "-real-size 64 -no-prec-div -no-prec-sqrt") + elseif(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS_PHYSICS "-fdefault-real-8 -fdefault-double-8") + endif() + set(CMAKE_Fortran_FLAGS_DYNAMICS "") +else() + message(STATUS "Compile CCPP physics with 64-bit precision") + remove_definitions(-DOVERLOAD_R8) + remove_definitions(-DOVERLOAD_R4) + set(CMAKE_Fortran_FLAGS_PHYSICS "") + set(CMAKE_Fortran_FLAGS_DYNAMICS "") +endif() + +#------------------------------------------------------------------------------ +# Add model-specific flags for C/C++/Fortran preprocessor +add_definitions(-DMOIST_CAPPA -DUSE_COND -DNEMS_GSM) +add_definitions(-DINTERNAL_FILE_NML) + +#------------------------------------------------------------------------------ +# NOAHMP +add_library(noahmp STATIC ${_noahmp_cap_files} ${_noahmp_ccpp_files} ${_noahmp_files}) +set_target_properties(noahmp PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(noahmp PUBLIC $ + $) +target_link_libraries(noahmp PUBLIC esmf fms) + +############################################################################### +### Install +############################################################################### + +install( + TARGETS noahmp + EXPORT noahmp-config + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/NOAHMP) + +install(EXPORT noahmp-config + DESTINATION lib/cmake) diff --git a/NOAHMP-interface/noahmp b/NOAHMP-interface/noahmp new file mode 160000 index 0000000000..e1260f1ee7 --- /dev/null +++ b/NOAHMP-interface/noahmp @@ -0,0 +1 @@ +Subproject commit e1260f1ee711f66a1141010d13511a69c0f8637b diff --git a/WW3 b/WW3 index d00e431a28..b93b9f0011 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit d00e431a28a4225fdd8f8303e1c12b5a01e0d85e +Subproject commit b93b9f00118f6fb316fd2289dff10b1455357f3f diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 83571e4707..3a8f252133 100644 --- a/cmake/Intel.cmake +++ b/cmake/Intel.cmake @@ -17,10 +17,15 @@ if(DEBUG) endif() set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -O0 -ftrapuv") else() - set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") - set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model consistent") - set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") - set(FAST "-fast-transcendentals") + if(FASTER) + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model precise -assume buffered_stdout -fno-alias -align all -debug minimal -qoverride-limits -ftz -no-ip") + set(CMAKE_C_FLAGS_RELEASE "-O3 -fp-model precise -debug minimal -qoverride-limits -ftz") + else() + set(CMAKE_Fortran_FLAGS_RELEASE "-O2 -debug minimal -qoverride-limits") + set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -fp-model consistent") + set(CMAKE_C_FLAGS_RELEASE "-O2 -debug minimal") + set(FAST "-fast-transcendentals") + endif() if(AVX2) set(CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} -march=core-avx2") set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=core-avx2") diff --git a/cmake/configure_wcoss_cray.cmake b/cmake/configure_acorn.cmake similarity index 68% rename from cmake/configure_wcoss_cray.cmake rename to cmake/configure_acorn.cmake index c8a689be6c..c1c59110a7 100644 --- a/cmake/configure_wcoss_cray.cmake +++ b/cmake/configure_acorn.cmake @@ -1,3 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) +set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index 1d433c4f3b..d02ea508e5 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -13,7 +13,7 @@ ############################################################################### ### Configure Application Components ############################################################################### -if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") +if(APP MATCHES "^(ATM|ATMW|ATMAQ|ATML)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) @@ -23,6 +23,10 @@ if(APP MATCHES "^(ATM|ATMW|ATMAQ)$") elseif(APP MATCHES "ATMAQ") set(AQM ON CACHE BOOL "Enable AQM" FORCE) message("Configuring UFS app in Atmosphere with Air Quality mode") + elseif(APP MATCHES "ATML") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) + message("Configuring UFS app in Atmosphere with Air Quality mode") else() message("Configuring UFS app in Atmosphere Only mode") endif() @@ -38,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)$") +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) @@ -46,17 +50,16 @@ if(APP MATCHES "^(S2S|S2SA|S2SW|S2SWA)$") 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") + 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 "A$") + if(APP MATCHES "^(S2SA|S2SWA)") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) - if(WW3) - string(CONCAT APP_MSG ${APP_MSG} " and Aerosols") - else() - string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") - endif() + string(CONCAT APP_MSG ${APP_MSG} " with Aerosols") + endif() + if(APP MATCHES "^S2SWAL") + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) endif() message("${APP_MSG} mode") endif() @@ -84,3 +87,10 @@ if(APP MATCHES "^(ATMAERO)$") set(UFS_GOCART ON CACHE BOOL "Enable GOCART" FORCE) message("Configuring UFS app in Atmosphere with Aerosols mode") endif() + +if(APP MATCHES "^(LND)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + set(NOAHMP ON CACHE BOOL "Enable NOAHMP" FORCE) + set(FMS ON CACHE BOOL "Enable FMS" FORCE) +endif() diff --git a/cmake/configure_cheyenne.gnu.cmake b/cmake/configure_cheyenne.gnu.cmake index feda1e6f4c..e69de29bb2 100644 --- a/cmake/configure_cheyenne.gnu.cmake +++ b/cmake/configure_cheyenne.gnu.cmake @@ -1 +0,0 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) diff --git a/cmake/configure_cheyenne.intel.cmake b/cmake/configure_cheyenne.intel.cmake index c8a689be6c..31f88424f7 100644 --- a/cmake/configure_cheyenne.intel.cmake +++ b/cmake/configure_cheyenne.intel.cmake @@ -1,3 +1,2 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/cmake/configure_expanse.intel.cmake b/cmake/configure_expanse.intel.cmake index 241e701061..8f1ffe0d01 100644 --- a/cmake/configure_expanse.intel.cmake +++ b/cmake/configure_expanse.intel.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaea.intel.cmake index 84390226fe..f66c5096d3 100644 --- a/cmake/configure_gaea.intel.cmake +++ b/cmake/configure_gaea.intel.cmake @@ -1,4 +1,5 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") +set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") +set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_hera.gnu.cmake b/cmake/configure_hera.gnu.cmake index ba689958ab..92b8ecb75e 100644 --- a/cmake/configure_hera.gnu.cmake +++ b/cmake/configure_hera.gnu.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_hera.intel.cmake b/cmake/configure_hera.intel.cmake index ba689958ab..92b8ecb75e 100644 --- a/cmake/configure_hera.intel.cmake +++ b/cmake/configure_hera.intel.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_jet.intel.cmake b/cmake/configure_jet.intel.cmake index 3b151ec3f0..e510b6092f 100644 --- a/cmake/configure_jet.intel.cmake +++ b/cmake/configure_jet.intel.cmake @@ -1,4 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) set(SIMDMULTIARCH ON CACHE BOOL "Enable multi-target SIMD instruction sets" FORCE) diff --git a/cmake/configure_linux.gnu.cmake b/cmake/configure_linux.gnu.cmake index ba689958ab..92b8ecb75e 100644 --- a/cmake/configure_linux.gnu.cmake +++ b/cmake/configure_linux.gnu.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_linux.intel.cmake b/cmake/configure_linux.intel.cmake index ba689958ab..92b8ecb75e 100644 --- a/cmake/configure_linux.intel.cmake +++ b/cmake/configure_linux.intel.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_macosx.gnu.cmake b/cmake/configure_macosx.gnu.cmake index aef8dac1d8..1307585e6b 100644 --- a/cmake/configure_macosx.gnu.cmake +++ b/cmake/configure_macosx.gnu.cmake @@ -1,4 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) # OpenMP broken for clang compiler diff --git a/cmake/configure_macosx.intel.cmake b/cmake/configure_macosx.intel.cmake index 19cfd30004..ee238ab301 100644 --- a/cmake/configure_macosx.intel.cmake +++ b/cmake/configure_macosx.intel.cmake @@ -1,3 +1,2 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) diff --git a/cmake/configure_orion.intel.cmake b/cmake/configure_orion.intel.cmake index 241e701061..8f1ffe0d01 100644 --- a/cmake/configure_orion.intel.cmake +++ b/cmake/configure_orion.intel.cmake @@ -1,2 +1 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_s4.intel.cmake b/cmake/configure_s4.intel.cmake index 0c2fec19b4..255f46cecf 100644 --- a/cmake/configure_s4.intel.cmake +++ b/cmake/configure_s4.intel.cmake @@ -1,4 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) set(AVX ON CACHE BOOL "Enable AVX2 instruction set" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/cmake/configure_stampede.intel.cmake b/cmake/configure_stampede.intel.cmake index feda1e6f4c..e69de29bb2 100644 --- a/cmake/configure_stampede.intel.cmake +++ b/cmake/configure_stampede.intel.cmake @@ -1 +0,0 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) diff --git a/cmake/configure_wcoss2.cmake b/cmake/configure_wcoss2.cmake index 20d9c8dddb..c1c59110a7 100644 --- a/cmake/configure_wcoss2.cmake +++ b/cmake/configure_wcoss2.cmake @@ -1,4 +1,3 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) set(DEBUG_LINKMPI OFF CACHE BOOL "Enable linkmpi option when DEBUG mode is on" FORCE) set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/cmake/configure_wcoss_dell_p3.cmake b/cmake/configure_wcoss_dell_p3.cmake deleted file mode 100644 index 241e701061..0000000000 --- a/cmake/configure_wcoss_dell_p3.cmake +++ /dev/null @@ -1,2 +0,0 @@ -set(INLINE_POST ON CACHE BOOL "Enable inline post" FORCE) -set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) diff --git a/doc/UsersGuide/requirements.txt b/doc/UsersGuide/requirements.txt index ef36addc62..9c7258463b 100644 --- a/doc/UsersGuide/requirements.txt +++ b/doc/UsersGuide/requirements.txt @@ -1 +1,2 @@ sphinxcontrib-bibtex +sphinx_rtd_theme diff --git a/doc/UsersGuide/source/AutomatedTesting.rst b/doc/UsersGuide/source/AutomatedTesting.rst index b8480109e7..06369c670e 100644 --- a/doc/UsersGuide/source/AutomatedTesting.rst +++ b/doc/UsersGuide/source/AutomatedTesting.rst @@ -4,69 +4,71 @@ Automated Testing ***************** -The UFS Weather Model repository on GitHub employs two types of automated testing. -One is the CI/CD on cloud and the other is the AutoRT on NOAA R&D platforms. -Both are application level tests, and utilize the regression testing framework +The UFS Weather Model repository on GitHub employs two types of automated testing: + + #. CI/CD (Continuous Integration/Continuous Development) testing on the cloud + #. AutoRT on NOAA R&D platforms + +Both are application level tests and utilize the regression testing framework discussed in :numref:`Section %s `. ===== CI/CD ===== -The following summarizes the CI/CD used in the UFS Weather Model: +The UFS Weather Model (:term:`WM`) uses GitHub Actions (GHA), a GitHub-hosted continuous integration service, +to perform CI/CD testing. Build jobs are done on GHA-provided virtual machines. Test jobs are +performed on the Amazon Web Services (AWS) cloud platform using a number of EC2 instances. +Builds and tests are carried out in a Docker container. The container includes a pre-installed version of the +:term:`HPC-Stack`, which includes all prerequisite libraries. Input data needed to run the tests +are stored as a separate Docker container. -* GitHub Actions (GHA), a GitHub-hosted continuous integration service is used. -* Build jobs are done on GHA-provided virtual machines. -* Test jobs are performed on Amazon cloud using a number of EC2 instances. -* Builds and tests are carried out using a Docker container. -* Docker container has prerequisite libraries installed via the hpc-stack. -* Input data needed to run tests are stored as a separate Docker container. +When a developer makes a pull request (PR) to the UFS WM repository, a code +manager may add the `run-ci` label, which triggers the CI/CD workflow. +The CI/CD workflow then executes the following steps: + #. A check is performed to make sure the UFS Weather Model and its first level + subcomponents are up to date with the top of the ``develop`` branch. -When a developer makes a pull request (PR) to the UFS Weather Model repository, and a code -manager subsequently adds the `run-ci` label, the CI/CD workflow is triggerd: + #. If the check is successful, build jobs are started on GHA-provided virtual machines + by downloading the hpc-stack Docker container stored in Docker Hub. -#. A check is performed to make sure the UFS Weather Model and its first level - subcomponents are up to date with the top of develop branch. + #. Once all build jobs are successful, the created executable files are stored as + artifacts in GHA. -#. If the check is successful, build jobs are started on GHA-provided virtual machines - by downloading the hpc-stack Docker container stored in Docker Hub. + #. A number of AWS EC2 instances are started. -#. Once all build jobs are successful, the created executable files are stored as - artifacts in GHA. + #. Test jobs are started on AWS after downloading the hpc-stack Docker container, + the executable file from the build job, and the input-data Docker container. -#. A number of AWS EC2 instances are started. + #. When all tests are complete, EC2 instances are stopped. Test results are reported + on GitHub. -#. Test jobs are started on Amazon cloud by downloading the hpc-stack Docker container, - the executable file from the build job, and the input-data Docker container. -#. When all tests are finished, EC2 instances are stopped. Test results are reported - on GitHub. +The GHA-related ``yaml`` scripts are located in the ``.github/workflows/`` directory. +``build_test.yml`` is the main workflow file, and ``aux.yml`` is an auxiliary +file responsible for (1) checking that the PR branch is up-to-date and +(2) starting/stopping the EC2 instances. +Other CI-related scrips are located in the ``tests/ci/`` directory. ``ci.sh`` is the main script that +invokes Docker build and run. ``Dockerfile`` is used to build the UFS Weather Model. +Other shell and python scripts help with various tasks. For example: -The GHA-related yaml scripts are located in the ``.github/workflows/`` directory. -``build_test.yml`` is the main workflow file, and ``aux.yml`` is an auxiliary -file responsible for checking the up-to-dateness of the PR branch, and starting -and stopping the EC2 instances. Other CI-related scrips are located in the ``tests/ci/`` -directory. ``ci.sh`` is the main script that invokes Docker build and run. ``Dockerfile`` -is used to build UFS Weather Model. Other shell and python scripts help with various -tasks such as checking the up-to-dateness of the PR branch (``repo_check.sh``), -checking the status of EC2 instances (``check_status.py``), and configuring the test cases -to carry out in the CI/CD workflow (``setup.py`` and ``ci.test``). + * ``repo_check.sh`` checks that the PR branch is up-to-date. + * ``check_status.py`` checks the status of EC2 instances. + * ``setup.py`` and ``ci.test`` configure the test cases to execute in the CI/CD workflow. +.. COMMENT: It sounds like aux.yml and repo_check.sh do the same thing... What's the difference? ======= Auto RT ======= -The Automated Regression Testing (AutoRT) system: - -* Automates the process of regression testing on NOAA HPC platforms. - -* Written in python. - -* Contains the following files: +The Automated Regression Testing (AutoRT) system is a python program that automates the process +of regression testing on NOAA HPC platforms. +It contains the files in :numref:`Table %s ` below: +.. _autoRT-files: .. table:: *Files for Automated Regression Testing (AutoRT) system* +-------------------+-----------------------------------------------------+ @@ -81,56 +83,46 @@ The Automated Regression Testing (AutoRT) system: | jobs/rt.py | Functions for the regression test job | +-------------------+-----------------------------------------------------+ -~~~~~~~~~~~~~~~ +----------------- AutoRT Workflow -~~~~~~~~~~~~~~~ -* Cron-job on supported HPC systems runs start_rt_auto.sh bash script every - 15 minutes. - - * This script verifies the HPC name, and sets the python paths. Runs - rt_auto.py. - -* rt_auto.py: Uses the Github API (Through pyGitHub) - - * Checks the pull requests to ufs-community/ufs-weather-model for - labels specific to the HPC name. If no match to HPC name, exits. - (i.e. hera-intel-RT or cheyenne-gnu-BL) - - * If the HPC name matches the label in ufs-weather-model pull - request, the label provides the HPC with the compiler and job to run on - the machine. +----------------- - * For example the label gaea-intel-BL will be recognized by the HPC - machine 'Gaea', set the RT_COMPILER variable to 'intel' and run the - baseline creation script (bl.py). +On supported HPC systems, a :term:`cron job` runs the ``start_rt_auto.sh`` bash script every 15 minutes. +This script checks the HPC name and sets certain python paths. Then, it runs ``rt_auto.py``, +which uses the Github API (through pyGitHub) to check the labels on pull requests to +``ufs-weather-model``. If a PR label matches the HPC name +(e.g., hera-intel-RT or cheyenne-gnu-BL), the label provides the HPC +with the compiler and job information to run a test or task on the machine. +If no PR label matches HPC name, the script exits. - * Creates a Job class that contains all information from the machine - that the job will need to run. That is sent into the jobs/rt[bl].py script. +For example, a PR labeled ``gaea-intel-BL`` will be recognized by the HPC machine 'Gaea'. +It will set the ``RT_COMPILER`` variable to 'intel' and run the baseline creation script (``bl.py``). +This script creats a job class that contains all information from the machine that the job will need to run. +That information is sent into the ``jobs/rt[bl].py`` script. -* rt.py: Sets directories for storage, gets repo information, runs RT, - post processes. +``rt.py`` sets directories for storage, gets repo information, runs the regression test, and +completes any required post processing. .. code-block:: python3 - def run(job_obj): - logger = logging.getLogger('RT/RUN') - workdir = set_directories(job_obj) - branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) - run_regression_test(job_obj, pr_repo_loc) - post_process(job_obj, pr_repo_loc, repo_dir_str, branch) + def run(job_obj): + logger = logging.getLogger('RT/RUN') + workdir = set_directories(job_obj) + branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, branch) -* bl.py: (similar to rt.py) Adds functionality to create baselines before - running regression testing. +``bl.py``: (similar to ``rt.py``) Adds functionality to create baselines before running regression testing. .. code-block:: python3 - :emphasize-lines: 5,6,7 - - def run(job_obj): - logger = logging.getLogger('BL/RUN') - workdir, rtbldir, blstore = set_directories(job_obj) - pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) - bldate = get_bl_date(job_obj, pr_repo_loc) - bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' - bldirbool = check_for_bl_dir(bldir, job_obj) - run_regression_test(job_obj, pr_repo_loc) - post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) + :emphasize-lines: 5,6,7 + + def run(job_obj): + logger = logging.getLogger('BL/RUN') + workdir, rtbldir, blstore = set_directories(job_obj) + pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + bldate = get_bl_date(job_obj, pr_repo_loc) + bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' + bldirbool = check_for_bl_dir(bldir, job_obj) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 89b780fa8e..4322eb0529 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -4,51 +4,65 @@ Building and Running the UFS Weather Model ****************************************** +=================================== +Supported Platforms & Compilers +=================================== +Before running the Weather Model (:term:`WM`), users should determine which of the +`levels of support `__ +is applicable to their system. Generally, Level 1 & 2 systems are restricted to those with access +through NOAA and its affiliates. These systems are named (e.g., Hera, Orion, Cheyenne). +Level 3 & 4 systems include certain personal computers or non-NOAA-affiliated HPC systems. +The prerequisite software libraries for building the WM already exist on Level 1/preconfigured +systems, so users may skip directly :ref:`downloading the code `. +On other systems, users will need to build the prerequisite libraries using :term:`HPC-Stack`. + ====================== Prerequisite Libraries ====================== -The UFS Weather Model requires a number of libraries for it to compile. -There are two categories of libraries that are needed: +The UFS Weather Model (WM) requires a number of libraries for it to compile. +The WM uses two categories of libraries, which are available as a bundle via +:term:`HPC-Stack`: -#. Bundled libraries (NCEPLIBS). These are libraries developed for use with NOAA weather models. - Most have an NCEPLIBS prefix in the repository, e.g. NCEPLIBS-bacio. Select tools from the UFS - Utilities repository (UFS-UTILS) are also included in this category. A list of the bundled - libraries tested with this WM release is in the top-level ``README`` of the `NCEPLIBS repository - `_ (**be sure to look at the tag in that repository that - matches the tag on this WM release**). + #. :term:`NCEP` libraries (:term:`NCEPLIBS`): These are libraries developed for use with NOAA weather models. + Most have an NCEPLIBS prefix in the repository (e.g., NCEPLIBS-bacio). Select tools from the UFS + Utilities repository (:term:`UFS_UTILS`) are also included in this category. + A list of the bundled libraries tested with this WM release is available in the top-level ``README`` of the + `NCEPLIBS repository `__ (**be sure to look at + the tag in that repository that matches the tag on the most recent WM release**). -#. Third-party libraries (NCEPLIBS-external). These are libraries that were developed external to - the UFS Weather Model. They are general software packages that are also used by other models in - the community. Building these is optional, since existing builds of these libraries can be pointed - to instead. A list of the external libraries tested with this WM release is in the top-level ``README`` - of the `NCEPLIBS-external repository `_. Again, be - sure to look at the tag in that repository that matches the tag on this WM release. + #. Third-party libraries (:term:`NCEPLIBS-external`): These are libraries that were developed external to + the UFS Weather Model. They are general software packages that are also used by other community models. + Building these libraries is optional if users can point to existing builds of these libraries on their system + instead. A list of the external libraries tested with this WM release is in the top-level ``README`` + of the `NCEPLIBS-external `__ repository. Again, be + sure to look at the tag in that repository that matches the tag on this WM release. .. note:: - The libraries in NCEPLIBS-external must be built *before* the libraries in NCEPLIBS. + Documentation is available for installing `HPC-Stack `__. + One of these software stacks (or the libraries they contain) must be installed before running the Weather Model. -See this `wiki link `_ for -an explanation of which platforms and compilers are supported. This will help to determine if you need -to build NCEPLIBS and NCEPLIBS-external or are working on a system that is already pre-configured. On -pre-configured platforms, the libraries are already available. +.. COMMENT: "and `spack-stack `__, respectively" -If you do have to build the libraries, it is a good idea to check the platform- and compiler-specific -``README`` files in the doc/ directory of the `NCEPLIBS-external repository `_ -as a first step, to see if your system or one similar to it is included. These files have detailed +For users who *do* need to build the prerequisite libraries, it is a good idea to check the platform- and compiler-specific +``README`` files in the ``doc`` directory of the `NCEPLIBS-external repository `_ +first to see if their system or one similar to it is included. These files have detailed instructions for building NCEPLIBS-external, NCEPLIBS, and the UFS Weather Model. They may be all the documentation you need. Be sure to use the tag that corresponds to this version of the WM, and define a WORK directory path before you get started. +.. + COMMENT: What is meant by a WORK directory path? + If your platform is not included in these platform- and compiler-specific ``README`` files, there is a more generic set of instructions in the ``README`` file at the top level of the `NCEPLIBS-external repository -`_, and at the top level of the `NCEPLIBS repository -`_. It may still be a good idea to look at some of the platform- +`__ and at the top level of the `NCEPLIBS repository +`__. It may still be a good idea to look at some of the platform- and compiler-specific ``README`` files as a guide. Again, be sure to use the tag that corresponds to this version of the WM. The top-level ``README`` in the NCEPLIBS-external repository includes a troubleshooting section that may be helpful. -You can also get expert help through a `user support forum `_ +You can also get expert help through a `user support forum `__ set up specifically for issues related to build dependencies. .. _DownloadingWMCode: @@ -57,7 +71,7 @@ set up specifically for issues related to build dependencies. Downloading the Weather Model Code ================================== -To clone the develop branch of the ufs-weather-model repository, execute the following commands: +To clone the develop branch of the ``ufs-weather-model`` repository and update its submodules, execute the following commands: .. code-block:: console @@ -65,19 +79,19 @@ To clone the develop branch of the ufs-weather-model repository, execute the fol cd ufs-weather-model git submodule update --init --recursive -Compiling the model will take place within the `ufs-weather-model` directory you just created. +Compiling the model will take place within the ``ufs-weather-model`` directory you just created. ========================== Building the Weather Model ========================== ---------------------------- -Loading the required modules +Loading the Required Modules ---------------------------- Modulefiles for `pre-configured platforms `_ -are located in ``modulefiles/ufs_.``. For example, to load the modules from the `ufs-weather-model` -directory on hera: +are located in ``modulefiles/ufs_.``. For example, to load the modules from the ``ufs-weather-model`` +directory on Hera: .. code-block:: console @@ -104,78 +118,156 @@ Note that loading this module file will also set the CMake environment variables +-------------------------+----------------------------------------------+----------------------+ If you are not running on one of the pre-configured platforms, you will need to set the environment variables -in a different way. +manually. For example, in a bash shell, a command in the following form will set the C compiler environment variable: + +.. code-block:: console + + export CMAKE_C_COMPILER= -------------------------------------------------------------- -Setting the CMAKE_FLAGS and CCPP_SUITES environment variables -------------------------------------------------------------- -You need to use the ``CMAKE_FLAGS`` environment variable to specify which application to build. -In order to have one or more CCPP physics suites available at runtime, you also need to select those suites at -build time by setting the ``CCPP_SUITES`` environment variable. Multiple suites can be set. Following -examples are for the bash shell. +------------------------------------------------------------------------ +Setting the ``CMAKE_FLAGS`` and ``CCPP_SUITES`` Environment Variables +------------------------------------------------------------------------ -For the ufs-weather-model ATM app (standalone ATM): +The UFS Weather Model can be built in one of twelve configurations (cf. :numref:`Table %s `). +The ``CMAKE_FLAGS`` environment variable specifies which configuration to build. +Additionally, users must select the :term:`CCPP` suite(s) by setting the ``CCPP_SUITES`` environment variable at +build time in order to have one or more CCPP physics suites available at runtime. Multiple suites can be set. +Additional environment variables, such as ``-D32BIT=ON``, can be set if the user chooses. These options are documented +in :numref:`Section %s `. +The following examples assume a bash shell. + +ATM Configurations +--------------------- + +**Standalone ATM** + +For the ``ufs-weather-model ATM`` configuration (standalone :term:`ATM`): .. code-block:: console export CMAKE_FLAGS="-DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16" -For the ufs-weather-model ATM app (standalone ATM) in 32 bit: +**ATMW** + +For the ``ufs-weather-model ATMW`` configuration (standalone ATM coupled to :term:`WW3`): .. code-block:: console - export CMAKE_FLAGS="-DAPP=ATM -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v16" + export CMAKE_FLAGS="-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16" -For the ufs-weather-model ATMW app (standalone ATM with wave): +**ATMAERO** + +For the ``ufs-weather-model ATMAERO`` configuration (standalone ATM coupled to :term:`GOCART`): .. code-block:: console - export CMAKE_FLAGS="-DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16" + export CMAKE_FLAGS="-DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8" + +**ATMAQ** + +For the ``ufs-weather-model ATMAQ`` configuration (standalone ATM coupled to :term:`CMAQ`): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2" + +S2S Configurations +---------------------- + +**S2S** -For the ufs-weather-model S2S app (atm/ice/ocean): +For the ``ufs-weather-model S2S`` configuration (coupled atm/ice/ocean): .. code-block:: console - export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" + export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" -For the ufs-weather-model S2S app (atm/ice/ocean) with debugging flags turned on, with verbose build messages: +To turn on debugging flags, add ``-DDEBUG=ON`` flag after ``-DAPP=S2S``. Users can allow verbose build messages by running: .. code-block:: console - export CMAKE_FLAGS="-DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" export BUILD_VERBOSE=1 -For the ufs-weather-model S2SW app (atm/ice/ocean/wave): +To receive atmosphere-ocean fluxes from the CMEPS :term:`mediator`, add the argument ``-DCMEPS_AOFLUX=ON``. +For example: .. code-block:: console - export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp" + export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON" -For the ufs-weather-model HAFS app (atm/ocean) in 32 bit: +**S2SA** + +For the ``ufs-weather-model S2SA`` configuration (atm/ice/ocean/aerosols): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2SA -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp" + +.. + CHECK: DAPP flag and physics suites + +**S2SW** + +For the ``ufs-weather-model S2SW`` configuration (atm/ice/ocean/wave): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8" + +**S2SWA** + +For the ``ufs-weather-model S2SWA`` configuration (atm/ice/ocean/wave/aerosols): .. code-block:: console - export CMAKE_FLAGS="-DAPP=HAFS -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf" + export CMAKE_FLAGS="-DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp" -For the ufs-weather-model HAFSW app (atm/ocean/wave) in 32 bit: +NG-GODAS Configuration +------------------------ + +For the ``ufs-weather-model NG-GODAS`` configuration (atm/ocean/ice/data assimilation): .. code-block:: console - export CMAKE_FLAGS="-DAPP=HAFSW -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf" + export CMAKE_FLAGS="-DAPP=NG-GODAS" + +.. COMMENT: Check! --> In rt.conf, no CCPP suite is set. Is there a default one? -For the ufs-weather-model HAFS-ALL app (data/atm/ocean/wave) in 32 bit: +HAFS Configurations +---------------------- + +**HAFS** + +For the ``ufs-weather-model HAFS`` configuration (atm/ocean) in 32 bit: .. code-block:: console - export CMAKE_FLAGS="-DAPP=HAFS-ALL -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf" + export CMAKE_FLAGS="-DAPP=HAFS -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_gfdlmp_tedmf" + +**HAFSW** + +For the ``ufs-weather-model HAFSW`` configuration (atm/ocean/wave) in 32-bit with moving nest: + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=HAFSW -D32BIT=ON -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf" + +**HAFS-ALL** + +For the ``ufs-weather-model HAFS-ALL`` configuration (data/atm/ocean/wave) in 32 bit: + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=HAFS-ALL -D32BIT=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst" + ------------------ -Building the model +Building the Model ------------------ The UFS Weather Model uses the CMake build system. There is a build script called ``build.sh`` in the top-level directory of the WM repository that configures the build environment and runs the ``make`` -command. This script also checks that all necessary environment variables have been set. +command. This script also checks that all necessary environment variables have been set. If any of the environment variables have not been set, the ``build.sh`` script will exit with a message similar to: @@ -183,84 +275,165 @@ If any of the environment variables have not been set, the ``build.sh`` script w ./build.sh: line 11: CMAKE_Platform: Please set the CMAKE_Platform environment variable, e.g. [macosx.gnu|linux.gnu|linux.intel|hera.intel|...] -The WM can be built by running the following command from the `ufs-weather-model` directory: +The WM can be built by running the following command from the ``ufs-weather-model`` directory: .. code-block:: console ./build.sh -Once ``build.sh`` is finished, you should see the executable, named ``ufs_model``, in the `ufs-weather-model/build/` directory. +Once ``build.sh`` is finished, you should see the executable, named ``ufs_model``, in the ``ufs-weather-model/build/`` directory. If it is desired to build in a different directory, specify the ``BUILD_DIR`` environment variable: e.g. ``export BUILD_DIR=test_cpld`` -will build in the `ufs-weather-model/test_cpld` directory instead. +will build in the ``ufs-weather-model/test_cpld`` directory instead. -Expert help is available through a `user support forum `_ +Expert help is available through a `user support forum `__ set up specifically for issues related to the Weather Model. +.. _run-wm: + ================= -Running the model +Running the Model ================= +.. attention:: + Although the following discussions are general, users may not be able to execute the script successfully "as is" unless they are on a + `Tier-1 platform `__. + .. _UsingRegressionTest: -------------------------------- -Using the regression test script +Using the Regression Test Script -------------------------------- -The regression test script ``rt.sh`` in the tests/ directory can be -used to run a number of preconfigured test cases. It is the top-level script -that calls lower-level scripts to build, set up environments and run tests. -On `Tier-1 platforms `_, it can -be as simple as editing the ``rt.conf`` file and subsequently executing + +Users can run a number of preconfigured regression test cases using the regression test script +``rt.sh`` in the ``tests`` directory. This script is the top-level script +that calls lower-level scripts to build specified WM configurations, set up environments, and run tests. + +On `Tier-1 platforms `__, users can run +regression tests by (1) editing the ``rt.conf`` file and (2) executing: .. code-block:: console ./rt.sh -l rt.conf -Following discussions are general, but the user may not be able to successfully -execute the script as is unless s/he is on one of the Tier-1 platforms. - -Each line in the PSV (Pipe-separated values) file ``rt.conf`` is used to either -build or run. The ``COMPILE`` line specifies the application to build (e.g. -``APP=S2S``), CCPP suite to use (e.g. ``SUITES=FV3_GFS_2017_coupled``), and -additional build options (e.g. ``DEBUG=Y``) as necessary. The ``RUN`` line -specifies the name of a test to run. The test name should match the name of one -of the test files in the tests/tests/ directory or, if the user is adding a new -test, the name of the new test file. The order of lines in ``rt.conf`` matters -since ``rt.sh`` processes them sequentially; a ``RUN`` line should be proceeded -by a ``COMPILE`` line that builds the model used in the test. The following example -``rt.conf`` file builds the standalone ATM model in 32 bit and then runs the +Users *may* need to add additional command line arguments or change information in the ``rt.sh`` file as well. +This information is provided in :numref:`Section %s ` below. + +.. _rt.conf: + +The ``rt.conf`` File +------------------------ + +Each line in the PSV (Pipe-separated values) file ``rt.conf`` contains four columns of information. +The first column specifies whether to build a test (``COMPILE``) or run a test (``RUN``). +The second column specifies either configuration information for building a test or +the name of a test to run. +Thus, the second column in a ``COMPILE`` line will list the application to build (e.g., ``APP=S2S``), +the CCPP suite to use (e.g., ``SUITES=FV3_GFS_2017_coupled``), and additional build options +(e.g., ``DEBUG=Y``) as needed. On a ``RUN`` line, the second column will contain a test name +(e.g., ``control_p8``). The test name should match the name of one of the test files in the +``tests/tests`` directory or, if the user is adding a new test, the name of the new test file. +The third column of ``rt.conf`` relates to the platform; +if blank, the test can run on any WM Tier-1 platform. +The fourth column deals with baseline creation +(see information on ``-c`` option :ref:`below ` for more), +and ``fv3`` means that the test will be included during baseline creation. + +The order of lines in ``rt.conf`` matters +since ``rt.sh`` processes them sequentially; a ``RUN`` line should be preceeded +by a ``COMPILE`` line that builds the model used in the test. The following +``rt.conf`` file excerpt builds the standalone ATM model in 32-bit mode and then runs the ``control`` test: +.. COMMENT: Is the control test just the test with which other tests are compared? + .. code-block:: console COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | | fv3 RUN | control | | fv3 -The third column of ``rt.conf`` relates to the platform; if left blank, the test -runs on all Tier-1 platforms. The fourth column deals with baseline creation (more -on this later) and ``fv3`` means the test will be included during baseline creation. The ``rt.conf`` file includes a large number of tests. If the user wants to run -only a specific test, s/he can either comment out (using the ``#`` prefix) the -tests to be skipped, or create a new file, e.g. ``my_rt.conf``, then execute -``./rt.sh -l my_rt.conf``. +only specific tests, s/he can either (1) comment out the tests to be skipped (using the ``#`` prefix) +or (2) create a new file (e.g., ``my_rt.conf``) and execute ``./rt.sh -l my_rt.conf``. + +.. _rt.sh: + +The ``rt.sh`` File +--------------------- + +This section contains additional information on command line options and troubleshooting for the ``rt.sh`` file. + +.. _cmd-line-opts: + +Optional Arguments +^^^^^^^^^^^^^^^^^^^^^ + +To display detailed information on how to use ``rt.sh``, users can simply run ``./rt.sh``, which will output the following options: + +.. code-block:: console + + ./rt.sh -c | -f | -l | -m | -k | -r | -e | -h + -c: create baseline + -f: use rt.conf + -l: use instead of rt.conf + -m: compare against new baseline results + -k: keep run directory + -r: use Rocoto workflow manager + -e: use ecFlow workflow manager + -h: display help (same as ./rt.sh) + +.. COMMENT: Remove -f option? The wiki says: "Update 01/06/2021: On January 6, 2021, the argument -f was removed. + Adding it will force rt.sh to exit immediately. The default for rt.sh is to run the full regression tests in rt.conf unless -l xyz.conf is provided." +.. COMMENT: An -n option is discussed below. Why is this not printed when running ./rt.sh? + +When running a large number (10's or 100's) of tests, the ``-e`` or ``-r`` options can significantly +decrease testing time by using a workflow manager (ecFlow or Rocoto, respectively) to queue the jobs +according to dependencies and run them concurrently. +The ``-n`` option can be used to run a single test; for example, ``./rt.sh -n control`` +will build the ATM model and run the ``control`` test. +The ``-c`` option is used to create a baseline. New baslines are needed when code changes lead +to result changes and therefore deviate from existing baselines on a bit-for-bit basis. + +Troubleshooting +^^^^^^^^^^^^^^^^^^ + +Users may need to adjust certain information in the ``rt.sh`` file, such as +the ``'Machine'`` and ``'Account'`` variables (``$ACCNR`` and ``$MACHINE_ID``), for the tests to run +correctly. If there is a problem with these or other variables (e.g., file paths), the output should indicate where: + +.. code-block:: console + :emphasize-lines: 5,6 + + + echo 'Machine: ' hera.intel ' Account: ' nems + Machine: hera.intel Account: nems + + mkdir -p /scratch1/NCEPDEV/stmp4/First.Last + mkdir: cannot create directory ‘/scratch1/NCEPDEV/stmp4/First.Last’: Permission denied + ++ echo 'rt.sh error on line 370' + rt.sh error on line 370 + +Then, users can adjust the information in ``rt.sh`` accordingly. + +.. _log-files: + +Log Files +------------ The regression test generates a number of log files. The summary log file -``RegressionTests_..log`` in the tests/ directory compares -the results of the test against the baseline specific to a given platform and -reports the outcome (hence, the 'regression' test): 'Missing file' results when -the expected files from the simulation are not found, and typically occurs -when the simulation did not run to completion; 'OK' means that the simulation -results are bit-for-bit identical to those of the baseline; 'NOT OK' when -the results are not bit-for-bit identical; and 'Missing baseline' when there -is no baseline data to compare against. - -More detailed log files are found in the tests/log_./ directory. -In particular, the user may find useful the run directory path provided as the -value of ``RUNDIR`` variable in the ``run_`` file. ``$RUNDIR`` is a -self-contained (i.e. sandboxed) directory with the executable file, initial -conditions, model configuration files, environment setup scripts and a batch job -submission script. The user can run the test by cd'ing into ``$RUNDIR`` and -invoking the command +``RegressionTests_..log`` in the ``tests`` directory compares +the results of the test against the baseline for a given platform and +reports the outcome: + + * ``'Missing file'`` results when the expected files from the simulation are not found and typically occurs when the simulation did not run to completion; + * ``'OK'`` means that the simulation results are bit-for-bit identical to those of the baseline; + * ``'NOT OK'`` when the results are **not** bit-for-bit identical; and + * ``'Missing baseline'`` when there is no baseline data to compare against. + +More detailed log files are located in the ``tests/log_./`` directory. +The run directory path, which corresponds to the value of ``RUNDIR`` in the ``run_`` file, +is particularly useful. ``$RUNDIR`` is a self-contained (i.e., sandboxed) +directory with the executable file, initial conditions, model configuration files, +environment setup scripts and a batch job submission script. The user can run the test +by ``cd``-ing into ``$RUNDIR`` and invoking the command: .. code-block:: console @@ -270,30 +443,28 @@ This can be particularly useful for debugging and testing code changes. Note tha ``$RUNDIR`` is automatically deleted at the end of a successful regression test; specifying the ``-k`` option retains the ``$RUNDIR``, e.g. ``./rt.sh -l rt.conf -k``. -Found inside the ``$RUNDIR`` directory are a number of model configuration files: -``input.nml``, ``model_configure``, ``nems.configure``, and other application -dependent files, e.g. ``ice_in`` for Subseasonal-to-Seasonal application. +Inside the ``$RUNDIR`` directory are a number of model configuration files (``input.nml``, +``model_configure``, ``nems.configure``) and other application +dependent files (e.g., ``ice_in`` for the Subseasonal-to-Seasonal application). These model configuration files are -generated by ``rt.sh`` from the template files in the tests/parm/ directory. -Specific values used to fill in the template files depend on the test being run, and -are set in two stages: default values are specified in ``tests/default_vars.sh`` and -the default values are overriden if necessary by those specified in a test file -``tests/tests/``. For example, the variable ``DT_ATMOS``, which is -substituted into the template file ``model_configure.IN`` to generate -``model_configure``, is initially assigned 1800 in the function ``export_fv3`` of the -script ``default_vars.sh``, but the test file ``tests/tests/control`` overrides by -reassigning 720 to the variable. - -Also found inside the ``$RUNDIR`` directory are the files ``fv3_run`` and -``job_card``, which are generated from the template files in the tests/fv3_conf/ -directory. The latter is a platform-specific batch job submission script, while -the former prepares the initial conditions by copying relevant data from the +generated by ``rt.sh`` from the template files in the ``tests/parm`` directory. +Specific values used to fill in the template files are test-dependent and +are set in two stages. First, default values are specified in ``tests/default_vars.sh``, and +the default values are overriden if necessary by values specified in a test file +``tests/tests/``. For example, the variable ``DT_ATMOS`` is initially assigned 1800 +in the function ``export_fv3`` of the script ``default_vars.sh``, but the test file +``tests/tests/control`` overrides this setting by reassigning 720 to the variable. + +The files ``fv3_run`` and ``job_card`` also reside in the ``$RUNDIR`` directory. +These files are generated from the template files in the ``tests/fv3_conf`` +directory. ``job_card`` is a platform-specific batch job submission script, while +``fv3_run`` prepares the initial conditions for the test by copying relevant data from the input data directory of a given platform to the ``$RUNDIR`` directory. :numref:`Table %s ` summarizes the subdirectories discussed above. .. _RTSubDirs: -.. table:: *Regression test subdirectories* +.. table:: *Regression Test Subdirectories* +-----------------+--------------------------------------------------------------------------------------+ | **Name** | **Description** | @@ -309,70 +480,65 @@ input data directory of a given platform to the ``$RUNDIR`` directory. | tests/log_*/ | Contains fine-grained log files | +-----------------+--------------------------------------------------------------------------------------+ -There are a number of command line options available to the ``rt.sh`` script. -The user can execute ``./rt.sh`` to see information on these options. A couple -of them are discussed here. When running a large number (10's or 100's) of -tests, the ``-e`` option to use the ecFlow workflow manager can significantly -decrease the testing time by queuing the jobs according to dependencies and -running them concurrently. The ``-n`` option can be used to run a single test; -for example, ``./rt.sh -n control`` will build the ATM model and run the -``control`` test. The ``-c`` option is used to create baseline. New -baslines are needed when code changes lead to result changes, and therefore -deviate from existing baselines on a bit-for-bit basis. + +.. _new-test: + +Creating a New Test +---------------------- When a developer needs to create a new test for his/her implementation, the -first step would be to identify a test in the tests/tests/ directory that can +first step would be to identify a test in the ``tests/tests`` directory that can be used as a basis and to examine the variables defined in the test file. As mentioned above, some of the variables may be overrides for those defined in -``default_vars.sh``; others may be new variables that are needed specifically -for the test. Default variables and their values are defined in the ``export_fv3`` -function of the ``default_vars.sh`` script for ATM application, ``export_cpl`` -function for S2S application and ``export_datm`` function for GODAS application. +``default_vars.sh``. Others may be new variables that are needed specifically +for that test. Default variables and their values are defined in the ``export_fv3`` +function of the ``default_vars.sh`` script for ATM configurations, the ``export_cpl`` +function for S2S configurations, and the ``export_datm`` function for the NG-GODAS configuration. Also, the names of template files for model configuration and initial conditions -can be identified via variables ``INPUT_NML``, ``NEMS_CONFIGURE`` and ``FV3_RUN``; -for example, by trying ``grep -n INPUT_NML *`` inside the tests/ and tests/tests/ -directories. +can be identified via variables ``INPUT_NML``, ``NEMS_CONFIGURE`` and ``FV3_RUN`` +by running ``grep -n INPUT_NML *`` inside the ``tests`` and ``tests/tests`` directories. + +.. COMMENT: Is NEMS_CONFIGURE still in there? .. _UsingOpnReqTest: --------------------------------------------- -Using the operational requirement test script +Using the Operational Requirement Test Script --------------------------------------------- -The operational requirement test script ``opnReqTest`` in the tests/ directory can also be used to run -tests. Given the name of a test, ``opnReqTest`` carries out a suite of test cases. -Each test case addresses an aspect of the requirements new implementations -should satisfy, which are shown in :numref:`Table %s `. +The operational requirement test script ``opnReqTest`` in the ``tests`` directory can be used to run +tests in place of ``rt.sh``. Given the name of a test, ``opnReqTest`` carries out a suite of test cases. +Each test case addresses an aspect of the requirements that new operational implementations +should satisfy. These requirements are shown in :numref:`Table %s `. For the following discussions on opnReqTest, the user should note the distinction between -'test name' and 'test case': examples of test name are ``control``, ``cpld_control`` -and ``regional_control`` which are all found in the /tests/tests/ directory, whereas +``'test name'`` and ``'test case'``. Examples of test names are ``control``, ``cpld_control`` +and ``regional_control`` which are all found in the ``tests/tests`` directory, whereas test case refers to any one of ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. .. _OperationalRequirement: -.. table:: *Operational requirements* - - +----------+------------------------------------------------------------------------+ - | **Case** | **Description** | - +==========+========================================================================+ - | thr | Varying the number of threads produces the same results | - +----------+------------------------------------------------------------------------+ - | mpi | Varying the number of MPI tasks reproduces | - +----------+------------------------------------------------------------------------+ - | dcp | Varying the decomposition (i.e. tile layout of FV3) reproduces | - +----------+------------------------------------------------------------------------+ - | rst | Restarting reproduces | - +----------+------------------------------------------------------------------------+ - | bit | Model can be compiled in double/single precision and run to completion | - +----------+------------------------------------------------------------------------+ - | dbg | Model can be compiled and run to completion in debug mode | - +----------+------------------------------------------------------------------------+ - -The operational requirement test uses the same testing framework used by the regression -test, and therefore it is recommened that the user first read -:numref:`Section %s `. All the files in -the subdirectories shown in :numref:`Table %s ` are relavant to the -operational requirement test except that the ``opnReqTest`` script replaces ``rt.sh``. -The /tests/opnReqTests/ directory contains +.. table:: *Operational Requirements* + + +----------+-------------------------------------------------------------------------------+ + | **Case** | **Description** | + +==========+===============================================================================+ + | thr | Varying the number of threads produces the same results | + +----------+-------------------------------------------------------------------------------+ + | mpi | Varying the number of MPI tasks produces the same results | + +----------+-------------------------------------------------------------------------------+ + | dcp | Varying the decomposition (i.e. tile layout of FV3) produces the same results | + +----------+-------------------------------------------------------------------------------+ + | rst | Restarting produces the same results | + +----------+-------------------------------------------------------------------------------+ + | bit | Model can be compiled in double/single precision and run to completion | + +----------+-------------------------------------------------------------------------------+ + | dbg | Model can be compiled and run to completion in debug mode | + +----------+-------------------------------------------------------------------------------+ + +The operational requirement testing uses the same testing framework as the regression +tests, so it is recommened that the user first read :numref:`Section %s `. +All the files in the subdirectories shown in :numref:`Table %s ` are relevant to the +operational requirement test. The only difference is that the ``opnReqTest`` script replaces ``rt.sh``. +The ``tests/opnReqTests`` directory contains opnReqTest-specific lower-level scripts used to set up run configurations. On `Tier-1 platforms For example, ``./opnReqTest -n control`` performs all six test cases -listed in :numref:`Table %s ` for ``control`` +listed in :numref:`Table %s ` for the ``control`` test. At the end of the run, a log file ``OpnReqTests_..log`` -is generated in tests/ directory, which informs the user whether each test case +is generated in the ``tests`` directory, which informs the user whether each test case passed or failed. The user can choose to run a specific test case by invoking .. code-block:: console @@ -397,30 +563,52 @@ where ```` is one or more comma-separated values selected from ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit``, ``dbg``. For example, ``./opnReqTest -n control -c thr,rst`` runs the ``control`` test and checks the reproducibility of threading and restart. + + The user can see different command line options available to ``opnReqTest`` by -executing ``./opnReqTest -h``; frequently used options are ``-e`` to use the ecFlow -workflow manager, and ``-k`` to keep the ``$RUNDIR``. In the following, -comparisons are made between the regression and operational requirement tests on how they handle -different reproducibility tests. +executing ``./opnReqTest -h``, which produces the following results: -As discussed in :numref:`Section %s `, the variables and +.. code-block:: console + + Usage: opnReqTest -n [ -c ] [-b] [-d] [-e] [-k] [-h] [-x] [-z] + + -n specify + + -c specify + defaults to all test-cases: thr,mpi,dcp,rst,bit,dbg,fhz + comma-separated list of any combination of std,thr,mpi,dcp,rst,bit,dbg,fhz + + -b test reproducibility for bit; compare against baseline + -d test reproducibility for dbg; compare against baseline + -s test reproducibility for std; compare against baseline + -e use ecFlow workflow manager + -k keep run directory + -h display this help and exit + -x skip compile + -z skip run + +Frequently used options are ``-e`` to use the ecFlow +workflow manager, and ``-k`` to keep the ``$RUNDIR``. Not that the Rocoto workflow manager +is not used operationally and therefore is not an option. + +As discussed in :numref:`Section %s `, the variables and values used to configure model parameters and to set up initial conditions in the -``$RUNDIR`` directory are set up in two stages: first, ``tests/default_vars.sh`` -define default values; then a specific test file in the tests/tests/ subdirectory +``$RUNDIR`` directory are set up in two stages. First, ``tests/default_vars.sh`` +define default values; then a specific test file in the ``tests/tests`` subdirectory either overrides the default values or creates new variables if required by the test. The regression test treats the different test cases shown in :numref:`Table %s ` as different tests. Therefore, each -test case requires a test file in the tests/tests/ subdirectory; examples are +test case requires a test file in the ``tests/tests`` subdirectory. Examples include ``control_2threads``, ``control_decomp``, ``control_restart`` and ``control_debug``, -which are just variations of ``control`` test to check various reproducibilities. +which are just variations of the ``control`` test to check various reproducibilities. There are two potential issues with this approach. First, if several different -variations of a given test were to be created and included in the ``rt.conf`` file, -there are too many tests to run. Second, if a new test is added by the user, s/he +variations of a given test were created and included in the ``rt.conf`` file, +there would be too many tests to run. Second, if a new test is added by the user, s/he will also have to create these variations. The idea behind the operational requirement test is to automatically configure and run these variations, or test cases, given a test file. For example, ``./opnReqTest -n control`` will run all six test cases in :numref:`Table %s ` based on a single ``control`` test file. Similarly, if the user adds a new test ``new_test``, then ``./opnReqTest -n new_test`` will run all test cases. This is done by the operational requirement test script ``opnReqTest`` by adding a third -stage of variable overrides, and the related scripts can be found in the tests/opnReqTests/ +stage of variable overrides. The related scripts can be found in the ``tests/opnReqTests`` directory. diff --git a/doc/UsersGuide/source/CodeOverview.rst b/doc/UsersGuide/source/CodeOverview.rst index ca11724c6d..827a1d3fe3 100644 --- a/doc/UsersGuide/source/CodeOverview.rst +++ b/doc/UsersGuide/source/CodeOverview.rst @@ -8,7 +8,7 @@ Code Overview UFS Weather Model Hierarchical Repository Structure =================================================== -The ufs-weather-model repository supports the short- and medium-range UFS applications. It contains atmosphere and wave components and some infrastructure components. Each of these components has its own repository. All the repositories are currently located in GitHub with public access to the broad community. :numref:`Table %s ` describes the list of repositories that comprises the ufs-weather-model. +The UFS Weather Model (:term:`WM`) repository supports the :term:`UFS` short- and medium-range weather applications (:term:`SRW` / :term:`MRW` Apps). The WM repository contains atmosphere, ocean, sea ice, and wave components, as well as some infrastructure components. Each of these subcomponents has its own repository. All the repositories are currently located in GitHub with public access to the broad community. :numref:`Table %s ` describes the list of repositories that comprises the UFS WM. .. _Repo_Structure: @@ -20,13 +20,11 @@ The ufs-weather-model repository supports the short- and medium-range UFS applic - Authoritative repository URL * - Umbrella repository for the UFS Weather Model - https://github.com/ufs-community/ufs-weather-model - * - Infrastructure: NOAA Environmental Modeling System - - https://github.com/NOAA-EMC/NEMS * - Framework to connect the CCPP library to a host model - https://github.com/NCAR/ccpp-framework * - CCPP library of physical parameterizations - https://github.com/NCAR/ccpp-physics - * - Umbrella repository for the physics and dynamics of the atmospheric model + * - Umbrella repository for the physics and dynamics of the atmospheric model (FV3) - https://github.com/NOAA-EMC/fv3atm * - FV3 dynamical core - https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere @@ -46,91 +44,79 @@ The ufs-weather-model repository supports the short- and medium-range UFS applic - https://github.com/NOAA-EMC/CMEPS * - Community Data Models for Earth Prediction Systems (CDEPS) - https://github.com/NOAA-EMC/CDEPS + * - Air Quality Model (AQM) + - https://github.com/NOAA-EMC/AQM -In the table, the left column contains a description of each repository, and the right column shows the component repositories which are pointing to (or will point to) the authoritative repositories. The ufs-weather-model currently uses git submodule to manage the sub-components. - -The umbrella repository for the UFS Weather Model is named ufs-weather-model. Under this repository reside a number of submodules that are nested in specific directories under the parent repository’s working directory. When the ufs-weather-model repository is cloned, the *.gitmodules* file creates the following directories: - -.. code-block:: console - - ufs-weather-model/ - ├── FV3 https://github.com/NOAA-EMC/fv3atm - │ ├── atmos_cubed_sphere https://github.com/NOAA-GFDL/GFDL_atmos_cubed_sphere - │ ├── ccpp - │ │ ├── framework https://github.com/NCAR/ccpp-framework - │ │ ├── physics https://github.com/NCAR/ccpp-physics - ├── NEMS https://github.com/NOAA-EMC/NEMS - ├── stochastic_physics https://github.com/noaa-psd/stochastic_physics - ├── MOM6-interface - │ └── MOM6 https://github.com/NOAA-EMC/MOM6 - ├── HYCOM-interface - │ └── HYCOM https://github.com/NOAA-EMC/HYCOM-src - ├── CICE-interface - │ └── CICE https://github.com/NOAA-EMC/CICE - ├── WW3 https://github.com/NOAA-EMC/WW3 - ├── GOCART https://github.com/GEOS-ESM/GOCART - ├── CMEPS-interface - │ └── CMEPS https://github.com/NOAA-EMC/CMEPS - ├── CDEPS-interface - │ └── CDEPS https://github.com/NOAA-EMC/CDEPS +In the table, the left column contains a description of each repository, and the right column shows the component repositories which are pointing to (or will point to) the authoritative repositories. The UFS WM currently uses Git submodules to manage the sub-components. =================== Directory Structure =================== -When the ufs-weather-model is cloned, the basic directory structure will be similar to the example below. Files and some directories have been removed for brevity. - +The umbrella repository for the UFS Weather Model is named ``ufs-weather-model``. Under this repository reside a number of submodules that are nested in specific directories under the parent repository's working directory. When the ``ufs-weather-model`` repository is cloned, the basic directory structure will be similar to the example below. Files and some directories have been removed for brevity. Directories in parentheses will appear only after a submodule update (``git submodule update --init --recursive``). .. code-block:: console ufs-weather-model/ - ├── cmake -------- cmake configuration files - ├── doc -------- User Guide files - ├── FV3 -------- UFSAtm atmosphere model - │ ├── atmos_cubed_sphere ------ FV3 dynamic core - │ │ ├── docs - │ │ ├── driver - │ │ ├── model - │ │ └── tools - │ ├── ccpp -------- Common Community Physics Package - │ │ ├── config - │ │ ├── driver - │ │ ├── framework -------- CCPP framework - │ │ ├── physics -------- CCPP compliant physics schemes - │ │ └── suites -------- CCPP physics suite definition files (SDFs) - │ ├── cpl -------- Coupling field data structures - │ ├── io -------- UFSAtm write grid comp code - │ └── stochastic_physics ------ Wrapper for stochastic physics + ├── build.sh -------- script for building the WM + ├── cmake -------- cmake configuration files + ├── CMakeLists.txt + ├── CMakeModules + ├── doc -------- User Guide files + ├── driver + ├── FV3 -------- UFSAtm atmosphere model + │ ├── (atmos_cubed_sphere) -------- FV3 dynamical core + │ │ ├── (docs) + │ │ ├── (driver) + │ │ ├── (model) + │ │ └── (tools) + │ ├── (ccpp) -------- Common Community Physics Package + │ │ ├── (config) + │ │ ├── (driver) + │ │ ├── (framework) -------- CCPP framework + │ │ ├── (physics) -------- CCPP compliant physics schemes + │ │ └── (suites) -------- CCPP physics suite definition files (SDFs) + │ ├── (cpl) -------- Coupling field data structures + │ ├── (io) -------- UFSAtm write grid comp code + │ └── (stochastic_physics) -------- Wrapper for stochastic physics │ - ├── NEMS -------- NOAA Earth Modeling System framework - ├── stochastic_physics -------- stochastic physics pattern generator + ├── stochastic_physics -------- stochastic physics pattern generator + ├── AQM + │ └── (src) + │ ├── (model) + │ └── (CMAQ) --------- EPA AQ Model + ├── CICE-interface + │ └── CICE --------- CICE6 sea ice model + │ ├── (icepack) --------- Sea ice column physics + │ └── (cicecore/drivers/nuopc/cmeps) --------- NUOPC CICE6 cap + ├── GOCART + │ └── (ESMF) --------- GOCART model + ├── HYCOM-interface + │ └── HYCOM --------- HYCOM ocean model + │ └── (NUOPC) --------- NUOPC HYCOM cap ├── MOM6-interface │ └── MOM6 - │ ├── src --------- MOM6 ocean model - │ └── config_source/drivers/nuopc_cap --------- NUOPC MOM6 cap - ├── HYCOM-interface - │ └── HYCOM --------- HYCOM ocean model - │ └── NUOPC --------- NUOPC HYCOM cap - ├── CICE-interface - ├── CICE-interface - │ └── CICE --------- CICE6 sea ice model - │ ├── icepack --------- Sea ice column physics - │ └── cicecore/drivers/nuopc/cmeps --------- NUOPC CICE6 cap + │ ├── (src) --------- MOM6 ocean model + │ └── (config_source/drivers/nuopc_cap) --------- NUOPC MOM6 cap ├── WW3 - │ └── model --------- WW3 model - │ └── esmf --------- NUOPC WW3 cap - ├── GOCART - │ └── ESMF --------- GOCART model + │ └── (model) --------- WW3 model + │ └── (esmf) --------- NUOPC WW3 cap ├── CDEPS-interface │ └── CDEPS - │ ├── datm --------- CDEPS DATM - │ └── docn --------- CDEPS DOCN + │ ├── (datm) --------- CDEPS DATM + │ └── (docn) --------- CDEPS DOCN + ├── CMEPS-interface + │ └── CMEPS + │ └── (cesm) --------- CMEPS CESM ├── modulefiles -------- system module files for supported HPC systems - ├── tests -------- regression test infrastructure - │ └── parm - │ └── tests - │ └── fv3_conf + └── tests -------- regression test infrastructure + └── parm + └── tests + └── fv3_conf -The physics subdirectory in the *gfsphysics* directory is not used or supported +The physics subdirectory in the ``gfsphysics`` directory is not used or supported as part of this release (all physics is available through the :term:`CCPP` using the repository described in :numref:`Table %s `). + +.. COMMENT: Should we omit CMakeLists.txt, CMakeModules, driver (which I added) or add a description? +.. COMMENT: I don't see a "gfsphysics" directory... Can we remove it or be more specific about where it is? There are two CCPP repos in the table referenced above... Framework and Physics. \ No newline at end of file diff --git a/doc/UsersGuide/source/ConfigParameters.rst b/doc/UsersGuide/source/ConfigParameters.rst new file mode 100644 index 0000000000..6aa6e4eada --- /dev/null +++ b/doc/UsersGuide/source/ConfigParameters.rst @@ -0,0 +1,178 @@ +.. _ConfigParams: + +****************************************** +Configuration Parameters +****************************************** + +================================= +Build Configuration Parameters +================================= + +.. _dapp: + +Configuration Options +========================= + +``-DAPP``: + Sets the :term:`WM` configuration to build. + Valid values: ``ATM``, ``ATMW``, ``ATMAERO``, ``ATMAQ``, ``S2S``, ``S2SA``, ``S2SW``, ``S2SWA``, ``NG-GODAS``, ``HAFS``, ``HAFSW``, ``HAFS-ALL`` + + +.. _suites: + +Physics Options +======================= + +``-DCCPP_SUITES``: + Sets the physics suites that will be made available when the :term:`WM` is built. + + Physics suites supported in regression testing: + + | ``FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp`` + | ``FV3_GFS_v15p2`` + | ``FV3_GFS_v15_thompson_mynn`` + | ``FV3_GFS_v15_thompson_mynn_lam3km`` + | ``FV3_GFS_v16`` + | ``FV3_GFS_v16_csawmg`` + | ``FV3_GFS_v16_fv3wam`` + | ``FV3_GFS_v16_noahmp`` + | ``FV3_GFS_v16_ras`` + | ``FV3_GFS_v16_ugwpv1`` + | ``FV3_GFS_v17_p8`` + | ``FV3_GFS_v17_p8_rrtmgp`` + | ``FV3_GFS_v17_coupled_p8`` + | ``FV3_GFS_v17_coupled_p8_sfcocn`` + | ``FV3_HAFS_v0_gfdlmp_tedmf`` + | ``FV3_HAFS_v0_gfdlmp_tedmf_nonsst`` + | ``FV3_HAFS_v0_thompson_tedmf_gfdlsf`` + | ``FV3_HRRR`` + | ``FV3_HRRR_smoke`` + | ``FV3_RAP`` + | ``FV3_RAP_RRTMGP`` + | ``FV3_RAP_sfcdiff`` + | ``FV3_RRFS_v1beta`` + | ``FV3_RRFS_v1nssl`` + + Other valid values: + + | ``FV3_CPT_v0`` + | ``FV3_GFS_2017`` + | ``FV3_GFS_2017_csawmg`` + | ``FV3_GFS_2017_csawmgshoc`` + | ``FV3_GFS_2017_gfdlmp`` + | ``FV3_GFS_2017_gfdlmp_noahmp`` + | ``FV3_GFS_2017_gfdlmp_regional`` + | ``FV3_GFS_2017_gfdlmp_regional_c768`` + | ``FV3_GFS_2017_h2ophys`` + | ``FV3_GFS_2017_myj`` + | ``FV3_GFS_2017_ntiedtke`` + | ``FV3_GFS_2017_ozphys_2015`` + | ``FV3_GFS_2017_sas`` + | ``FV3_GFS_2017_satmedmf`` + | ``FV3_GFS_2017_satmedmfq`` + | ``FV3_GFS_2017_shinhong`` + | ``FV3_GFS_2017_stretched`` + | ``FV3_GFS_2017_ysu`` + | ``FV3_GFS_cpld_rasmgshoc`` + | ``FV3_GFS_cpld_rasmgshocnsst`` + | ``FV3_GFS_cpld_rasmgshocnsst_flake`` + | ``FV3_GFS_cpld_rasmgshocnsst_ugwp`` + | ``FV3_GFS_cpldnst_rasmgshoc`` + | ``FV3_GFS_rasmgshoc`` + | ``FV3_GFS_v15`` + | ``FV3_GFS_v15_gf`` + | ``FV3_GFS_v15_gf_thompson`` + | ``FV3_GFS_v15_mynn`` + | ``FV3_GFS_v15_ras`` + | ``FV3_GFS_v15_rasmgshoc`` + | ``FV3_GFS_v15_thompson`` + | ``FV3_GFS_v15p2_no_nsst`` + | ``FV3_GFS_v15plus`` + | ``FV3_GFS_v15plusras`` + | ``FV3_GFS_v16_coupled`` + | ``FV3_GFS_v16_coupled_noahmp`` + | ``FV3_GFS_v16_coupled_nsstNoahmp`` + | ``FV3_GFS_v16_coupled_nsstNoahmpUGWPv1`` + | ``FV3_GFS_v16_coupled_p8`` + | ``FV3_GFS_v16_coupled_p8_sfcocn`` + | ``FV3_GFS_v16_couplednsst`` + | ``FV3_GFS_v16_flake`` + | ``FV3_GFS_v16_no_nsst`` + | ``FV3_GFS_v16_nsstNoahmpUGWPv1`` + | ``FV3_GFS_v16_p8`` + | ``FV3_GFS_v16_thompson`` + | ``FV3_GFSv17alp_cpldnsstrasnoahmp`` + | ``FV3_GFSv17alp_cpldnsstrasugwpnoahmp`` + | ``FV3_GFSv17alp_cpldnsstsasugwpnoahmp`` + | ``FV3_GFSv17alpha_cpldnsstras`` + | ``FV3_GFSv17alpha_cpldnsstras_flake`` + | ``FV3_GFSv17alpha_cpldnsstras_ugwp`` + | ``FV3_GFSv17alpha_cpldnsstrasnoshal`` + | ``FV3_GFSv17alpha_cpldnsstsas`` + | ``FV3_GFSv17alpha_cpldnsstsas_ugwp`` + | ``FV3_GFSv17alpha_ras`` + | ``FV3_GFSv17alpha_ras_flake`` + | ``FV3_GFSv17alpha_ras_ugwp`` + | ``FV3_GFSv17alpha_sas`` + | ``FV3_RAP_cires_ugwp`` + | ``FV3_RAP_flake`` + | ``FV3_RAP_noah`` + | ``FV3_RAP_noah_sfcdiff_cires_ugwp`` + | ``FV3_RAP_noah_sfcdiff_ugwpv1`` + | ``FV3_RAP_noah_sfcdiff_unified_ugwp`` + | ``FV3_RAP_unified_ugwp`` + | ``FV3_RRFS_v1alpha`` + +.. _other-build-options: + +Other Build Options +======================= + +``-DCMEPS_AOFLUX``: (Default: OFF) + Enables atmosphere-ocean flux calculation in mediator. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: But when/why would you do this? + +``-DDEBUG``: (Default: OFF) + Enables DEBUG mode. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: And what extras does DEBUG mode provide (that VERBOSE) doesn't? + +``-D32BIT``: (Default: OFF) + Enables 32-bit, single precision arithmetic in dycore and fast physics. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: But when/why would you do this? + +``-DCCPP_32BIT``: (Default: OFF) + Enables 32-bit, single precision arithmetic in slow physics. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: But when/why would you do this? + +``-DMOVING_NEST``: (Default: OFF) + Enables moving nest code. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: But what does that mean? When/why is the moving nest used? + +``-DMULTI_GASES``: (Default: OFF) + Enable ``MULTI_GASES``. + Valid values: ``ON`` | ``OFF`` + + .. COMMENT: But what does this DO?! And when/why is it used? + + +.. COMMENT: Add any of the following options with -D in front??? + set(AVX2 ON CACHE BOOL "Enable AVX2 instruction set") + set(AVX OFF CACHE BOOL "Enable AVX-I instruction set") + set(SIMDMULTIARCH OFF CACHE BOOL "Enable multi-target SIMD instruction sets") + set(DEBUG_LINKMPI ON CACHE BOOL "Enable linkmpi option when DEBUG mode is on") + set(INLINE_POST OFF CACHE BOOL "Enable inline post") + set(OPENMP ON CACHE BOOL "Enable OpenMP threading") + set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") + set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") + + diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index 75d8860248..71ee5dc234 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -12,74 +12,73 @@ An efficient way to build and run the UFS Weather Model is to use the regression (``rt.sh``). This script is widely used by model developers on Tier 1 and 2 platforms and is described in the UFS WM GitHub `wiki `_. The advantages to this approach are: -- It does not require a workflow, pre- or post-processing steps. -- The batch submission script is generated. -- Any required input data is already available for machines used by the regression test. -- Once the ``rt.sh`` test completes, you will have a working copy in your run directory - where you can make modifications to the namelist and other files, and then re-run the - executable. + * It does not require a workflow, pre- or post-processing steps. + * The batch submission script is generated. + * Any required input data is already available for machines used by the regression test. + * Once the ``rt.sh`` test completes, you will have a working copy in your run directory where you can + make modifications to the namelist and other files, and then re-run the executable. The steps are: -1. Clone the source code and all the submodules as described in :numref:`Section %s `, then - go into the ``tests`` directory: + #. Clone the source code and all the submodules as described in :numref:`Section %s `, then + go into the ``tests`` directory: - .. code-block:: console + .. code-block:: console - cd ufs-weather-model (or the top level where you checked out the code) - cd tests + cd ufs-weather-model (or the top level where you checked out the code) + cd tests -2. Find a configure (``*.conf``) file that contains the machine and compiler you are using. For this - example, the Intel compiler on Cheyenne is used. To create a custom configure file, two lines are - needed: a ``COMPILE`` line and a ``RUN`` line. The ``COMPILE`` line should contain the name - of the machine and compiler ``cheyenne.intel`` and the desired ``SUITES`` for the build. Choose a - ``RUN`` line under this ``COMPILE`` command that uses the desired ``SUITE``. For example: + #. Find a configure (``*.conf``) file that contains the machine and compiler you are using. For this + example, the Intel compiler on Cheyenne is used. To create a custom configure file, two lines are + needed: a ``COMPILE`` line and a ``RUN`` line. The ``COMPILE`` line should contain the name + of the machine and compiler ``cheyenne.intel`` and the desired ``SUITES`` for the build. Choose a + ``RUN`` line under this ``COMPILE`` command that uses the desired ``SUITE``. For example: - .. code-block:: console + .. code-block:: console - COMPILE | 32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_no_nsst,FV3_GFS_v16beta_no_nsst | standard | cheyenne.intel | fv3 - RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | + COMPILE | 32BIT=Y CCPP=Y STATIC=Y SUITES=FV3_GFS_v15p2,FV3_GFS_v16beta,FV3_GFS_v15p2_no_nsst,FV3_GFS_v16beta_no_nsst | standard | cheyenne.intel | fv3 + RUN | fv3_ccpp_gfs_v16beta | standard | | fv3 | - Put these two lines into a file called ``my_test.conf``. The parameters used in this run can be - found in the ``fv3_ccpp_gfs_v16beta`` file in the ``ufs-weather-model/tests/tests`` directory. + Put these two lines into a file called ``my_test.conf``. The parameters used in this run can be + found in the ``fv3_ccpp_gfs_v16beta`` file in the ``ufs-weather-model/tests/tests`` directory. - .. note:: These two lines are long and may not appear in entirety in your browser. Scroll to the right to see - the entire line. + .. note:: These two lines are long and may not appear in entirety in your browser. Scroll to the right to see + the entire line. -3. Modify the ``rt.sh`` script to put the output in a run directory where you have write permission: + #. Modify the ``rt.sh`` script to put the output in a run directory where you have write permission: - .. code-block:: console + .. code-block:: console - if [[ $MACHINE_ID = cheyenne.* ]]; then stanza: - ... - dprefix=/glade/scratch + if [[ $MACHINE_ID = cheyenne.* ]]; then stanza: + ... + dprefix=/glade/scratch - This works for Cheyenne, since ``$USER/FV3_RT`` will be appended. Also check that ``RTPWD`` - points to a diretory that exists: + This works for Cheyenne, since ``$USER/FV3_RT`` will be appended. Also check that ``RTPWD`` + points to a diretory that exists: - .. code-block:: console + .. code-block:: console - if [[ $MACHINE_ID = cheyenne.* ]]; then - RTPWD=${RTPWD:-$DISKNM/ufs-public-release-20200224/${COMPILER^^}} + if [[ $MACHINE_ID = cheyenne.* ]]; then + RTPWD=${RTPWD:-$DISKNM/ufs-public-release-20200224/${COMPILER^^}} -4. Run the ``rt.sh`` script from the ``tests`` directory: + #. Run the ``rt.sh`` script from the ``tests`` directory: - .. code-block:: console + .. code-block:: console - ./rt.sh -k -l my_test.conf >& my_test.out & + ./rt.sh -k -l my_test.conf >& my_test.out & - Check ``my_test.out`` for build and run status, plus other standard output. Check - ``/glade/scratch/$USER/FV3_RT/rt_PID`` for the model run, where ``PID`` is a process ID. - The build will take about 10-15 minutes and the run will be fast, depending on how long - it waits in the queue. A message ``"REGRESSION TEST WAS SUCCESSFUL"`` will be written to this - file, along with other entertainment: ``'Elapsed time: 00h:14m:12s. Have a nice day!'``. + Check ``my_test.out`` for build and run status, plus other standard output. Check + ``/glade/scratch/$USER/FV3_RT/rt_PID`` for the model run, where ``PID`` is a process ID. + The build will take about 10-15 minutes and the run will be fast, depending on how long + it waits in the queue. A message ``"REGRESSION TEST WAS SUCCESSFUL"`` will be written to this + file, along with other entertainment: ``'Elapsed time: 00h:14m:12s. Have a nice day!'``. -5. When the build and run are complete, modify the namelist or ``model_configure`` files - and re-run by submitting the ``job_card`` file: + #. When the build and run are complete, modify the namelist or ``model_configure`` files + and re-run by submitting the ``job_card`` file: - .. code-block:: console + .. code-block:: console - qsub job_card + qsub job_card ============================================ How do I change the length of the model run? @@ -87,25 +86,18 @@ How do I change the length of the model run? In your run directory, there is a file named ``model_configure``. Change the variable ``nhours_fcst`` to the desired number of hours. -======================================================================== -How do I select the file format for the model output (netCDF or NEMSIO)? -======================================================================== -In your run directory, there is a file named ``model_configure``. Change the -variable ``output_file`` to ``'netcdf'`` or ``'nemsio'``. The variable ``output_file`` -is only valid when the write component is activated by setting ``quilting`` to .true. -in the ``model_configure`` file. - ============================================================== How do I set the output history interval? ============================================================== + The interval at which output (history) files are written is controlled in two places, and depends on whether you are using the write component to generate your output files. -:numref:`Table %s ` describes the relevant variables. If the write_component is used, then the variables listed as *model_configure* are required. It is however, also required that the settings in *input.nml* match those same settings in *model_configure*. If these settings are inconsistent, then unpredictable output files and intervals may occur! +:numref:`Table %s ` describes the relevant variables. If the write_component is used, then the variables listed as ``model_configure`` are required. It is however, also required that the settings in ``input.nml`` match those same settings in ``model_configure``. If these settings are inconsistent, then unpredictable output files and intervals may occur! .. _OutputControl: .. list-table:: *Namelist variables used to control the output file frequency.* - :widths: 15 10 10 30 + :widths: 15 10 10 30 :header-rows: 1 * - Namelist variable @@ -147,13 +139,435 @@ places, and depends on whether you are using the write component to generate you - 3 - history file output frequency +============================================================= +How do I turn off IO for the components of the coupled model? +============================================================= + +FV3atm restart and history files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +To turn off FV3atm restart files, set the ``restart_interval`` in +``model_configure`` to a value greater than the forecast length. + +To turn off history files, in ``model_configure`` there are two +options: + +* Set ``quilting`` to .false., then in ``diag_table``, remove the history + output file definitions ``fv3_history`` and ``fv3_history2d`` and the + associated fields. This will turn off the write_grid component and the + number of tasks used by FV3atm must also be adjusted to remove the + tasks assigned to the write grid component. + +* Set ``quilting`` to .true., then in ``model_configure`` set + ``write_dopost`` to .false. and set ``output_fh`` to a value greater + than the forecast length. This will turn off the writing of output but + the write grid component tasks will still be necessary. + +MOM6, CICE6 and CMEPS restart files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +In ``nems.configure``, set the ALLCOMP_attribute ``restart_n`` to a +value greater than the forecast length. + +MOM6 history files +^^^^^^^^^^^^^^^^^^ + +In the ``diag_table`` file, remove the ``ocn`` and ``SST`` history +output file definitions and fields. + +MOM6 history output speed can also be increased by setting the +``IO_LAYOUT`` parameter in ``INPUT/MOM_input``. + +:: + + IO_LAYOUT = 4,2 + +CICE history files +^^^^^^^^^^^^^^^^^^ + +In the CICE namelist ``ice_in``, set the ``histfreq`` to none with + +:: + + histfreq = 'x','x','x','x','x' + +The initial condition file can be turned off using + +:: + + write_ic = .false. + +GOCART history files +^^^^^^^^^^^^^^^^^^^^ + +In AERO_HISTORY.rc, remove all the fields listed in ``COLLECTIONS`` + +:: + + COLLECTIONS: + :: + +WW3 history and restart files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +In ``ww3_shel.inp``, change the output interval for gridded frequency from +3600 to 0 on `line 68 +`_. To +turn off point output, change the output frequency from 900 to 0 on +`line 296 +`_. To +turn off restart files, change the frequency from 3600 to 0 on `line +321 +`_. + + + ============================================================== How do I set the total number of tasks for my job? ============================================================== -The total number of MPI tasks used by the UFS Weather Model is a combination of compute and quilt tasks, and can be calculated using the following relationship: -- total tasks = compute tasks + quilt tasks -- compute tasks = x layout * y layout * number of tiles -- quilt tasks = write_groups * write_tasks_per_group if quilting==.true. +In the UFS WM, each component's MPI task information, including the +starting and ending tasks and the number of threads, are specified +using the component-specific ``petlist_bounds`` and +``omp_num_threads`` in ``nems.configure``. In general, the total +number of MPI tasks required is the sum of all the sub-component +tasks, as long as those components do not overlap (i.e., share the +same PETs). An example of a global 5 component coupled configuration +nems.configure at the end of this section. + +FV3atm +^^^^^^ + +The FV3atm component consists of one or more forecast grid components +and write grid components. + +The MPI tasks for the forecast grid components are specified in the +layout variable in one or more namelist files ``input*.nml`` +(e.g. input.nml and input_nest02.nml). The total number of mpi tasks +required is given by the product of the specified layout, summed over +all domains. For example, for a global domain with 6 tiles and +``layout = 6,8``, the total number required is ``6*6*8 = 288``. For +two regional domains using ``input.nml`` and ``input_nest02.nml``, +each with ``layout = 6,10``, the total required is the sum ``6*10 + +6*10 = 120``. + +For the global configuration, an additional requirement is that the +layout specified must be a multiple of the ``blocksize`` parameter in +``input.nml``. For example, using ``layout=8,8`` for C96 yields +subdomains of ``12 x 12``. The subdomain product is ``12*12 = 144``, +which is not divisible by a ``blocksize=32``. Therefore, the C96 does +not support an ``8,8`` layout for a blocksize of 32. If ``layout = +4,6``, the subdomain product is ``24*16 = 384``, which is divisible by +a ``blocksize=32``. A layout of ``4,6`` is supported for C96 with a +blocksize of 32. + +The FV3atm will utilize the write grid component if ``quilting`` is +set to .true. In this case, the required mpi tasks for the +write grid components is the product of the ``write_groups`` and the +``write_tasks_per_group`` in the ``model_configure`` file. + +:: + + quilting: .true. + write_groups: 1 + write_tasks_per_group: 60 + + +In the above case, the write grid component requires 60 tasks. + +The total number of MPI ranks for FV3atm is the sum of the forecast tasks and any +write grid component tasks. + +:: + + total_tasks_atm = forecast tasks + write grid component tasks + +If ESMF-managed threading is used, the total number of PETs for the +atmosphere component is given by the product of the number of threads +requested and the total number of MPI ranks (both forecast and write +grid component). If ``num_threads_atm`` is the number of threads +specified for the FV3atm component, in ``nems.configure`` the ATM PET +bounds are given by + +:: + + ATM_petlist_bounds 0 total_tasks_atm*num_threads_atm-1 + ATM_omp_num_threads num_threads_atm + +Note that in UWM, the ATM component is normally listed first in +``nems.configure`` so that the starting PET for the ATM is 0. + +GOCART +^^^^^^ + +GOCART shares the same grid and forecast tasks as FV3atm but it does +not have a separate write grid component in its NUOPC CAP. Also, while +GOCART does not have threading capability, it shares the same data +structure as FV3atm and so it has to use the same number of threads +used by FV3atm. Therefore, the total number of MPI ranks and threads +in GOCART is the same as the those for the FV3atm forecast component +(i.e., excluding any write grid component). Currently GOCART only runs +on the global forecast grid component, for which only one namelist is +needed. + +:: + + total_tasks_chm = FV3atm forecast tasks + + CHM_petlist_bounds: 0 total_tasks_chm*num_threads_atm-1 + CHM_omp_num_threads: num_threads_atm + +CMEPS +^^^^^ + +The mediator MPI tasks can overlap with other components and in UFS +the tasks are normally shared on the FV3atm forecast tasks. However, a +large number of tasks for the mediator is generally not recommended +since it may cause slow performance. This means that the number of +MPI tasks for CMEPS is given by + +:: + + total_tasks_med = smaller of (300, FV3atm forecast tasks) + +and in ``nems.configure`` + +:: + + MED_petlist_bounds: 0 total_tasks_med*num_threads_atm-1 + MED_omp_num_threads: num_threads_atm + +MOM6 +^^^^ + +For MOM6 the only restriction currently on the number of MPI ranks +used by MOM6 is that it is divisible by 2. The starting PET in +``nems.configure`` will be the last PET of the preceding component, +incremented by one. Threading in MOM6 is not recommended at this time. + +:: + + OCN_petlist_bounds: starting_OCN_PET total_tasks_ocn+starting_OCN_PET-1 + OCN_omp_num_threads: 1 + +CICE +^^^^ + +CICE requires setting the decomposition shape, the number of requested +processors and the calculated block sizes in the ``ice_in`` +namelist. In UFS, the decomposition shape is always ``SlenderX2``, +except for the 5 deg configuration, which is ``SlenderX1``. + +For ``SlenderX2`` decomposition, a given ``nprocs``, and global domain +``nx_global``, ``ny_global``, the block sizes are given by + +:: + + block_size_y = ny_global/2 + block_size_x = nx_global/(nprocs/2) + +Similarily, for ``SlenderX1`` + +:: + + block_size_y = ny_global + block_size_x = nx_global/nprocs + + +For the 1-deg CICE domain for example, ``ice_in`` would be + +:: + + nprocs = 10 + nx_global = 360 + ny_global = 320 + block_size_x = 72 + block_size_y = 160 + max_blocks = -1 + processor_shape = 'slenderX2' + + +In UFS, only a single thread is used for CICE so for ``nprocs`` set in +``ice_in``, the tasks in ``nems.configure`` are set as: + +:: + + ICE_petlist_bounds: starting_ICE_PET nprocs+starting_ICE_PET-1 + ICE_omp_num_threads: 1 + +The starting ICE PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + +WW3 +^^^ + +The WW3 component requires setting only the MPI ranks available +for WW3 and the number of threads to be used. + +:: + + WAV_petlist_bounds: starting_WAV_PET num_tasks_wav*num_threads_wav+starting_WAV_PET-1 + WAV_omp_num_threads: num_threads_wav + +The starting WAV PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + -The layout and tiles settings are in ``input.nml``, and the quilt task settings are in ``model_configure`` +Example: 5-component nems.configure +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +For the fully coupled S2SWA application, a sample ``nems.configure`` is shown below : + + +.. code-block:: console + + ############################################# + #### NEMS Run-Time Configuration File ##### + ############################################# + + # ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + globalResourceControl: true + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 767 + MED_omp_num_threads: 2 + :: + + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 863 + ATM_omp_num_threads: 2 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # CHM # + CHM_model: gocart + CHM_petlist_bounds: 0 767 + CHM_omp_num_threads: 2 + CHM_attributes:: + Verbosity = 0 + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 864 983 + OCN_omp_num_threads: 1 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 984 1031 + ICE_omp_num_threads: 1 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 3 + stop_option = nhours + stop_ymd = -999 + :: + + # WAV # + WAV_model: ww3 + WAV_petlist_bounds: 1032 1191 + WAV_omp_num_threads: 2 + WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + diro = "." + logfile = wav.log + mesh_wav = mesh.gwes_30m.nc + multigrid = false + :: + + CMEPS warm run sequence + runSeq:: + @1800 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @300 + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + WAV_model = ww3 + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac + history_tile_atm = 384 + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 3 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 6 + stop_option = nhours + stop_ymd = -999 + :: diff --git a/doc/UsersGuide/source/Glossary.rst b/doc/UsersGuide/source/Glossary.rst index 17267c64cf..ba105504db 100644 --- a/doc/UsersGuide/source/Glossary.rst +++ b/doc/UsersGuide/source/Glossary.rst @@ -6,9 +6,20 @@ Glossary .. glossary:: + advect + To transport substances in the atmostphere by :term:`advection`. + + advection + According to the American Meteorological Society (AMS) `definition `__, advection is "The process of transport of an atmospheric property solely by the mass motion (velocity field) of the atmosphere." In common parlance, advection is movement of atmospheric substances that are carried around by the wind. + + ATM + The Weather Model configuration that runs only the standalone atmospheric model. + + AQM + The `Air Quality Model `__ (AQM) is a UFS Application that dynamically couples the Community Multiscale Air Quality (:term:`CMAQ`) model with the UFS Weather Model through the :term:`NUOPC` Layer to simulate temporal and spatial variations of atmospheric compositions (e.g., ozone and aerosol compositions). The CMAQ, treated as a column chemistry model, updates concentrations of chemical species (e.g., ozone and aerosol compositions) at each integration time step. The transport terms (e.g., :term:`advection` and diffusion) of all chemical species are handled by the UFS Weather Model as :term:`tracers`. + CCPP - Model agnostic, vetted, collection of codes containing atmospheric physical parameterizations - and suites for use in NWP along with a framework that connects the physics to host models + The `Common Community Physics Package `__ is a forecast-model agnostic, vetted collection of code containing atmospheric physical parameterizations and suites of parameterizations for use in Numerical Weather Prediction (:term:`NWP`) along with a framework that connects the physics to the host forecast model. CCPP-Framework The infrastructure that connects physics schemes with a host model; also refers to a software @@ -17,26 +28,129 @@ Glossary CCPP-Physics The pool of CCPP-compliant physics schemes; also refers to a software repository of the same name + CDEPS + The `Community Data Models for Earth Predictive Systems `__ repository (CDEPS) contains a set of :term:`NUOPC`-compliant data components and :term:`ESMF`-based "stream" code that selectively removes feedback in coupled model systems. In essence, CDEPS handles the static Data Atmosphere (:term:`DATM`) integration with dynamic coupled model components (e.g., :term:`MOM6`). The CDEPS data models perform the basic function of reading external data files, modifying those data, and then sending the data back to the :term:`CMEPS` mediator. The fields sent to the :term:`mediator` are the same as those that would be sent by an active component. This takes advantage of the fact that the mediator and other CMEPS-compliant model components have no fundamental knowledge of whether another component is fully active or just a data component. More information about DATM is available in the `CDEPS Documentation `__. + + CESM + The `Community Earth System Model `__ (CESM) is a fully-coupled global climate model developed at the National Center for Atmospheric Research (:term:`NCAR`) in collaboration with colleagues in the research community. + + chgres_cube + The preprocessing software used to create initial and boundary condition files to "coldstart" the forecast model. It is part of :term:`UFS_UTILS`. + + CICE + CICE6 + Sea Ice Model + `CICE `__ is a computationally efficient model for simulating the growth, melting, and movement of polar sea ice. It was designed as one component of a coupled atmosphere-ocean-land-ice global climate model. CICE has several interacting components, including a model of ice dynamics, a transport model that describes :term:`advection` of different state variables; and a vertical physics package called "Icepack". + + CMAQ + The `Community Multiscale Air Quality Model `__ (CMAQ, pronounced "cee-mak") is a numerical air quality model that predicts the concentration of airborne gases and particles and the deposition of these pollutants back to Earth's surface. The purpose of CMAQ is to provide fast, technically sound estimates of ozone, particulates, toxics, and acid deposition. CMAQ is an active open-source development project of the U.S. Environmental Protection Agency (EPA). Code is publicly availably at https://github.com/USEPA/CMAQ. + + CMEPS + The `Community Mediator for Earth Prediction Systems `__ (CMEPS) is a :term:`NUOPC`-compliant :term:`mediator` used for coupling Earth system model components. It is currently being used in NCAR's Community Earth System Model (:term:`CESM`) and NOAA's subseasonal-to-seasonal (S2S) coupled system. More information is available in the `CMEPS Documentation `__. + + cron + cron job + crontab + cron table + Cron is a job scheduler accessed through the command-line on UNIX-like operating systems. It is useful for automating tasks such as regression testing. Cron periodically checks a cron table (aka crontab) to see if any tasks are are ready to execute. If so, it runs them. + + DATM + DATM is the *Data Atmosphere* component of :term:`CDEPS`. It uses static atmospheric forcing files (derived from observations or previous atmospheric model runs) instead of output from an active atmospheric model. This reduces the complexity and computational cost associated with coupling to an active atmospheric model. The *Data Atmosphere* component is particularly useful when employing computationally intensive Data Assimilation (DA) techniques to update ocean and/or sea ice fields in a coupled model. In general, use of DATM in place of :term:`ATM` can be appropriate when users are running a coupled model and only want certain components of the model to be active. More information about DATM is available in the `CDEPS Documentation `__. + + dycore + dynamical core + Global atmospheric model based on fluid dynamics principles, including Euler's equations of motion. + + EMC + The `Environmental Modeling Center `__ is one of :term:`NCEP`'s nine centers and leads the :term:`National Weather Service `'s modeling efforts. + + ESMF + `Earth System Modeling Framework `__. The ESMF defines itself as "a suite of software tools for developing high-performance, multi-component Earth science modeling applications." It is a community-developed software infrastructure for building and coupling models. + FMS The Flexible Modeling System (FMS) is a software framework for supporting the efficient development, construction, execution, and scientific interpretation of atmospheric, oceanic, and climate system models. + FV3 + FV3 dycore + FV3 dynamical core + The Finite-Volume Cubed-Sphere :term:`dynamical core` (dycore). Developed at NOAA's `Geophysical + Fluid Dynamics Laboratory `__ (GFDL), it is a scalable and flexible dycore capable of both hydrostatic and non-hydrostatic atmospheric simulations. It is the dycore used in the UFS Weather Model. + + GOCART + NASA's Goddard Chemistry Aerosol Radiation and Transport (GOCART) model simulates the distribution of major tropospheric aerosol types, including sulfate, dust, organic carbon (OC), black carbon (BC), and sea salt aerosols. The UFS Weather Model integrates a prognostic aerosol component using GOCART. The code is publicly available on GitHub at https://github.com/GEOS-ESM/GOCART. + + HPC-Stack + The `HPC-Stack `__ is a repository that provides a unified, shell script-based build system for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. + + HAFS + The Hurricane Analysis and Forecast System (`HAFS `__) is a :term:`UFS` application for hurricane forecasting. It is an :term:`FV3`-based multi-scale model and data assimilation (DA) system capable of providing analyses and forecasts of the inner core structure of tropical cyclones (TC) --- including hurricanes and typhoons --- out to 7 days. This is key to improving size and intensity predictions. HAFS also provides analyses and forecasts of the large-scale environment that is known to influence a TC's motion. HAFS development targets an operational analysis and forecast system for hurricane forecasters with reliable, robust and skillful guidance on TC track and intensity (including rapid intensification), storm size, genesis, storm surge, rainfall, and tornadoes associated with TCs. Currently, HAFS is under active development with collaborative efforts among NCEP/EMC, AOML/HRD, GFDL, ESRL/GSD, ESRL/NESII, OFCM/AOC, and NCAR/DTC. + + HYCOM + The HYbrid Coordinate Ocean Model (`HYCOM `__) was developed to address known shortcomings in the vertical coordinate scheme of the Miami Isopycnic-Coordinate Ocean Model (MICOM). HYCOM is a primitive equation, general circulation model with vertical coordinates that remain isopycnic in the open, stratified ocean. However, the isopycnal vertical coordinates smoothly transition to z-coordinates in the weakly stratified upper-ocean mixed layer, to terrain-following sigma coordinates in shallow water regions, and back to z-level coordinates in very shallow water. The latter transition prevents layers from becoming too thin where the water is very shallow. See the `HYCOM User's Guide `__ for more information on using the model. The `HYCOM model code `__ is publicly available on GitHub. + + Mediator + A mediator, sometimes called a coupler, is a software component that includes code for representing component interactions. Typical operations include merging data fields, ensuring consistent treatment of coastlines, computing fluxes, and temporal averaging. + + MOM + MOM6 + Modular Ocean Model + MOM6 is the latest generation of the Modular Ocean Model. It is numerical model code for simulating the ocean general circulation. MOM6 was originally developed by the `Geophysical Fluid Dynamics Laboratory `__. Currently, `MOM6 code `__ and an `extensive suite of test cases `__ are available under an open-development software framework. Although there are many public forks of MOM6, the `NOAA EMC fork `__ is used in the UFS Weather Model. + + MRW + MRW App + The `Medium-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior out to about two weeks. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + + NCAR + The `National Center for Atmospheric Research `__. + + NCEP + National Centers for Environmental Prediction (NCEP) is a branch of the :term:`National Weather Service ` and consists of nine centers, including the :term:`Environmental Modeling Center `. More information can be found at https://www.ncep.noaa.gov. + + NCEPLIBS + The software libraries created and maintained by :term:`NCEP` that are required for running + :term:`chgres_cube`, the UFS Weather Model, and the :term:`UPP`. They are included in the `HPC-Stack `__ and in `spack-stack `__. + + NCEPLIBS-external + A collection of third-party libraries required to build :term:`NCEPLIBS`, :term:`chgres_cube`, + the UFS Weather Model, and the :term:`UPP`. They are included in the :term:`HPC-Stack` and in :term:`spack-stack`. + NEMS - The NOAA Environmental Modeling System - a software infrastructure that supports - NCEP/EMC’s forecast products. + The NOAA Environmental Modeling System is a common modeling framework whose purpose is + to streamline components of operational modeling suites at :term:`NCEP`. + + NG-GODAS + Next Generation-Global Ocean Data Assimilation System. NG-GODAS is a UFS Weather Model configuration that couples ocean (:term:`MOM6`), sea ice (:term:`CICE6`), and Data Assimilation (DA) capabilities with the :term:`DATM` component of :term:`CDEPS`. NUOPC - The National Unified Operational Prediction Capability is a consortium of Navy, NOAA, - and Air Force modelers and their research partners. It aims to advance the weather - modeling systems used by meteorologists, mission planners, and decision makers. NUOPC - partners are working toward a common model architecture - a standard way of building - models - in order to make it easier to collaboratively build modeling systems. + National Unified Operational Prediction Capability + The `National Unified Operational Prediction Capability `__ is a consortium of Navy, NOAA, and Air Force modelers and their research partners. It aims to advance the weather modeling systems used by meteorologists, mission planners, and decision makers. NUOPC partners are working toward a common model architecture --- a standard way of building models --- in order to make it easier to collaboratively build modeling systems. + + NUOPC Layer + The :term:`NUOPC` Layer "defines conventions and a set of generic components for building coupled models using the Earth System Modeling Framework (:term:`ESMF`)." + NUOPC applications are built on four generic components: driver, model, :term:`mediator`, and connector. For more information, visit the `NUOPC website `__. + + NWP + Numerical Weather Prediction + Numerical Weather Prediction (NWP) takes current observations of weather and processes them with computer models to forecast the future state of the weather. - Parameterization or physics scheme - The representation, in a dynamic model, of physical effects in terms of admittedly - oversimplified parameters, rather than realistically requiring such effects to be - consequences of the dynamics of the system (AMS Glossary) + NWS + The `National Weather Service `__ (NWS) is an agency of the United States government that is tasked with providing weather forecasts, warnings of hazardous weather, and other weather-related products to organizations and the public for the purposes of protection, safety, and general information. It is a part of the National Oceanic and Atmospheric Administration (NOAA) branch of the Department of Commerce. + + Parameterizations + Simplified functions that approximate the effects of small-scale processes (e.g., microphysics, gravity wave drag) that cannot be explicitly resolved by a model grid's representation of the earth. Common categories of parameterizations include radiation, surface layer, planetary boundary layer and vertical mixing, deep and shallow cumulus, and microphysics. Parameterizations can be grouped together into physics suites (such as the :term:`CCPP` physics suites), which are sets of parameterizations known to work well together. + + Post-processor + Software that enhances the value of the raw forecasts produced by the modeling application to make them more useful. At :term:`NCEP`, the :term:`UPP` (Unified Post Processor) software is used to convert data from spectral to gridded format, de-stagger grids, interpolate data vertically (e.g., to isobaric levels) and horizontally (to various predefined grids), and to compute derived variables. Some types of post-processors, such as statistical post-processors, use historical information of previous runs and observations to de-bias and calibrate its output. + + SRW + SRW App + Short-Range Weather Application + The `Short-Range Weather Application `__ is a UFS Application that targets predictions of atmospheric behavior on a limited spatial domain and on time scales from minutes out to about two days. It packages a prognostic atmospheric model (the UFS Weather Model), pre- and post-processing tools, and a community workflow. + + spack-stack + The `spack-stack `__ is a collaborative effort between the NOAA Environmental Modeling Center (EMC), the UCAR Joint Center for Satellite Data Assimilation (JCSDA), and the Earth Prediction Innovation Center (EPIC). *spack-stack* is a repository that provides a Spack-based method for building the software stack required for numerical weather prediction (NWP) tools such as the `Unified Forecast System (UFS) `__ and the `Joint Effort for Data assimilation Integration (JEDI) `__ framework. *spack-stack* uses the Spack package manager along with custom Spack configuration files and Python scripts to simplify installation of the libraries required to run various applications. The *spack-stack* can be installed on a range of platforms and comes pre-configured for many systems. Users can install the necessary packages for a particular application and later add the missing packages for another application without having to rebuild the entire stack. Suite Definition File (SDF) An external file containing information about the @@ -48,15 +162,36 @@ Glossary A collection of primary physics schemes and interstitial schemes that are known to work well together + tracer + According to the American Meteorological Society (AMS) `definition `__, a tracer is "Any substance in the atmosphere that can be used to track the history [i.e., movement] of an air mass." Tracers are carried around by the motion of the atmosphere (i.e., by :term:`advection`). These substances are usually gases (e.g., water vapor, CO2), but they can also be non-gaseous (e.g., rain drops in microphysics parameterizations). In weather models, temperature (or potential temperature), absolute humidity, and radioactivity are also usually treated as tracers. According to AMS, "The main requirement for a tracer is that its lifetime be substantially longer than the transport process under study." + UFS - A Unified Forecast System (UFS) is a community-based, coupled comprehensive Earth - system modeling system. The UFS numerical applications span local to global domains - and predictive time scales from sub-hourly analyses to seasonal predictions. It is - designed to support the Weather Enterprise and to be the source system for NOAA's - operational numerical weather prediction applications + Unified Forecast System + The Unified Forecast System (UFS) is a community-based, coupled, comprehensive Earth + system modeling system. The UFS numerical applications span regional to global domains + and sub-hourly to seasonal time scales. The UFS is designed to support the :term:`Weather Enterprise` and to be the source system for NOAA's operational numerical weather prediction (:term:`NWP`) applications. For more information, visit https://ufscommunity.org/. + + UFS_UTILS + The UFS Utilities repository (`UFS_UTILS `__) contains a collection of pre-processing programs for use with the UFS Weather Model and UFS applications. These programs set up the model grid and create coldstart initial conditions. The code is publicly available on the `UFS_UTILS `__ Github repository. + + UPP + Unified Post Processor + The `Unified Post Processor `__ is the :term:`post-processor` software developed at :term:`NCEP`. It is used operationally to + convert the raw output from a variety of :term:`NCEP`'s :term:`NWP` models, including the :term:`FV3 dycore`, to a more useful form. + + WW3 + WWIII + WaveWatch III + WAVEWATCH III (WW3) is a community wave modeling framework that includes the latest scientific advancements in the field of wind-wave modeling and dynamics. The core of the framework consists of the WAVEWATCH III third-generation wave model (WAVE-height, WATer depth and Current Hindcasting), developed at NOAA/:term:`NCEP`. WAVEWATCH III differs from its predecessors in many important points such as governing equations, model structure, numerical methods and physical parameterizations. The model code is publicly available on GitHub at https://github.com/NOAA-EMC/WW3. + + Weather Enterprise + Individuals and organizations from public, private, and academic sectors that contribute to the research, development, and production of weather forecast products; primary consumers of these weather forecast products. + WM Weather Model A prognostic model that can be used for short- and medium-range research and operational forecasts. It can be an atmosphere-only model or be an atmospheric model coupled with one or more additional components, such as a wave or ocean model. + The UFS Weather Model repository is publicly available on `GitHub `__. + diff --git a/doc/UsersGuide/source/InputNML.inc b/doc/UsersGuide/source/InputNML.inc deleted file mode 100644 index ca30d6cfc0..0000000000 --- a/doc/UsersGuide/source/InputNML.inc +++ /dev/null @@ -1,301 +0,0 @@ -.. --------------------------------------------------- -.. This file is included in the InputsOutputs.rst file -.. --------------------------------------------------- - -.. _InputNML: - ---------------------------- -Namelist file *input.nml* ---------------------------- - -The atmosphere model reads many parameters from a Fortran namelist file, named *input.nml*. This file contains -several Fortran namelist records, some of which are always required, others of which are only used when selected -physics options are chosen. - -The following link provides an in depth description of the namelist settings: - -https://dtcenter.ucar.edu/GMTB/v5.0.0/sci_doc/ - -The following link describes the various physics-related namelist records: - -https://dtcenter.ucar.edu/GMTB/v5.0.0/sci_doc/CCPPsuite_nml_desp.html - -The following link describes the stochastic physics namelist records: - -https://stochastic-physics.readthedocs.io/en/ufs-v1.1.0/namelist_options.html - -The following link describes some of the other namelist records (dynamics, grid, etc): - -https://noaa-emc.github.io/FV3_Dycore_ufs-v1.1.0/html/index.html - -The namelist section ``&interpolator_nml`` is not used in this release, and any modifications to -it will have no effect on the model results. - ----------- -fms_io_nml ----------- - -The namelist section ``&fms_io_nml`` of ``input.nml`` contains variables that control -reading and writing of restart data in netCDF format. There is a global switch to turn on/off -the netCDF restart options in all of the modules that read or write these files. The two namelist -variables that control the netCDF restart options are ``fms_netcdf_override`` and ``fms_netcdf_restart``. -The default values of both flags are .true., so by default, the behavior of the entire model is -to use netCDF IO mode. To turn off netCDF restart, simply set ``fms_netcdf_restart`` to .false.. -The namelist variables used in ``&fms_io_nml`` are described in :numref:`Table %s `. - -.. _fms_io_nml: - -.. list-table:: *Description of the &fms_io_nml namelist section.* - :widths: 25 40 15 10 - :header-rows: 1 - - * - Variable Name - - Description - - Data Type - - Default Value - * - fms_netcdf_override - - If true, ``fms_netcdf_restart`` overrides the individual ``do_netcdf_restart`` value. If false, individual module settings has a precedence over the global setting, therefore ``fms_netcdf_restart`` is ignored. - - logical - - .true. - * - fms_netcdf_restart - - If true, all modules using restart files will operate under netCDF mode. If false, all modules using restart files will operate under binary mode. This flag is effective only when ``fms_netcdf_override`` is .true. When ``fms_netcdf_override`` is .false., individual module setting takes over. - - logical - - .true. - * - threading_read - - Can be 'single' or 'multi' - - character(len=32) - - 'multi' - * - format - - Format of restart data. Only netCDF format is supported in fms_io. - - character(len=32) - - 'netcdf' - * - read_all_pe - - Reading can be done either by all PEs (default) or by only the root PE. - - logical - - .true. - * - iospec_ieee32 - - If set, call mpp_open single 32-bit ieee file for reading. - - character(len=64) - - '-N ieee_32' - * - max_files_w - - Maximum number of write files - - integer - - 40 - * - max_files_r - - Maximum number of read files - - integer - - 40 - * - time_stamp_restart - - If true, ``time_stamp`` will be added to the restart file name as a prefix. - - logical - - .true. - * - print_chksum - - If true, print out chksum of fields that are read and written through save_restart/restore_state. - - logical - - .false. - * - show_open_namelist_file_warning - - Flag to warn that open_namelist_file should not be called when INTERNAL_FILE_NML is defined. - - logical - - .false. - * - debug_mask_list - - Set ``debug_mask_list`` to true to print out mask_list reading from mask_table. - - logical - - .false. - * - checksum_required - - If true, compare checksums stored in the attribute of a field against the checksum after reading in the data. - - logical - - .true. - -This release of the UFS Weather Model sets the following variables in the ``&fms_io_nml`` namelist: - -.. code-block:: console - - &fms_io_nml - checksum_required = .false. - max_files_r = 100 - max_files_w = 100 - / - ------- -namsfc ------- - -The namelist section ``&namsfc`` contains the filenames of the static datasets (i.e., *fix files*). -:numref:`Table %s ` contains a brief description of the climatological information in these files. -The variables used in ``&namsfc`` to set the filenames are described in :numref:`Table %s `. - -.. _namsfc_nml: - -.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of - static datasets.* - :widths: 15 40 15 20 - :header-rows: 1 - - * - Variable Name - - File contains - - Data Type - - Default Value - * - fnglac - - Climatological glacier data - - character*500 - - 'global_glacier.2x2.grb' - * - fnmxic - - Climatological maximum ice extent - - character*500 - - 'global_maxice.2x2.grb' - * - fntsfc - - Climatological surface temperature - - character*500 - - 'global_sstclim.2x2.grb' - * - fnsnoc - - Climatological snow depth - - character*500 - - 'global_snoclim.1.875.grb' - * - fnzorc - - Climatological surface roughness - - character*500 - - 'global_zorclim.1x1.grb' - * - fnalbc - - Climatological snowfree albedo - - character*500 - - 'global_albedo4.1x1.grb' - * - fnalbc2 - - Four albedo fields for seasonal mean climatology - - character*500 - - 'global_albedo4.1x1.grb' - * - fnaisc - - Climatological sea ice - - character*500 - - 'global_iceclim.2x2.grb' - * - fntg3c - - Climatological deep soil temperature - - character*500 - - 'global_tg3clim.2.6x1.5.grb' - * - fnvegc - - Climatological vegetation cover - - character*500 - - 'global_vegfrac.1x1.grb' - * - fnvetc - - Climatological vegetation type - - character*500 - - 'global_vegtype.1x1.grb' - * - fnsotc - - Climatological soil type - - character*500 - - 'global_soiltype.1x1.grb' - * - fnsmcc - - Climatological soil moisture - - character*500 - - 'global_soilmcpc.1x1.grb' - * - fnmskh - - High resolution land mask field - - character*500 - - 'global_slmask.t126.grb' - * - fnvmnc - - Climatological minimum vegetation cover - - character*500 - - 'global_shdmin.0.144x0.144.grb' - * - fnvmxc - - Climatological maximum vegetation cover - - character*500 - - 'global_shdmax.0.144x0.144.grb' - * - fnslpc - - Climatological slope type - - character*500 - - 'global_slope.1x1.grb' - * - fnabsc - - Climatological maximum snow albedo - - character*500 - - 'global_snoalb.1x1.grb' - -A sample subset of this namelist is shown below: - -.. code-block:: console - - &namsfc - FNGLAC = 'global_glacier.2x2.grb' - FNMXIC = 'global_maxice.2x2.grb' - FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' - FNSNOC = 'global_snoclim.1.875.grb' - FNZORC = 'igbp' - FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' - FNALBC2 = 'global_albedo4.1x1.grb' - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' - FNTG3C = 'global_tg3clim.2.6x1.5.grb' - FNVEGC = 'global_vegfrac.0.144.decpercent.grb' - FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' - FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' - FNSMCC = 'global_soilmgldas.t126.384.190.grb' - FNMSKH = 'seaice_newland.grb' - FNVMNC = 'global_shdmin.0.144x0.144.grb' - FNVMXC = 'global_shdmax.0.144x0.144.grb' - FNSLPC = 'global_slope.1x1.grb' - FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' - / - -Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/sfcsub.F`` -file. - ---------------- -atmos_model_nml ---------------- - -The namelist section ``&atmos_model_nml`` contains information used by the atmosphere model. -The variables used in ``&atmos_model_nml`` are described in :numref:`Table %s `. - -.. _atmos_model_nml: - -.. list-table:: *List of common variables in the *atmos_model_nml* namelist section. - :widths: 10 40 15 15 - :header-rows: 1 - - * - Variable Name - - Description - - Data Type - - Default Value - * - blocksize - - Number of columns in each ``block`` sent to the physics. OpenMP threading is done over the number of blocks. - For best performance this number should divide the number of grid cells per processor: - ``((npx-1)*(npy-1)/(layout\_x)*(layout\_y))``. A description of these variables is provided - `here `_. - - integer - - 1 - * - chksum_debug - - If true, compute checksums for all variables passed into the GFS physics, before and after each physics timestep. This is very useful for reproducibility checking. - - logical - - .false. - * - dycore_only - - If true, only the dynamical core (and not the GFS physics) is executed when running the model, - essentially running the model as a solo dynamical core. - - logical - - .false. - * - debug - - If true, turn on additional diagnostics for the atmospheric model. - - logical - - .false. - * - sync - - If true, initialize timing identifiers. - - logical - - .false. - * - ccpp_suite - - Name of the CCPP physics suite - - character(len=256) - - FV3_GFS_v15p2, set in ``build.sh`` - * - avg_max_length - - Forecast interval (in seconds) determining when the maximum values of diagnostic fields in FV3 - dynamics are computed. - - real - - 3600. - -A sample of this namelist is shown below: - -.. code-block:: console - - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = 'FV3_GFS_v16beta' - / - -The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 0a282e323d..31e3280b80 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -1,18 +1,20 @@ .. _InputsOutputs: -************************* -Inputs and Outputs -************************* +***************************************************** +Data: Input, Model Configuration, and Output Files +***************************************************** -The ufs-weather-model can be configured as one of several applications, from a single component atmosphere model to a fully coupled model with multiple earth system components (atmosphere, ocean, sea-ice and mediator). Currently the supported configurations are: +The UFS Weather Model can be run in one of several configurations, from a single component atmospheric +model to a fully coupled model with multiple earth system components (e.g., atmosphere, ocean, sea-ice and +mediator). Currently the supported configurations are: -.. _UFS-applications: +.. _UFS-configurations: .. list-table:: *Supported ufs-weather-model applications* :widths: 10 70 :header-rows: 1 - * - App name + * - Configuration Name - Description * - ATM - Standalone UFSAtm @@ -20,6 +22,8 @@ The ufs-weather-model can be configured as one of several applications, from a s - UFSAtm coupled to WW3 * - ATMAERO - UFSAtm coupled to GOCART + * - ATMAQ + - UFSAtm coupled to CMAQ * - S2S - Coupled UFSATM-MOM6-CICE6-CMEPS * - S2SA @@ -36,23 +40,28 @@ The ufs-weather-model can be configured as one of several applications, from a s - Coupled UFSATM-HYCOM-WW3-CMEPS * - HAFS-ALL - Coupled CDEPS-UFSATM-HYCOM-WW3-CMEPS - -This chapter describes the input and output files needed for executing the model in the various supported configurations. + +Each of the component models for a given configuration requires specific input files, and each component model outputs a particular set of files. Each configuration requires a set of model configuration files, as well. This chapter describes the input and output files involved with each component model. It also discusses the various configuration files involved in running the model. Users will need to view the input file requirements for each component model involved in the configuration they are running. For example, users running the *S2S* configuration would need to gather input data required for the *ATM*, *MOM6*, and *CICE6* component models. Then, they would need to alter certain model configuration files to reflect the ``ufs-weather-model`` configuration they plan to run. ============= Input files ============= -There are three types of files needed to execute a run: static datasets (*fix* files containing climatological -information), files that depend on grid resolution, initial and boundary conditions, and model configuration files (such as namelists). +There are three types of files needed to execute a run: + + #. Static datasets (*fix* files containing climatological information) + #. Files that depend on grid resolution and initial/boundary conditions + #. Model configuration files (such as namelists) + +Information on the first two types of file appears in detail below for each component model. Information on Model Configuration files can be viewed in :numref:`Section %s `. ------- -UFSAtm +ATM ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The static input files for global configurations are listed and described in :numref:`Table %s `. Similar files are used for a regional grid but are grid specific and generated by pre-processing utilities. +The static input files for global configurations are listed and described in :numref:`Table %s `. Similar files are used for a regional grid but are grid-specific and generated by pre-processing utilities (e.g., `UFS_UTILS `__). .. _FixFiles: @@ -113,9 +122,9 @@ The static input files for global configurations are listed and described in :nu - External solar constant data table ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files +Grid Description and Initial Condition Files ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. The input files for a limited area model (LAM) configuration including grid information and initial and lateral boundary conditions are listed and described in :numref:`Table %s `. Note that the regional grid is referred to as Tile 7 here, and are generated by several pre-processing utilities. +The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. The input files for a limited area model (LAM) configuration, including grid information and initial and lateral boundary conditions, are listed and described in :numref:`Table %s `. Note that the regional grid is referred to as Tile 7 here, and it is generated by several pre-processing utilities. .. _GridICFiles: @@ -181,7 +190,7 @@ The input files containing grid information and the initial conditions for globa MOM6 ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The static input files for global configurations are listed and described in :numref:`Table %s `. @@ -232,7 +241,7 @@ The input files containing grid information and the initial conditions for globa .. _MOM6_GridICFiles: .. list-table:: *Input files containing grid information and initial conditions for global configurations* - :widths: 10 35 10 5 + :widths: 10 30 10 5 :header-rows: 1 * - Filename @@ -296,7 +305,7 @@ The input files containing grid information and the initial conditions for globa HYCOM ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Static input files have been created for several regional domains. These domains are listed and described in :numref:`Table %s `. @@ -320,6 +329,8 @@ Static input files have been created for several regional domains. These domains Static input files are listed and described in :numref:`Table %s `. Several datasets contain both dot-a (.a) and dot-b (.b) files. Dot-a files contain data written as 32-bit IEEE real values (idm*jdm) and dot-b files contain plain text metadata for each field in the dot-a file. +.. COMMENT: What is (idm*jdm)? + .. _HYCOM_FixFiles: .. list-table:: *Fix files containing climatological information* @@ -372,17 +383,18 @@ Static input files are listed and described in :numref:`Table %s `. These files are generated for specific regional domains, see :numref:`Table %s `, during ocean prep. When uncoupled, the the forcing data drives the ocean model. When coupled, the forcing data is used to fill unmapped grid cells. Several datasets contain both dot-a (.a) and dot-b (.b) files. Dot-a files contain data written as 32-bit IEEE real values (idm*jdm) and dot-b files contain plain text metadata for each field in the dot-a file. +The input files containing time dependent configuration and forcing data are listed and described in :numref:`Table %s `. These files are generated for specific regional domains (see :numref:`Table %s `) during ocean prep. When uncoupled, the the forcing data drives the ocean model. When coupled, the forcing data is used to fill in unmapped grid cells. Several datasets contain both dot-a (.a) and dot-b (.b) files. Dot-a files contain data written as 32-bit IEEE real values (idm*jdm) and dot-b files contain plain text metadata for each field in the dot-a file. +.. COMMENT: What is (idm*jdm)? .. _HYCOM_GridICFiles: .. list-table:: *Input files containing grid information, initial conditions, and forcing data for regional configurations.* - :widths: 15 30 15 5 + :widths: 12 30 18 5 :header-rows: 1 * - Filename @@ -446,14 +458,14 @@ The input files containing time dependent configuration and forcing data are lis CICE6 ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -No fix files are required for CICE6 +No fix files are required for CICE6. -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Grid Description and Initial Condition Files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The input files containing grid information and the initial conditions for global configurations are listed and described in :numref:`Table %s `. @@ -484,14 +496,14 @@ The input files containing grid information and the initial conditions for globa WW3 ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -No fix files are required for WW3 +No fix files are required for WW3. -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Grid Description and Initial Condition Files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The files for global configurations are listed and described in :numref:`Table %s ` for GFSv16 setup and :numref:`Table %s ` for single grid configurations. The model definitions for wave grid(s) including spectral and directional resolutions, time steps, numerical scheme and parallelization algorithm, the physics parameters, boundary conditions and grid definitions are stored in binary mod_def files. The aforementioned parameters are defined in ww3_grid.inp. and the ww3_grid executables generates the binary mod_def. files. @@ -501,7 +513,7 @@ The WW3 version number in mod_def. files must be consistent with version of .. _WW3_FixFiles: .. list-table:: *Input files containing grid information and conservative remapping for global configurations (GFSv16 Wave)* - :widths: 35 35 25 10 10 + :widths: 30 35 20 10 10 :header-rows: 1 * - Filename @@ -634,33 +646,71 @@ The model driver input (ww3_multi.inp) includes the input, model and output grid * - FGRDPROC - Flag for grids sharing dedicated output processes -If there are input data grids defined ( NFGRIDS > 0 ) then these grids are defined first (CPLILINE, WINDLINE, ICELINE, CURRLINE). These grids are defined as if they are wave model grids using the file mod_def.. Each grid is defined on a separate input line with , with nine input flags identifying +If there are input data grids defined ( ``NFGRIDS > 0`` ) then these grids are defined first (``CPLILINE``, +``WINDLINE``, ``ICELINE``, ``CURRLINE``). These grids are defined as if they are wave model grids using the +file ``mod_def.``. Each grid is defined on a separate input line with ````, with nine input flags identifying $ the presence of 1) water levels 2) currents 3) winds 4) ice $ 5) momentum 6) air density and 7-9) assimilation data. -The UNIPOINTS defines the name of this grid for all point output, which gathers the output spectral grid in a unified point output file. +The ``UNIPOINTS`` defines the name of this grid for all point output, which gathers the output spectral grid in a unified point output file. -The WW3GRIDLINE defines actual wave model grids using 13 parameters to be -read from a single line in the file for each. It includes (1) its own input grid mod_def., (2-10) forcing grid ids, (3) rank number, (12) group number and (13-14) fraction of communicator (processes) used for this grid. +The ``WW3GRIDLINE`` defines actual wave model grids using 13 parameters to be +read from a single line in the file for each. It includes (1) its own input grid ``mod_def.``, (2-10) +forcing grid ids, (3) rank number, (12) group number and (13-14) fraction of communicator (processes) used for this grid. -RUN_BEG and RUN_END define the starting and end times, FLAGMASKCOMP and FLAGMASKOUT are flags for masking at printout time (default F F), followed by the gridded and point outputs start time (OUT_BEG), interval (DTFLD and DTPNT) and end time (OUT_END). The restart outputs start time, interval and end time are define by RST_BEG, DTRST, RST_END respectively. +``RUN_BEG`` and ``RUN_END`` define the starting and end times, ``FLAGMASKCOMP`` and ``FLAGMASKOUT`` are flags for masking at printout time (default F F), followed by the gridded and point outputs start time (``OUT_BEG``), interval (``DTFLD`` and ``DTPNT``) and end time (``OUT_END``). The restart outputs start time, interval and end time are define by ``RST_BEG``, ``DTRST``, ``RST_END`` respectively. -The OUTPARS_WAV defines gridded output fields. The GOFILETYPE, POFILETYPE and RSTTYPE are gridded, point and restart output types respectively. +The ``OUTPARS_WAV`` defines gridded output fields. The ``GOFILETYPE``, ``POFILETYPE`` and ``RSTTYPE`` are gridded, point and restart output types respectively. No initial condition files are required for WW3. +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Mesh Generation +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +For coupled applications using the CMEPS mediator, an ESMF Mesh file describing the WW3 domain is required. For regional and sub-global domains, the mesh can be created using a two-step procedure. + + #. Generate a SCRIP format file for the domain + #. Generate the ESMF Mesh. + +In each case, the SCRIP file needs to be checked that it contains the right start and end latitudes and longitudes to match the ``mod_def`` file being used. + +For the HAFS regional domain, the following commands can be used: + +.. code-block:: console + + ncremap -g hafswav.SCRIP.nc -G latlon=441,901#snwe=1.45,45.55,-98.05,-7.95#lat_typ=uni#lat_drc=s2n + ESMF_Scrip2Unstruct hafswav.SCRIP.nc mesh.hafs.nc 0 + +For the sub-global 1-deg domain extending from latitude 85.0S: + +.. code-block:: console + + ncremap -g glo_1deg.SCRIP.nc -G latlon=171,360#snwe=-85.5,85.5,-0.5,359.5#lat_typ=uni#lat_drc=s2n + ESMF_Scrip2Unstruct glo_1deg.SCRIP.nc mesh.glo_1deg.nc 0 + +For the sub-global 1/2-deg domain extending from latitude 80.0S: + +.. code-block:: console + + ncremap -g gwes_30m.SCRIP.nc -G latlon=321,720#snwe=-80.25,80.25,-0.25,359.75#lat_typ=uni#lat_drc=s2n + ESMF_Scrip2Unstruct gwes_30m.SCRIP.nc mesh.gwes_30m.nc 0 + +For the tripole grid, the mesh file is generated as part of the ``cpld_gridgen`` utility in +`UFS_UTILS `__. + ------- CDEPS ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -No fix files are required for CDEPS +No fix files are required for CDEPS. -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Grid Description and Initial Condition Files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The input files containing grid information and the time-varying forcing files for global configurations are listed and described in :numref:`Table %s ` and :numref:`Table %s `. **Data Atmosphere** @@ -735,7 +785,7 @@ The input files containing grid information and the time-varying forcing files f GOCART ------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Static datasets (i.e., *fix files*) +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ The static input files for GOCART configurations are listed and described in :numref:`Table %s `. @@ -769,13 +819,13 @@ The static input files for GOCART configurations are listed and described in :nu * - GOCART2G_GridComp.rc - The basic properties of the GOCART2G Grid Components * - NI2G_instance_NI.rc - - Resource file for Nitrate parameters + - Resource file for Nitrate parameters * - SS2G_instance_SS.rc - Resource file for Sea Salt parameters * - SU2G_instance_SU.rc - Resource file for Sulfur parameters -GOCART inputs defined in AERO_ExtData are listed and described in :numref:`Table %s `. +GOCART inputs defined in ``AERO_ExtData`` are listed and described in :numref:`Table %s `. .. _GOCART_InputFiles: @@ -785,10 +835,10 @@ GOCART inputs defined in AERO_ExtData are listed and described in :numref:`Table * - Filename - Description - * - ExtData/dust + * - ExtData/dust - FENGSHA input files * - ExtData/QFED - - QFED biomass burning emissions + - QFED biomass burning emissions * - ExtData/CEDS - Anthropogenic emissions * - ExtData/MERRA2 @@ -796,11 +846,11 @@ GOCART inputs defined in AERO_ExtData are listed and described in :numref:`Table * - ExtData/PIESA/sfc - Aviation emissions * - ExtData/PIESA/L127 - - H2O2, OH and NO3 mixing ratios + - H2O2, OH and NO3 mixing ratios * - ExtData/MEGAN_OFFLINE_BVOC - VOCs MEGAN biogenic emissions * - ExtData/monochromatic - - Aerosol monochromatic optics files + - Aerosol monochromatic optics files * - ExtData/optics - Aerosol radiation bands optic files for RRTMG * - ExtData/volcanic @@ -815,29 +865,82 @@ The static input files when using climatology (MERRA2) are listed and described :header-rows: 1 * - Filename - - Description + - Description * - merra2.aerclim.2003-2014.m$(month).nc - - MERRA2 aerosol climatology mixing ratio + - MERRA2 aerosol climatology mixing ratio * - Optics_BC.dat - - BC optical look-up table for MERAA2 + - BC optical look-up table for MERRA2 * - Optics_DU.dat - - DUST optical look-up table for MERAA2 + - DUST optical look-up table for MERRA2 * - Optics_OC.dat - - OC optical look-up table for MERAA2 + - OC optical look-up table for MERRA2 * - Optics_SS.dat - - Sea Salt optical look-up table for MERAA2 + - Sea Salt optical look-up table for MERRA2 * - Optics_SU.dat - - Sulfate optical look-up table for MERAA2 + - Sulfate optical look-up table for MERRA2 +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Grid Description and Initial Condition Files +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Running GOCART in UFS does not require aerosol initial conditions, as aerosol models can always start from scratch (cold start). However, this approach does require more than two weeks of model spin-up to obtain reasonable aerosol simulation results. Therefore, the most popular method is to take previous aerosol simulation results. The result is not necessarily from the same model; it could be from a climatology result, such as MERRA2, or from a different model but with the same aerosol species and bin/size distribution. + +The aerosol initial input currently read by GOCART is the same format as the UFSAtm initial input data format of ``gfs_data_tile[1-6].nc`` in :numref:`Table %s `, so the aerosol initial conditions should be combined with the meteorological initial conditions as one initial input file. There are many tools available for this purpose. The `UFS_UTILS `__ preprocessing utilities provide a solution for this within the `Global Workflow `__. + +-------------- +AQM (CMAQ) +-------------- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Grid description and initial condition files +Static Datasets (i.e., *fix files*) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Running GOCART in UFS does not require aerosol initial conditions, as aerosol models can always start from scratch (cold start), however, this approach does require more than two weeks of model spin-up to obtain reasonable aerosol simulation results. +The static input files for AQM configurations are listed and described in :numref:`Table %s `. + +.. _AQM_ControlFiles: -Therefore, the most popular method is to take previous aerosol simulation results. The result is not necessarily from the same model, it could be from a climatology result, such as MERAA2, or a different model but with the same aerosol species and bin/size distribution. +.. list-table:: *AQM run control files* + :widths: 40 50 + :header-rows: 1 + + * - Filename + - Description + * - AQM.rc + - NOAA Air Quality Model Parameters -The aerosol initial input currently read by GOCART is the same format as the UFSAtm initial input data format of "gfs_data_tile[1-6].nc" in :numref:`Table %s `, so the aerosol initial conditions should be combined with the meteorological initial conditions as one initial input file. There are many tools available for this purpose. Ufs-utils in the global workflow that supports UFS models always provides a solution for this. +AQM inputs defined in ``aqm.rc`` are listed and described in :numref:`Table %s `. + +.. _AQM_InputFiles: + +.. list-table:: *AQM inputs defined in aqm.rc* + :widths: 40 50 + :header-rows: 1 + + * - Filename + - Description + * - AE_cb6r3_ae6_aq.nml + - AE Matrix NML + * - GC_cb6r3_ae6_aq.nml + - GC Matrix NML + * - NR_cb6r3_ae6_aq.nml + - NR Matrix NML + * - Species_Table_TR_0.nml + - TR Matrix NML + * - CSQY_DATA_cb6r3_ae6_aq + - CSQY Data + * - PHOT_OPTICS.dat + - Optics Data + * - omi_cmaq_2015_361X179.dat + - OMI data + * - NEXUS/NEXUS_Expt.nc + - Emissions File + * - BEIS_RRFScmaq_C775.ncf + - Biogenic File + * - gspro_biogenics_1mar2017.txt + - Biogenic Speciation File + * - Hourly_Emissions_regrid_rrfs_13km_20190801_t12z_h72.nc + - File Emissions File + +.. _model-config-files: ========================== Model configuration files @@ -845,31 +948,31 @@ Model configuration files The configuration files used by the UFS Weather Model are listed here and described below: -- *diag_table* -- *field_table* -- *model_configure* -- *nems.configure* -- *suite_[suite_name].xml* (used only at build time) -- *datm.streams* (used by cdeps) -- *datm_in* (used by cdeps) -- :ref:`blkdat.input` (used by HYCOM) + * ``diag_table`` + * ``field_table`` + * ``model_configure`` + * ``nems.configure`` + * ``suite_[suite_name].xml`` (used only at build time) + * ``datm.streams`` (used by CDEPS) + * ``datm_in`` (used by CDEPS) + * ``blkdat.input`` (used by HYCOM) -While the *input.nml* file is also a configuration file used by the UFS Weather Model, it is described in -:numref:`Section %s `. The run-time configuration of model output fields is controlled by the combination of *diag_table* and *model_configure*, and is described in detail in :numref:`Section %s `. +While the ``input.nml`` file is also a configuration file used by the UFS Weather Model, it is described in +:numref:`Section %s `. The run-time configuration of model output fields is controlled by the combination of ``diag_table`` and ``model_configure``, and is described in detail in :numref:`Section %s `. .. _diag_tableFile: ------------------- -*diag_table* file +``diag_table`` file ------------------- -There are three sections in file *diag_table*: Header (Global), File, and Field. These are described below. +There are three sections in file ``diag_table``: Header (Global), File, and Field. These are described below. **Header Description** -The Header section must reside in the first two lines of the *diag_table* file and contain the title and date -of the experiment (see example below). The title must be a Fortran character string. The base date is the +The Header section must reside in the first two lines of the ``diag_table`` file and contain the title and date +of the experiment (see example below). The title must be a Fortran character string. The base date is the reference time used for the time units, and must be greater than or equal to the model start time. The base date -consists of six space-separated integers in the following format: ``year month day hour minute second``. Here is an example: +consists of six space-separated integers in the following format: ``year month day hour minute second``. Here is an example: .. code-block:: console @@ -880,8 +983,8 @@ consists of six space-separated integers in the following format: ``year month The File Description lines are used to specify the name of the file(s) to which the output will be written. They contain one or more sets of six required and five optional fields (optional fields are denoted by square brackets -``[ ]``). The lines containing File Descriptions can be intermixed with the lines containing Field Descriptions as -long as files are defined before fields that are to be written to them. File entries have the following format: +``[ ]``). The lines containing File Descriptions can be intermixed with the lines containing Field Descriptions as +long as files are defined before fields that are to be written to them. File entries have the following format: .. code-block:: console @@ -910,14 +1013,14 @@ These file line entries are described in :numref:`Table %s `. | =-1 output at end of run only (output_freq_units is ignored) * - output_freq_units - CHARACTER(len=10) - - The units in which output_freq is given. Valid values are “years”, “months”, “days”, “minutes”, “hours”, or “seconds”. + - The units in which output_freq is given. Valid values are "years", "months", "days", "minutes", "hours", or "seconds". * - file_format - INTEGER - Currently only the netCDF file format is supported. = 1 netCDF * - time_axis_units - CHARACTER(len=10) - - The units to use for the time-axis in the file. Valid values are “years”, “months”, “days”, “minutes”, “hours”, - or “seconds”. + - The units to use for the time-axis in the file. Valid values are "years", "months", "days", "minutes", "hours", + or "seconds". * - time_axis_name - CHARACTER(len=128) - Axis name for the output file time axis. The character string must contain the string 'time'. @@ -946,7 +1049,7 @@ These file line entries are described in :numref:`Table %s `. **Field Description** The field section of the diag_table specifies the fields to be output at run time. Only fields registered -with ``register_diag_field()``, which is an API in the FMS ``diag_manager`` routine, can be used in the *diag_table*. +with ``register_diag_field()``, which is an API in the FMS ``diag_manager`` routine, can be used in the ``diag_table``. Registration of diagnostic fields is done using the following syntax @@ -960,8 +1063,8 @@ in file ``FV3/atmos_cubed_sphere/tools/fv_diagnostics.F90``. As an example, the id_slp = register_diag_field (trim(field), 'slp', axes(1:2), & Time, 'sea-level pressure', 'mb', missing_value=missing_value, range=slprange ) -All data written out by ``diag_manager`` is controlled via the *diag_table*. A line in the field section of the -*diag_table* file contains eight variables with the following format: +All data written out by ``diag_manager`` is controlled via the ``diag_table``. A line in the field section of the +``diag_table`` file contains eight variables with the following format: .. code-block:: console @@ -998,14 +1101,14 @@ These field section entries are described in :numref:`Table %s `. If the profile type is “fixed” then the tracer field values are set equal -to the surface value. If the profile type is “profile” then the top/bottom of model and surface values are read +will be given a field called "surface_value" with a real value of 3.E-6. The "profile_type" options are listed +in :numref:`Table %s `. If the profile type is "fixed" then the tracer field values are set equal +to the surface value. If the profile type is "profile" then the top/bottom of model and surface values are read and an exponential profile is calculated, with the profile being dependent on the number of levels in the component model. .. _TracerTable: -.. list-table:: *Tracer profile setup from FMS/tracer_manager/tracer_manager.F90.* +.. list-table:: *Tracer Profile Setup from FMS/tracer_manager/tracer_manager.F90.* :widths: 20 25 55 :header-rows: 1 @@ -1153,13 +1256,13 @@ See ``FMS/field_manager/field_manager.F90`` for more information. .. _model_configureFile: ------------------------ -*model_configure* file ------------------------ +--------------------------- +``model_configure`` file +--------------------------- This file contains settings and configurations for the NUOPC/ESMF main component, including the simulation start time, the processor layout/configuration, and the I/O selections. :numref:`Table %s ` -shows the following parameters that can be set in *model_configure* at run-time. +shows the following parameters that can be set in ``model_configure`` at run-time. .. _ModelConfigParams: @@ -1276,7 +1379,7 @@ shows the following parameters that can be set in *model_configure* at run-time. - real - -1 (negative: turn off the option, otherwise overwritten nfhout/nfhout_fh; 6 -1: output every 6 hoursr; 6 9: output history files at fh=6 and 9. Note: output_fh can only take 1032 characters) -:numref:`Table %s ` shows the following parameters in *model_configure* that +:numref:`Table %s ` shows the following parameters in ``model_configure`` that are not usually changed. .. _ModelConfigParamsNotChanged: @@ -1318,13 +1421,13 @@ are not usually changed. - integer - 0 ------------------------ -*nems.configure* file ------------------------ +------------------------ +``nems.configure`` file +------------------------ -This file contains information about the various NEMS components and their run sequence. The active components for a particular model configuration are given in the *EARTH_component_list*. For each active component, the model name and compute tasks assigned to the component are given. A specific component might also require additional configuration information to be present. The *runSeq* describes the order and time intervals over which one or more component models integrate in time. Additional *attributes*, if present, provide additional configuration of the model components when coupled with the CMEPS mediator. +This file contains information about the various NEMS components and their run sequence. The active components for a particular model configuration are given in the *EARTH_component_list*. For each active component, the model name and compute tasks assigned to the component are given. A specific component might also require additional configuration information to be present. The ``runSeq`` describes the order and time intervals over which one or more component models integrate in time. Additional *attributes*, if present, provide additional configuration of the model components when coupled with the CMEPS mediator. -For the ATM application, since it consists of a single component, the *nems.configure* is simple and does not need to be changed. +For the ATM application, since it consists of a single component, the ``nems.configure`` is simple and does not need to be changed. A sample of the file contents is shown below: .. code-block:: console @@ -1336,7 +1439,7 @@ A sample of the file contents is shown below: :: -For the fully coupled S2SW application, a sample *nems.configure* is shown below : +For the fully coupled S2SW application, a sample ``nems.configure`` is shown below : .. code-block:: console @@ -1437,7 +1540,7 @@ For the fully coupled S2SW application, a sample *nems.configure* is shown below :: -For the coupled NG_GODAS application, a sample *nems.configure* is shown below : +For the coupled NG_GODAS application, a sample ``nems.configure`` is shown below : .. code-block:: console @@ -1562,7 +1665,7 @@ For the coupled NG_GODAS application, a sample *nems.configure* is shown below : orb_obliq = 1.e36 :: -For the coupled HAFS application, a sample *nems.configure* is shown below : +For the coupled HAFS application, a sample ``nems.configure`` is shown below : .. code-block:: console @@ -1669,12 +1772,12 @@ For the coupled HAFS application, a sample *nems.configure* is shown below : For more HAFS, HAFSW, and HAFS-ALL configurations please see the following nems.configure templates. -- `HAFS ATM-OCN `_ -- `HAFS ATM-WAV `_ -- `HAFS ATM-OCN-WAV `_ -- `HAFS ATM-DOCN `_ + * `HAFS ATM-OCN `_ + * `HAFS ATM-WAV `_ + * `HAFS ATM-OCN-WAV `_ + * `HAFS ATM-DOCN `_ -For the coupled GOCART in S2SAW application, a sample *nems.configure* is shown below : +For the coupled GOCART in S2SAW application, a sample ``nems.configure`` is shown below : .. code-block:: console @@ -1809,17 +1912,185 @@ For the coupled GOCART in S2SAW application, a sample *nems.configure* is shown stop_ymd = -999 :: +For the fully coupled S2S application that receives atmosphere-ocean fluxes from mediator, a sample ``nems.configure`` is shown below : + +.. code-block:: console + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 143 + :: + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 149 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 150 269 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 270 317 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 840 + stop_option = nhours + stop_ymd = -999 + :: + + # CMEPS warm run sequence + runSeq:: + @720 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @720 + MED med_phases_aofluxes_run + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + MED med_phases_history_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + history_n = 3 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac_aoflux + history_tile_atm = 96 + aoflux_grid = 'xgrid' + aoflux_code = 'ccpp' + aoflux_ccpp_suite = 'FV3_sfc_ocean' + ccpp_restart_interval = -1 + ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' + ccpp_input_dir = 'INPUT/' + ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' + ccpp_nstf_name = 2,1,0,0,0 + ccpp_ini_read = true + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 840 + stop_option = nhours + stop_ymd = -999 + :: + +.. note:: The ``aoflux_grid`` option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are ``xgrid`` (exchange grid), ``agrid`` (atmosphere model grid) and ``ogrid`` (ocean model grid). + +.. note:: The ``aoflux_code`` option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are ``cesm`` and ``ccpp``. If ``ccpp`` is selected then the suite file provided in the ``aoflux_ccpp_suite`` option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. + +For the ATMAQ application, a sample ``nems.configure`` is shown below : + +.. code-block:: console + + EARTH_component_list: ATM AQM + EARTH_attributes:: + Verbosity = 0 + :: + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 271 + ATM_attributes:: + Verbosity = 0 + :: + + # AQM # + AQM_model: aqm + AQM_petlist_bounds: 0 271 + AQM_attributes:: + Verbosity = 0 + :: + + # Run Sequence # + runSeq:: + @180 + ATM phase1 + ATM -> AQM + AQM + AQM -> ATM + ATM phase2 + @ + :: + --------------------------------------- -*The SDF (Suite Definition File) file* +The Suite Definition File (SDF) File --------------------------------------- -There are two SDFs currently supported for the UFS Medium Range Weather App configuration: *suite_FV3_GFS_v15p2.xml* and *suite_FV3_GFS_v16beta.xml*. -There are two SDFs currently supported for the UFS Short Range Weather App configuration: *suite_FV3_GFS_v15p2.xml* and *suite_FV3_RRFS_v1alpha.xml*. +There are two SDFs currently supported for the UFS Medium Range Weather App configuration: + + * ``suite_FV3_GFS_v15p2.xml`` + * ``suite_FV3_GFS_v16beta.xml`` -Detailed descriptions of the supported suites can be found with the `CCPP v5.0.0 Scientific Documentation `_. +There are four SDFs currently supported for the UFS Short Range Weather App configuration: + + * ``suite_FV3_GFS_v16.xml`` + * ``suite_FV3_RRFS_v1beta.xml`` + * ``suite_FV3_HRRR.xml`` + * ``suite_FV3_WoFS_v0.xml`` + +Detailed descriptions of the supported suites can be found with the `CCPP v6.0.0 Scientific Documentation `__. --------------------------------------- -*datm.streams* +``datm.streams`` --------------------------------------- A data stream is a time series of input forcing files. A data stream configuration file (datm.streams) describes the information about those input forcing files. @@ -1880,7 +2151,7 @@ A sample of the data stream file is shown below: --------------------------------------- -*datm_in* +``datm_in`` --------------------------------------- .. list-table:: *Parameters that can be set in a data stream namelist file (datm_in) at run-time.* @@ -1936,16 +2207,335 @@ A sample of the data stream namelist file is shown below: .. _HYCOM_BlkdatInput: --------------------------------------- -*blkdat.input* +``blkdat.input`` --------------------------------------- The HYCOM model reads parameters from a custom formatted configuraiton file, blkdat.input. The `HYCOM User's Guide `_ provides an in depth description of the configuration settings. -.. ------------------------------------------------------------------- -.. Include InputNML file describing the contents of the input.nml file -.. ------------------------------------------------------------------- +.. _InputNML: + +----------------------------- +Namelist file ``input.nml`` +----------------------------- + +The atmosphere model reads many parameters from a Fortran namelist file, named ``input.nml``. This file contains several Fortran namelist records, some of which are always required, others of which are only used when selected physics options are chosen: + + * The `CCPP Scientific Documentation `__ provides an in-depth description of the namelist settings. Information describing the various physics-related namelist records can be viewed `here `__. + * The `Stochastic Physics Documentation `__ describes the stochastic physics namelist records. + * The `FV3 Dynamical Core Technical Documentation `__ describes some of the other namelist records (dynamics, grid, etc). + * The namelist section ``&interpolator_nml`` is not used in this release, and any modifications to it will have no effect on the model results. + +.. Last I saw, the Stochastic Physics release/public-v3 was more up-to-date than latest... + -.. include:: InputNML.inc +^^^^^^^^^^^^^^^^^^ +fms_io_nml +^^^^^^^^^^^^^^^^^^ + +The namelist section ``&fms_io_nml`` of ``input.nml`` contains variables that control +reading and writing of restart data in netCDF format. There is a global switch to turn on/off +the netCDF restart options in all of the modules that read or write these files. The two namelist +variables that control the netCDF restart options are ``fms_netcdf_override`` and ``fms_netcdf_restart``. +The default values of both flags are .true., so by default, the behavior of the entire model is +to use netCDF IO mode. To turn off netCDF restart, simply set ``fms_netcdf_restart`` to .false.. +The namelist variables used in ``&fms_io_nml`` are described in :numref:`Table %s `. + +.. _fms_io_nml: + +.. list-table:: *Description of the &fms_io_nml namelist section.* + :widths: 25 40 15 10 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - fms_netcdf_override + - If true, ``fms_netcdf_restart`` overrides the individual ``do_netcdf_restart`` value. If false, individual module settings has a precedence over the global setting, therefore ``fms_netcdf_restart`` is ignored. + - logical + - .true. + * - fms_netcdf_restart + - If true, all modules using restart files will operate under netCDF mode. If false, all modules using restart files will operate under binary mode. This flag is effective only when ``fms_netcdf_override`` is .true. When ``fms_netcdf_override`` is .false., individual module setting takes over. + - logical + - .true. + * - threading_read + - Can be 'single' or 'multi' + - character(len=32) + - 'multi' + * - format + - Format of restart data. Only netCDF format is supported in fms_io. + - character(len=32) + - 'netcdf' + * - read_all_pe + - Reading can be done either by all PEs (default) or by only the root PE. + - logical + - .true. + * - iospec_ieee32 + - If set, call mpp_open single 32-bit ieee file for reading. + - character(len=64) + - '-N ieee_32' + * - max_files_w + - Maximum number of write files + - integer + - 40 + * - max_files_r + - Maximum number of read files + - integer + - 40 + * - time_stamp_restart + - If true, ``time_stamp`` will be added to the restart file name as a prefix. + - logical + - .true. + * - print_chksum + - If true, print out chksum of fields that are read and written through save_restart/restore_state. + - logical + - .false. + * - show_open_namelist_file_warning + - Flag to warn that open_namelist_file should not be called when INTERNAL_FILE_NML is defined. + - logical + - .false. + * - debug_mask_list + - Set ``debug_mask_list`` to true to print out mask_list reading from mask_table. + - logical + - .false. + * - checksum_required + - If true, compare checksums stored in the attribute of a field against the checksum after reading in the data. + - logical + - .true. + +This release of the UFS Weather Model sets the following variables in the ``&fms_io_nml`` namelist: + +.. code-block:: console + + &fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 + / + + +^^^^^^^^^^^^^^^^^^ +``namsfc`` +^^^^^^^^^^^^^^^^^^ + +The namelist section ``&namsfc`` contains the filenames of the static datasets (i.e., *fix files*). +:numref:`Table %s ` contains a brief description of the climatological information in these files. +The variables used in ``&namsfc`` to set the filenames are described in :numref:`Table %s `. + +.. _namsfc_nml: + +.. list-table:: *List of common variables in the *namsfc* namelist section used to set the filenames of + static datasets.* + :widths: 15 40 15 20 + :header-rows: 1 + + * - Variable Name + - File contains + - Data Type + - Default Value + * - fnglac + - Climatological glacier data + - character*500 + - 'global_glacier.2x2.grb' + * - fnmxic + - Climatological maximum ice extent + - character*500 + - 'global_maxice.2x2.grb' + * - fntsfc + - Climatological surface temperature + - character*500 + - 'global_sstclim.2x2.grb' + * - fnsnoc + - Climatological snow depth + - character*500 + - 'global_snoclim.1.875.grb' + * - fnzorc + - Climatological surface roughness + - character*500 + - 'global_zorclim.1x1.grb' + * - fnalbc + - Climatological snowfree albedo + - character*500 + - 'global_albedo4.1x1.grb' + * - fnalbc2 + - Four albedo fields for seasonal mean climatology + - character*500 + - 'global_albedo4.1x1.grb' + * - fnaisc + - Climatological sea ice + - character*500 + - 'global_iceclim.2x2.grb' + * - fntg3c + - Climatological deep soil temperature + - character*500 + - 'global_tg3clim.2.6x1.5.grb' + * - fnvegc + - Climatological vegetation cover + - character*500 + - 'global_vegfrac.1x1.grb' + * - fnvetc + - Climatological vegetation type + - character*500 + - 'global_vegtype.1x1.grb' + * - fnsotc + - Climatological soil type + - character*500 + - 'global_soiltype.1x1.grb' + * - fnsmcc + - Climatological soil moisture + - character*500 + - 'global_soilmcpc.1x1.grb' + * - fnmskh + - High resolution land mask field + - character*500 + - 'global_slmask.t126.grb' + * - fnvmnc + - Climatological minimum vegetation cover + - character*500 + - 'global_shdmin.0.144x0.144.grb' + * - fnvmxc + - Climatological maximum vegetation cover + - character*500 + - 'global_shdmax.0.144x0.144.grb' + * - fnslpc + - Climatological slope type + - character*500 + - 'global_slope.1x1.grb' + * - fnabsc + - Climatological maximum snow albedo + - character*500 + - 'global_snoalb.1x1.grb' + +A sample subset of this namelist is shown below: + +.. code-block:: console + + &namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = 'global_snowfree_albedo.bosu.t126.384.190.rg.grb' + FNALBC2 = 'global_albedo4.1x1.grb' + FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNTG3C = 'global_tg3clim.2.6x1.5.grb' + FNVEGC = 'global_vegfrac.0.144.decpercent.grb' + FNVETC = 'global_vegtype.igbp.t126.384.190.rg.grb' + FNSOTC = 'global_soiltype.statsgo.t126.384.190.rg.grb' + FNSMCC = 'global_soilmgldas.t126.384.190.grb' + FNMSKH = 'seaice_newland.grb' + FNVMNC = 'global_shdmin.0.144x0.144.grb' + FNVMXC = 'global_shdmax.0.144x0.144.grb' + FNSLPC = 'global_slope.1x1.grb' + FNABSC = 'global_mxsnoalb.uariz.t126.384.190.rg.grb' + / + +Additional variables for the ``&namsfc`` namelist can be found in the ``FV3/ccpp/physics/physics/sfcsub.F`` +file. + +^^^^^^^^^^^^^^^^^^^^ +``atmos_model_nml`` +^^^^^^^^^^^^^^^^^^^^ + +The namelist section ``&atmos_model_nml`` contains information used by the atmosphere model. +The variables used in ``&atmos_model_nml`` are described in :numref:`Table %s `. + +.. _atmos_model_nml: + +.. list-table:: *List of common variables in the *atmos_model_nml* namelist section. + :widths: 10 40 15 15 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - blocksize + - Number of columns in each ``block`` sent to the physics. OpenMP threading is done over the number of blocks. + For best performance this number should divide the number of grid cells per processor: + ``((npx-1)*(npy-1)/(layout\_x)*(layout\_y))``. A description of these variables is provided + `here `_. + - integer + - 1 + * - chksum_debug + - If true, compute checksums for all variables passed into the GFS physics, before and after each physics timestep. This is very useful for reproducibility checking. + - logical + - .false. + * - dycore_only + - If true, only the dynamical core (and not the GFS physics) is executed when running the model, + essentially running the model as a solo dynamical core. + - logical + - .false. + * - debug + - If true, turn on additional diagnostics for the atmospheric model. + - logical + - .false. + * - sync + - If true, initialize timing identifiers. + - logical + - .false. + * - ccpp_suite + - Name of the CCPP physics suite + - character(len=256) + - FV3_GFS_v15p2, set in ``build.sh`` + * - avg_max_length + - Forecast interval (in seconds) determining when the maximum values of diagnostic fields in FV3 + dynamics are computed. + - real + - 3600. + +A sample of this namelist is shown below: + +.. code-block:: console + + &atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + ccpp_suite = 'FV3_GFS_v16beta' + / + +The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. + +^^^^^^^^^^^^^^^^^^ +gfs_physics_nml +^^^^^^^^^^^^^^^^^^ + +The namelist section ``&gfs_physics_nml`` contains physics-related information used by the atmosphere model and +some of the variables are only relevant for specific parameterizations and/or configurations. +The small set of variables used in ``&gfs_physics_nml`` are described in :numref:`Table %s `. + +.. _gfs_physics_nml: + +.. list-table:: *List of common variables in the *gfs_physics_nml* namelist section. + :widths: 10 40 15 15 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - cplflx + - Flag to activate atmosphere-ocean coupling. If true, turn on receiving exchange fields from other components such as ocean. + - logical + - .false. + * - use_med_flux + - Flag to receive atmosphere-ocean fluxes from mediator. If true, atmosphere-ocean fluxes will be received into the CCPP physics and used there, instead of calculating them. + - logical + - .false. + +A sample subset of this namelist is shown below: + +.. code-block:: console + + &gfs_physics_nml + use_med_flux = .true. + cplflx = .true. + / + +Additional variables for the ``&gfs_physics_nml`` namelist can be found in the ``FV3/ccpp/data/GFS_typedefs.F90`` +file. .. _OutputFiles: @@ -1957,36 +2547,36 @@ Output files FV3Atm ------- -The output files generated when running *fv3.exe* are defined in the *diag_table* file. For the default global configuration, the following files are output (six files of each kind, corresponding to the six tiles of the model grid): +The output files generated when running ``fv3.exe`` are defined in the ``diag_table`` file. For the default global configuration, the following files are output (six files of each kind, corresponding to the six tiles of the model grid): -- *atmos_4xdaily.tile[1-6].nc* -- *atmos_static.tile[1-6].nc* -- *sfcfHHH.nc* -- *atmfHHH.nc* -- *grid_spec.tile[1-6].nc* + * ``atmos_4xdaily.tile[1-6].nc`` + * ``atmos_static.tile[1-6].nc`` + * ``sfcfHHH.nc`` + * ``atmfHHH.nc`` + * ``grid_spec.tile[1-6].nc`` -Note that the sfcf* and atmf* files are not output on the 6 tiles, but instead as a single global gaussian grid file. The specifications of the output files (format, projection, etc) may be overridden in the *model_configure* input file, see :numref:`Section %s `. +Note that the ``sfcf*`` and ``atmf*`` files are not output on the 6 tiles, but instead as a single global gaussian grid file. The specifications of the output files (format, projection, etc) may be overridden in the ``model_configure`` input file, see :numref:`Section %s `. The regional configuration will generate similar output files, but the *tile[1-6]* is not included in the filename. -Two files (*model_configure* and *diag_table*) control the output that is generated by the UFS Weather Model. The output files that contain the model variables are written to a file as shown in the figure below. The format of these output files is selected in *model_configure* as NetCDF. The information in these files may be remapped, augmented with derived variables, and converted to GRIB2 by the Unified Post Processor (UPP). Model variables are listed in the *diag_table* in two groupings, *fv3_history* and *fv3_history2d*, as described in :numref:`Section %s `. The names of the files that contain these model variables are specified in the *model_configure* file. When *quilting* is set to *.true.* for the write component, the variables listed in the groups *fv3_history* and *fv3_history2d* are converted into the two output files named in the *model_configure* file, e.g. *atmfHHH.* and *sfcfHHH.*. The bases of the file names (*atm* and *sfc*) are specified in the *model_configure* file, and *HHH* refers to the forecast hour. +Two files (``model_configure`` and ``diag_table``) control the output that is generated by the UFS Weather Model. The output files that contain the model variables are written to a file as shown in the figure below. The format of these output files is selected in ``model_configure`` as NetCDF. The information in these files may be remapped, augmented with derived variables, and converted to GRIB2 by the Unified Post Processor (UPP). Model variables are listed in the ``diag_table`` in two groupings, *fv3_history* and *fv3_history2d*, as described in :numref:`Section %s `. The names of the files that contain these model variables are specified in the ``model_configure`` file. When *quilting* is set to ``.true.`` for the write component, the variables listed in the groups *fv3_history* and *fv3_history2d* are converted into the two output files named in the ``model_configure`` file, e.g. ``atmfHHH.`` and ``sfcfHHH.``. The bases of the file names (``atm`` and ``sfc``) are specified in the ``model_configure`` file, and ``HHH`` refers to the forecast hour. .. figure:: _static/fv3IO.png - Relationship between *diag_table*, *model_configure* and generated output files + Relationship between ``diag_table``, ``model_configure`` and generated output files -Standard output files are *logfHHH* (one per forecast hour), and out and err as specified by the job submission. ESMF may also produce log -files (controlled by variable print_esmf in the *model_configure* file), called *PETnnn.ESMF_LogFile* (one per MPI task). +Standard output files are ``logfHHH`` (one per forecast hour), and out and err as specified by the job submission. ESMF may also produce log +files (controlled by variable print_esmf in the ``model_configure`` file), called ``PETnnn.ESMF_LogFile`` (one per MPI task). -Additional output files include: nemsusage.xml, a timing log file; time_stamp.out, contains the model init time; *RESTART/*nc*, files needed for restart runs. +Additional output files include: ``nemsusage.xml``, a timing log file; `time_stamp.out`, contains the model init time; ``RESTART/*nc``, files needed for restart runs. ------- MOM6 ------- -MOM6 output is controlled via the FMS diag_manager using the *diag_table*. When MOM6 is present, the *diag_table* shown :ref:`above ` includes additional requested MOM6 fields. +MOM6 output is controlled via the FMS diag_manager using the ``diag_table``. When MOM6 is present, the ``diag_table`` shown :ref:`above ` includes additional requested MOM6 fields. -A brief example of the diag_table is shown below. ``“...”`` denotes where lines have been removed. +A brief example of the diag_table is shown below. ``"..."`` denotes where lines have been removed. .. code-block:: console @@ -2047,7 +2637,7 @@ HYCOM output configuration is set in the :ref:`blkdat.input` * - jtest - j grid point where detailed diagnostics are desired -HYCOM outpus multiple datasets. These datasets contain both dot-a (.a), dot-b (.b), and dot-txt (.txt) files. Dot-a files contain data written as 32-bit IEEE real values (idm*jdm). Dot-b files contain plain text metadata for each field in the dot-a file. Dot-txt files contain plain text data for a single sell for profiling purposes. Post-processing utilties are available in the `HYCOM-tools `_ repository. +HYCOM outpus multiple datasets. These datasets contain both dot-a (.a), dot-b (.b), and dot-txt (.txt) files. Dot-a files contain data written as 32-bit IEEE real values (idm*jdm). Dot-b files contain plain text metadata for each field in the dot-a file. Dot-txt files contain plain text data for a single cell for profiling purposes. Post-processing utilties are available in the `HYCOM-tools `_ repository. .. _HYCOM_OutputFiles: @@ -2068,7 +2658,7 @@ HYCOM outpus multiple datasets. These datasets contain both dot-a (.a), dot-b (. CICE6 ------- -CICE6 output is controlled via the namelist *ice_in*. The relevant configuration settings are +CICE6 output is controlled via the namelist ``ice_in``. The relevant configuration settings are .. code-block:: console @@ -2078,11 +2668,11 @@ CICE6 output is controlled via the namelist *ice_in*. The relevant configuration hist_avg = .true. ... -In this example, *histfreq_n* and *hist_avg* specify that output will be 6-hour means. No monthly (*m*), -daily (*d*), yearly (*x*) or per-timestep (*x*) output will be produced.The *hist_avg* can -also be set *.false.* to produce, for example, instaneous fields every 6 hours. +In this example, ``histfreq_n`` and ``hist_avg`` specify that output will be 6-hour means. No monthly (``m``), +daily (``d``), yearly (``x``) or per-timestep (``x``) output will be produced.The ``hist_avg`` can +also be set ``.false.`` to produce, for example, instaneous fields every 6 hours. -The output of any field is set in the appropriate *ice_in* namelist. For example, +The output of any field is set in the appropriate ``ice_in`` namelist. For example, .. code-block:: console @@ -2104,30 +2694,33 @@ Further details of the configuration of CICE model output can be found in the CI WW3 ------- -The run directory includes WW3 binary outputs for the gridded outputs (YYYYMMDD.HHMMSS.out_grd.), point outputs (YYYYMMDD.HHMMSS.out_pnt.points) and restart files (YYYYMMDD.HHMMSS.restart.). +The run directory includes WW3 binary outputs for the gridded outputs (``YYYYMMDD.HHMMSS.out_grd.``), point outputs (``YYYYMMDD.HHMMSS.out_pnt.points``) and restart files (``YYYYMMDD.HHMMSS.restart.``). ------- CMEPS ------- -The CMEPS mediator writes general information about the run-time configuration to the file *mediator.log* in the model run directory. Optionally, the CMEPS mediator can be configured to write history files for the purposes of examining the field exchanges at various points in the model run sequence. +The CMEPS mediator writes general information about the run-time configuration to the file ``mediator.log`` in the model run directory. Optionally, the CMEPS mediator can be configured to write history files for the purposes of examining the field exchanges at various points in the model run sequence. ============================================================== Additional Information about the FMS Diagnostic Manager ============================================================== -The FMS (Flexible Modeling System) diagnostic manager (``FMS/diag_manager``) manages the output for the ATM and, if present, the MOM6 component in the UFS Weather Model. It is configured using the *diag_table* file. Data can be written at any number of sampling and/or averaging intervals +The FMS (Flexible Modeling System) diagnostic manager (``FMS/diag_manager``) manages the output for the ATM and, if present, the MOM6 component in the UFS Weather Model. It is configured using the ``diag_table`` file. Data can be written at any number of sampling and/or averaging intervals specified at run-time. More information about the FMS diagnostic manager can be found at: https://data1.gfdl.noaa.gov/summer-school/Lectures/July16/03_Seth1_DiagManager.pdf .. _DiagManagerNML: ------------------------------ -Diagnostic Manager namelist +Diagnostic Manager Namelist ------------------------------ -The ``diag_manager_nml`` namelist contains values to control the behavior of the diagnostic manager. Some -of the more common namelist options are described in :numref:`Table %s `. See -``FMS/diag_manager/diag_manager.F90`` for the complete list. +The ``diag_manager_nml`` namelist contains values to control the behavior of the diagnostic manager. Some +of the more common namelist options are described in :numref:`Table %s `. See +``FMS/diag_manager/diag_manager.F90`` for the complete list or view the FMS documentation +`here `__ for additional information. + +.. COMMENT: Is it worth linking to the FMS docs? WM just deals with the namelist file... .. _DiagManager: diff --git a/doc/UsersGuide/source/Introduction.rst b/doc/UsersGuide/source/Introduction.rst index 192264e469..291116bef0 100644 --- a/doc/UsersGuide/source/Introduction.rst +++ b/doc/UsersGuide/source/Introduction.rst @@ -4,68 +4,66 @@ Introduction ************************* -The Unified Forecast System (:term:`UFS`) :term:`Weather Model` (WM) is a prognostic model that can be +The Unified Forecast System (:term:`UFS`) Weather Model (:term:`WM`) is a prognostic model that can be used for short- and medium-range research and operational forecasts, as exemplified by its use in the operational Global Forecast System (GFS) of the National Oceanic and -Atmospheric Administration (NOAA). The UFS WM v2.0 is the latest public release of this +Atmospheric Administration (NOAA). The UFS WM v2.0.0 is the latest public release of this software and represents a snapshot of a continuously evolving system undergoing open -development. More information about the UFS can be found in its portal at https://ufscommunity.org/. +development. More information about the UFS can be found on the UFS Community Portal at https://ufscommunity.org/. Key architectural elements of the UFS WM, along with links to external detailed documentation for those elements, are listed below: -- `The Finite-Volume Cubed-Sphere (FV3) dynamical core `_. + * The `Finite-Volume Cubed-Sphere (FV3) dynamical core `__ is the computational part of an atmospheric model that solves the equations of fluid motion. -- `The Flexible Modeling System `_ (:term:`FMS`), a software infrastructure used for functions such as - parallelization. + * The `Flexible Modeling System `__ (:term:`FMS`), is a software framework for supporting the efficient development, construction, execution, and scientific interpretation of atmospheric, oceanic, and climate system models. It is used for functions such as parallelization. -- `The Common-Community Physics Package `_ (:term:`CCPP`), a library of - physical parameterizations and the framework to use it with the model. :term:`Parameterization or physics scheme` is defined here. + * `The Common-Community Physics Package `__ (:term:`CCPP`), provides a framework and library of physics schemes, or :term:`parameterizations`, that support interoperable atmospheric physics. Atmospheric physics is a set of numerical methods approximating the effects of small-scale processes such as clouds, turbulence, radiation, and their interactions. -- `The stochastic physics capability `_, including the Stochastic Kinetic Backscatter Scheme (SKEBS), - the Stochastically Perturbed Parameterization Tendencies (SPPT) scheme, the perturbed boundary - layer humidity (SHUM) scheme, and the cellular automata method. + * `Stochastic physics `__ schemes apply randomized perturbations to the physical tendencies, or physical parameters, of a model in order to compensate for model uncertainty. They include the Stochastic Kinetic Backscatter Scheme (SKEBS), the Stochastically Perturbed Parameterization Tendencies (SPPT) scheme, the perturbed boundary layer humidity (SHUM) scheme, the Stochastically Perturbed Parameterizations (SPP) scheme, Land Surface Model SPP (LSM-SPP), and the cellular automata method (:cite:t:`BengtssonEtAl2020`). -- `The NOAA Environmental Modeling System `_ (:term:`NEMS`) model driver used to create the main program. + * The libraries needed to build the system, such as: + + * `National Centers for Environmental Prediction (NCEP) Libraries `__ + * `Earth System Modeling Framework (ESMF) `__ + * `External libraries `__ -- The libraries needed to build the system, such as: - - `National Centers for Environmental Prediction (NCEP) Libraries `_ - - `Earth System Modeling Framework (ESMF) `_ - - `External libraries `_ + * The build system used to compile the code and generate the executable. -- The build system used to compile the code and generate the executable. + * The regression tests used to maintain software integrity as innovations are added. -- The regression tests used to maintain software integrity as innovations are added. +.. COMMENT: Should NCEP, ESMF, and external libraries be grouped as part of HPC-Stack? Or is this a different set of libraries? -The UFS Weather Model is currently included in two UFS Application releases. These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. +The UFS Weather Model is currently included in two UFS Application releases: The UFS Short-Range Weather (:term:`SRW`) Application v2.0.0 release (June 2022) and the UFS Medium Range Weather Application (:term:`MRW`) v1.1.0 release (October 2020). These UFS Apps also contain pre- and post-processing components, a comprehensive build system, and workflows for configuration and execution of the application. The SRW App v2.0.0 documentation and details can be found `here `__. The MRW App v1.1.0 documentation and details can be found `here `__. -The UFS WM v2.0 is included as part of the UFS Short Range Weather App, and details can be found `here `_. +The UFS WM code is portable and can be used with Linux or Mac operating systems and with Intel or GNU compilers. It has been tested on a variety of platforms widely used by atmospheric scientists, such as the NOAA Research Hera system, the National Center for Atmospheric Research (:term:`NCAR`) Cheyenne system, the National Science Foundation Stampede system, and Mac laptops. -The UFS WM v1.1 and v1.0 is included as part of the UFS Medium Range Weather App, and details can be found `here `_. +.. note:: -The UFS WM v2 code is portable and can be used with Linux and Mac operating systems with Intel and GNU compilers. It has been tested in a variety of platforms widely used by atmospheric scientists, such as the NOAA research Hera system, the National Center for Atmospheric Research (NCAR) Cheyenne system, the National Science Foundation Stampede system, and Mac laptops. + At this time, the following aspects are unsupported: configurations in which a mediator is used to couple the atmospheric model to models of other earth domains (such as ocean, ice, and waves), horizontal resolutions other than the supported ones, different number or placement of vertical levels, the *cellular automata* stochastic scheme, and the use of different file formats for input and output. It is expected that the UFS WM supported capabilities will be expanded in future releases. -.. note:: +.. COMMENT: Are coupled versions of the WM now supported? With 12 configurations it would seem that perhaps some are? +.. COMMENT: Is the cellular automata stochastic scheme now supported? +.. COMMENT: Which horizontal/vertical levels & placements are supported? Just the default ones? - At this time, the following aspects are unsupported: configurations in which a mediator is used to couple the atmospheric model to models of other earth domains (such as ocean, ice, and waves), horizontal resolutions other than the supported ones, different number or placement of vertical levels, the *cellular automata* stochastic scheme, and the use of different file formats for input and output. It is expected that the UFS WM supported capabilities will be expanded in future releases. +Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `__ to make sure no inadvertent changes to the results have been introduced during the development process. -Those wishing to contribute development to the UFS WM should become familiar with the procedures for running the model as a standalone component and for executing the regression tests described in the UFS WM GitHub `wiki `_ to make sure no inadvertent changes to the results have been introduced during the development process. +Support for the UFS WM is provided through the `UFS Forum `__ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA's Environmental Modeling Center (:term:`EMC`), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and :term:`NCAR`. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. -Support for the UFS WM is provided through the `UFS Forum `_ by the Developmental Testbed Center (DTC) and other groups involved in UFS development, such as NOAA’s Environmental Modeling Center (EMC), NOAA research laboratories (GFDL, NSSL, ESRL, and AOML), and NCAR. UFS users and developers are encouraged not only to post questions, but also to help address questions posted by other members of the community. +This WM User's Guide is organized as follows: -This WM User’s Guide is organized as follows: + * :numref:`Chapter %s ` (Code Overview) provides a description of the various code repositories from which source code is pulled and an overview of the directory structure. -- :numref:`Chapter %s ` (Code Overview) provides a description of the various - code repositories from which source code is pulled and an overview of the directory structure. + * :numref:`Chapter %s ` (Building and Running the WM) explains how to use the WM without an application. -- :numref:`Chapter %s ` (Building and Running the WM) explains how to use the WM without an application. + * :numref:`Chapter %s ` (Data: Input, Model Configuration, and Output Files) lists the model inputs and outputs and has a description of the key files. -- :numref:`Chapter %s ` (Inputs and Outputs) lists the model inputs and outputs - and has a description of the key files. + * :numref:`Chapter %s ` (Configuration Parameters) lists the purpose and valid values for various configuration parameters. -- :numref:`Chapter %s ` (FAQ) lists frequently asked questions and answers. + * :numref:`Chapter %s ` (Automated Testing) describes UFS WM automated testing options. + + * :numref:`Chapter %s ` (FAQ) lists frequently asked questions and answers. Finally, :numref:`Chapters %s ` and :numref:`%s ` contain a list of acronyms and a glossary, respectively. -.. This is how you cite a reference :cite:`Bernardet2018`. - +.. bibliography:: references.bib \ No newline at end of file diff --git a/doc/UsersGuide/source/_static/theme_overrides.css b/doc/UsersGuide/source/_static/theme_overrides.css new file mode 100644 index 0000000000..9713e89ab2 --- /dev/null +++ b/doc/UsersGuide/source/_static/theme_overrides.css @@ -0,0 +1,9 @@ +/* !important prevents the common CSS stylesheets from overriding this CSS since on RTD they are loaded after this stylesheet */ + +.wy-nav-content { + max-width: 100% !important; +} + +.wy-table-responsive table td { + white-space: normal !important; +} diff --git a/doc/UsersGuide/source/conf.py b/doc/UsersGuide/source/conf.py index 89ad0dfd01..fa2a93ca5b 100644 --- a/doc/UsersGuide/source/conf.py +++ b/doc/UsersGuide/source/conf.py @@ -81,7 +81,7 @@ exclude_patterns = [] # The name of the Pygments (syntax highlighting) style to use. -pygments_style = None +pygments_style = 'sphinx' # -- Options for HTML output ------------------------------------------------- @@ -89,7 +89,9 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'classic' +#html_theme = 'classic' +html_theme = 'sphinx_rtd_theme' +html_theme_path = ["_themes", ] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -102,9 +104,11 @@ # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ['_static'] +html_context = {} def setup(app): app.add_css_file('custom.css') # may also be an URL + app.add_css_file('theme_overrides.css') # may also be an URL # Custom sidebar templates, must be a dictionary that maps document names # to template names. diff --git a/doc/UsersGuide/source/index.rst b/doc/UsersGuide/source/index.rst index d450c34284..f5e638de4b 100644 --- a/doc/UsersGuide/source/index.rst +++ b/doc/UsersGuide/source/index.rst @@ -14,6 +14,7 @@ Welcome to the UFS Weather Model User's Guide CodeOverview BuildingAndRunning InputsOutputs + ConfigParameters AutomatedTesting FAQ Acronyms diff --git a/doc/UsersGuide/source/references.bib b/doc/UsersGuide/source/references.bib index 9908c88ee6..92a6d96b98 100644 --- a/doc/UsersGuide/source/references.bib +++ b/doc/UsersGuide/source/references.bib @@ -12,3 +12,10 @@ @article{BernardetEtAl2018a url={https://drive.google.com/drive/folders/1XYFI08wBUxTyiLkNqn5H3PcXSUgpxWqF}, year={2018}, } +@article{BengtssonEtAl2020, + title={A Stochastic Parameterization of Organized Tropical Convection Using Cellular Automata for Global Forecasts in NOAA's Unified Forecast System}, + author={L. Bengtsson and J. Dias and S. Tulich and M. Gehne and J. Bao}, + journal={Journal of Advances in Modeling Earth Systems}, + url={https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2020MS002260}, + year={2020}, +} diff --git a/driver/UFS.F90 b/driver/UFS.F90 index 305c925545..a180578883 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -36,12 +36,12 @@ PROGRAM UFS USE ESMF ! !----------------------------------------------------------------------- -!*** USE the EARTH gridded component module. Although it +!*** USE the UFSDriver module. Although it !*** contains the calls to Register and the top level Initialize, !*** Run, and Finalize, only the Register routine is public. !----------------------------------------------------------------------- ! - USE module_EARTH_GRID_COMP + USE UFSDriver, only : UFSDriver_SS ! !----------------------------------------------------------------------- ! @@ -54,8 +54,9 @@ PROGRAM UFS INTEGER :: MYPE & !<-- The MPI task ID ,NSECONDS_FCST & !<-- Length of forecast in seconds ,YY,MM,DD & !<-- Time variables for date - ,HH,MNS,SEC & !<-- Time variables for time of day - ,fhrot + ,HH,MNS,SEC !<-- Time variables for time of day + + REAL(ESMF_KIND_R8) :: fhrot !< forecast hour at restart time ! REAL :: NHOURS_FCST !<-- Length of forecast in hours @@ -71,7 +72,7 @@ PROGRAM UFS ! the computer CPU resource ! for the ESMF grid components. ! - TYPE(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH gridded component. + TYPE(ESMF_GridComp) :: UFSDriverComp !<-- The UFS Driver gridded component. ! TYPE(ESMF_Clock) :: CLOCK_MAIN !<-- The ESMF time management clock ! @@ -158,33 +159,33 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Create the EARTH gridded component which will create and +!*** Create the UFS Driver gridded component which will create and !*** control the ATM (atmoshpere), OCN (ocean), ICE (sea ice), etc. !*** gridded components. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Create the EARTH Gridded Component" + MESSAGE_CHECK="Create the UFS Driver Gridded Component" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - EARTH_GRID_COMP=ESMF_GridCompCreate(name ='EARTH Grid Comp' & !<-- EARTH component name + UFSDriverComp=ESMF_GridCompCreate(name ='UFS Driver Grid Comp' & ,rc = RC) ESMF_ERR_ABORT(RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Register the EARTH gridded component's Initialize, Run and +!*** Register the UFS Driver gridded component's Initialize, Run and !*** Finalize routines. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Register EARTH Gridded Component Init, Run, Finalize" + MESSAGE_CHECK="Register UFS Driver Gridded Component Init, Run, Finalize" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompSetServices(EARTH_GRID_COMP & !<-- The EARTH component - ,EARTH_REGISTER & !<-- User's subroutineName + CALL ESMF_GridCompSetServices(UFSDriverComp & + ,UFSDriver_SS & ,rc=RC) ESMF_ERR_ABORT(RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ @@ -344,19 +345,18 @@ PROGRAM UFS !----------------------------------------------------------------------- !*** Adjust the currTime of the main clock: CLOCK_MAIN !*** if the fhrot is > 0 -!*** This will correctly set the EARTH clocks in case of +!*** This will correctly set the UFS Driver clocks in case of !*** Restart-From-History. !----------------------------------------------------------------------- - - CALL ESMF_ConfigGetAttribute(config = CF_MAIN & - ,value = fhrot & - ,label = 'fhrot:' & - ,default = 0 & + CALL ESMF_ConfigGetAttribute(config = CF_MAIN & + ,value = fhrot & + ,label = 'fhrot:' & + ,default = 0.0_ESMF_KIND_R8 & ,rc = RC) ESMF_ERR_ABORT(RC) if (fhrot > 0) then - CALL ESMF_TimeIntervalSet(restartOffset, h=fhrot, rc=RC) + CALL ESMF_TimeIntervalSet(restartOffset, h_r8=fhrot, rc=RC) ESMF_ERR_ABORT(RC) CURRTIME = STARTTIME + restartOffset call ESMF_ClockSet(CLOCK_MAIN, currTime=CURRTIME, & @@ -367,19 +367,19 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the INITIALIZE step for the EARTH component. +!*** Execute the INITIALIZE step for the UFS Driver component. !*** The Initialize routine that is called here as well as the !*** Run and Finalize routines invoked below are those specified !*** in the Register routine called in ESMF_GridCompSetServices above. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Initialize Step" + MESSAGE_CHECK="Execute the UFS Driver Component Initialize Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompInitialize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The ESMF clock + CALL ESMF_GridCompInitialize(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -387,16 +387,16 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the RUN step for the EARTH component. +!*** Execute the RUN step for the UFS Driver component. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Run Step" + MESSAGE_CHECK="Execute the UFS Driver Component Run Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompRun(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The ESMF clock + CALL ESMF_GridCompRun(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -404,16 +404,16 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the FINALIZE step for the EARTH component. +!*** Execute the FINALIZE step for the UFS Driver component. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Finalize Step" + MESSAGE_CHECK="Execute the UFS Driver Component Finalize Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompFinalize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The Main ESMF clock + CALL ESMF_GridCompFinalize(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -451,7 +451,7 @@ PROGRAM UFS ! CALL ESMF_LogWrite(MESSAGE_CHECK, ESMF_LOGMSG_INFO, rc = RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompDestroy(gridcomp=EARTH_GRID_COMP & + CALL ESMF_GridCompDestroy(gridcomp=UFSDriverComp & ,rc =RC) ESMF_ERR_ABORT(RC) diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/UFSDriver.F90 similarity index 91% rename from driver/EARTH_GRID_COMP.F90 rename to driver/UFSDriver.F90 index c6ca6b22f8..e94b792f4f 100644 --- a/driver/EARTH_GRID_COMP.F90 +++ b/driver/UFSDriver.F90 @@ -1,13 +1,13 @@ !----------------------------------------------------------------------- ! - MODULE module_EARTH_GRID_COMP + MODULE UFSDriver ! !----------------------------------------------------------------------- -!*** This module contains codes directly related to the EARTH component. +!*** This module contains codes directly related to the UFS Driver component. !----------------------------------------------------------------------- ! !----------------------------------------------------------------------- -! 2010-03-24 Black - Created Earth component module. +! 2010-03-24 Black - Created UFS Driver component module. ! 2010-04 Yang - Added Ensemble capability. ! 2011-05-11 Theurich & Yang - Modified for using the ESMF 5.2.0r_beta_snapshot_07. ! 2011-10-04 Yang - Modified for using the ESMF 5.2.0r library. @@ -16,11 +16,11 @@ MODULE module_EARTH_GRID_COMP ! 2013-07 Theurich - Macro based ESMF error handling !----------------------------------------------------------------------- ! -!*** The EARTH component lies in the hierarchy seen here: +!*** The UFS Driver component lies in the hierarchy seen here: ! ! Main program ! | -! EARTH component +! UFS Driver component ! /|\ ! / | \ ! ATM/OCN/ICE/WAV/LND/IPM/HYD .. components @@ -42,6 +42,8 @@ MODULE module_EARTH_GRID_COMP 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 @@ -74,6 +76,9 @@ MODULE module_EARTH_GRID_COMP #ifdef FRONT_NOAH use FRONT_NOAH, only: NOAH_SS => SetServices #endif +#ifdef FRONT_NOAHMP + use FRONT_NOAHMP, only: NOAHMP_SS => SetServices +#endif #ifdef FRONT_LIS use FRONT_LIS, only: LIS_SS => SetServices #endif @@ -87,7 +92,8 @@ MODULE module_EARTH_GRID_COMP #endif ! - Handle build time GOCART options: #ifdef FRONT_GOCART - use FRONT_GOCART, only: GOCART_SS => SetServices + use FRONT_GOCART, only: GOCART_SS => SetServices, & + GOCART_SV => SetVM #endif ! - Mediator #ifdef FRONT_CMEPS @@ -103,8 +109,7 @@ MODULE module_EARTH_GRID_COMP ! private ! - public :: earth_register - public :: verbose_diagnostics + public :: UFSDriver_SS ! !----------------------------------------------------------------------- ! @@ -114,19 +119,7 @@ MODULE module_EARTH_GRID_COMP character(len=*),parameter :: u_FILE_u = & __FILE__ - CONTAINS - - logical function verbose_diagnostics(set) - !! Mutator for the verbose diagnostics flag; returns true if - !! verbose diagnostics should be used, and false otherwise. - !! If the "set" argument is present, then the flag is set to - !! the given value. - logical, optional :: set - if(present(set)) then - flag_verbose_diagnostics=set - endif - verbose_diagnostics=flag_verbose_diagnostics - end function verbose_diagnostics + contains logical function ChkErr(rc, line, file) integer, intent(in) :: rc !< return code to check @@ -144,7 +137,7 @@ end function ChkErr !####################################################################### !----------------------------------------------------------------------- ! - SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) + SUBROUTINE UFSDriver_SS(driver,RC) ! !----------------------------------------------------------------------- ! @@ -152,9 +145,9 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !*** Argument Variables !------------------------ ! - type(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH component + type(ESMF_GridComp) :: driver ! - integer,intent(out) :: rc !<-- Error return code + integer,intent(out) :: rc ! !--------------------- !*** Local Variables @@ -173,33 +166,33 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !----------------------------------------------------------------------- ! ! Derive from NUOPC_Driver - call NUOPC_CompDerive(EARTH_GRID_COMP, Driver_routine_SS, rc=RC) + call NUOPC_CompDerive(driver, Driver_routine_SS, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! specializations: - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetModelServices, specRoutine=SetModelServices, & rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetRunSequence, specRoutine=SetRunSequence, & rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return #ifndef JEDI_DRIVER - ! The NEMS Earth component is currently the top-level driver and + ! The UFS Driver component is currently the top-level driver and ! does not need to coordinate Clocks with its parent. - call ESMF_MethodRemove(EARTH_GRID_COMP, Driver_label_SetRunClock, rc=RC) + call ESMF_MethodRemove(driver, Driver_label_SetRunClock, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetRunClock, specRoutine=NUOPC_NoOp, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return #endif ! register an internal initialization method - call NUOPC_CompSetInternalEntryPoint(EARTH_GRID_COMP, ESMF_METHOD_INITIALIZE, & + call NUOPC_CompSetInternalEntryPoint(driver, ESMF_METHOD_INITIALIZE, & phaseLabelList=(/"IPDv04p2"/), userRoutine=ModifyCplLists, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -208,7 +201,7 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return call ESMF_ConfigLoadFile(config, "nems.configure", rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call ESMF_GridCompSet(EARTH_GRID_COMP, config=config, rc=RC) + call ESMF_GridCompSet(driver, config=config, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! Load the required entries from the fd_nems.yaml file @@ -217,7 +210,7 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !----------------------------------------------------------------------- ! - END SUBROUTINE EARTH_REGISTER + END SUBROUTINE UFSDriver_SS ! !----------------------------------------------------------------------- !####################################################################### @@ -386,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 @@ -459,6 +443,14 @@ subroutine SetModelServices(driver, rc) found_comp = .true. end if #endif +#ifdef FRONT_NOAHMP + if (trim(model) == "noahmp") then + call NUOPC_DriverAddComp(driver, trim(prefix), NOAHMP_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif #ifdef FRONT_LIS if (trim(model) == "lis") then !TODO: Remove bail code and pass info and SetVM to DriverAddComp @@ -512,17 +504,8 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_GOCART if (trim(model) == "gocart") 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), GOCART_SS, & - petList=petList, comp=comp, rc=rc) + GOCART_SV, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if @@ -584,7 +567,7 @@ subroutine SetRunSequence(driver, rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! Diagnostic output - if(verbose_diagnostics()) then + if(flag_verbose_diagnostics) then call NUOPC_DriverPrint(driver, orderflag=.true., rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return endif @@ -673,7 +656,7 @@ subroutine ReadAttributes(gcomp, config, label, relaxedflag, formatprint, rc) ! local variables type(NUOPC_FreeFormat) :: attrFF - character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:ReadAttributes)" + character(len=*), parameter :: subname = "(UFSDriver.F90:ReadAttributes)" !------------------------------------------- rc = ESMF_SUCCESS @@ -720,7 +703,7 @@ subroutine InitRestart(driver, config, rc) logical :: read_restart ! read the restart file, based on start_type character(len=ESMF_MAXSTR) :: cvalue ! temporary character(len=ESMF_MAXSTR) :: attribute ! - character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:InitRestart)" + character(len=*) , parameter :: subname = "(UFSDriver.F90:InitRestart)" !------------------------------------------- rc = ESMF_SUCCESS @@ -764,7 +747,7 @@ function IsRestart(gcomp, config, rc) character(len=*) , parameter :: start_type_start = "startup" character(len=*) , parameter :: start_type_cont = "continue" character(len=*) , parameter :: start_type_brnch = "branch" - character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:IsRestart)" + character(len=*) , parameter :: subname = "(UFSDriver.F90:IsRestart)" !--------------------------------------- rc = ESMF_SUCCESS @@ -819,7 +802,7 @@ subroutine AddAttributes(gcomp, driver, config, compname, rc) character(len=32), allocatable :: compLabels(:) character(len=32), allocatable :: attrList(:) integer :: componentCount - character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:AddAttributes)" + character(len=*), parameter :: subname = "(UFSDriver.F90:AddAttributes)" logical :: lvalue = .false. !------------------------------------------- @@ -878,6 +861,6 @@ end subroutine AddAttributes ! !----------------------------------------------------------------------- ! - END MODULE module_EARTH_GRID_COMP + END MODULE UFSDriver ! !----------------------------------------------------------------------- diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua new file mode 100644 index 0000000000..8432bb9462 --- /dev/null +++ b/modulefiles/ufs_acorn.intel.lua @@ -0,0 +1,36 @@ +help([[ +Load environment to build UFS on Acorn with Intel compiler +]]) + +PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" +load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) + +intel_ver=os.getenv("intel_ver") or "19.1.3.304" +load(pathJoin("intel", intel_ver)) + +craype_ver=os.getenv("craype_ver") or "2.7.13" +load(pathJoin("craype", craype_ver)) + +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" +load(pathJoin("cray-mpich", cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.20.2" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" +hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" +load(pathJoin("hpc", hpc_ver)) +load(pathJoin("hpc-intel", hpc_intel_ver)) +load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) + +load("ufs_common") + +setenv("CC", "cc") +setenv("CXX", "CC") +setenv("FC", "ftn") +setenv("CMAKE_Platform", "acorn") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua new file mode 100644 index 0000000000..b9ba3794ba --- /dev/null +++ b/modulefiles/ufs_acorn.intel_debug.lua @@ -0,0 +1,36 @@ +help([[ +Load environment to build UFS on Acorn with Intel compiler +]]) + +PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" +load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) + +intel_ver=os.getenv("intel_ver") or "19.1.3.304" +load(pathJoin("intel", intel_ver)) + +craype_ver=os.getenv("craype_ver") or "2.7.13" +load(pathJoin("craype", craype_ver)) + +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.9" +load(pathJoin("cray-mpich", cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.20.2" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +hpc_intel_ver=os.getenv("hpc_intel_ver") or "19.1.3.304" +hpc_cray_mpich_ver=os.getenv("hpc_cray_mpich_ver") or "8.1.9" +load(pathJoin("hpc", hpc_ver)) +load(pathJoin("hpc-intel", hpc_intel_ver)) +load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) + +load("ufs_common_debug") + +setenv("CC", "cc") +setenv("CXX", "CC") +setenv("FC", "ftn") +setenv("CMAKE_Platform", "acorn") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.gnu b/modulefiles/ufs_cheyenne.gnu deleted file mode 100644 index a157b7369c..0000000000 --- a/modulefiles/ufs_cheyenne.gnu +++ /dev/null @@ -1,29 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/GNU" -} - -module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" - -module load cmake/3.22.0 -module load python/3.7.9 - -# load programming environment -module load ncarenv/1.3 -module load gnu/10.1.0 -module load mpt/2.22 -module load ncarcompilers/0.5.0 -module unload netcdf - -module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack -module load hpc/1.2.0 -module load hpc-gnu/10.1.0 -module load hpc-mpt/2.22 - -module load ufs_common - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform cheyenne.gnu diff --git a/modulefiles/ufs_cheyenne.gnu.lua b/modulefiles/ufs_cheyenne.gnu.lua new file mode 100644 index 0000000000..8c7aa71d60 --- /dev/null +++ b/modulefiles/ufs_cheyenne.gnu.lua @@ -0,0 +1,43 @@ +help([[ +loads UFS Model prerequisites for Cheyenne/GNU +]]) + +cmake_ver=os.getenv("cmake_ver") or "3.22.0" +load(pathJoin("cmake", cmake_ver)) + +python_ver=os.getenv("python_ver") or "3.7.9" +load(pathJoin("python", python_ver)) + +ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" +load(pathJoin("ncarenv", ncarenv_ver)) + +gnu_ver=os.getenv("gnu_ver") or "10.1.0" +load(pathJoin("gnu", gnu_ver)) + +mpt_ver=os.getenv("mpt_ver") or "2.25" +load(pathJoin("mpt", mpt_ver)) + +ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" +load(pathJoin("ncarcompilers", ncarcompilers_ver)) + +unload("netcdf") + +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" +load(pathJoin("hpc-gnu", hpc_gnu_ver)) + +hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" +load(pathJoin("hpc-mpt", hpc_mpt_ver)) + +load("ufs_common") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "cheyenne.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.gnu_debug b/modulefiles/ufs_cheyenne.gnu_debug deleted file mode 100644 index 9c015b390a..0000000000 --- a/modulefiles/ufs_cheyenne.gnu_debug +++ /dev/null @@ -1,29 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/GNU" -} - -module-whatis "loads UFS Model prerequisites for Cheyenne/GNU" - -module load cmake/3.22.0 -module load python/3.7.9 - -# load programming environment -module load ncarenv/1.3 -module load gnu/10.1.0 -module load mpt/2.22 -module load ncarcompilers/0.5.0 -module unload netcdf - -module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack -module load hpc/1.2.0 -module load hpc-gnu/10.1.0 -module load hpc-mpt/2.22 - -module load ufs_common_debug - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform cheyenne.gnu diff --git a/modulefiles/ufs_cheyenne.gnu_debug.lua b/modulefiles/ufs_cheyenne.gnu_debug.lua new file mode 100644 index 0000000000..81c8df61d5 --- /dev/null +++ b/modulefiles/ufs_cheyenne.gnu_debug.lua @@ -0,0 +1,43 @@ +help([[ +loads UFS Model prerequisites for Cheyenne/GNU Debugging +]]) + +cmake_ver=os.getenv("cmake_ver") or "3.22.0" +load(pathJoin("cmake", cmake_ver)) + +python_ver=os.getenv("python_ver") or "3.7.9" +load(pathJoin("python", python_ver)) + +ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" +load(pathJoin("ncarenv", ncarenv_ver)) + +gnu_ver=os.getenv("gnu_ver") or "10.1.0" +load(pathJoin("gnu", gnu_ver)) + +mpt_ver=os.getenv("mpt_ver") or "2.25" +load(pathJoin("mpt", mpt_ver)) + +ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" +load(pathJoin("ncarcompilers", ncarcompilers_ver)) + +unload("netcdf") + +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/gnu10.1.0/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "10.1.0" +load(pathJoin("hpc-gnu", hpc_gnu_ver)) + +hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" +load(pathJoin("hpc-mpt", hpc_mpt_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "cheyenne.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.intel b/modulefiles/ufs_cheyenne.intel deleted file mode 100644 index 0a3b75144e..0000000000 --- a/modulefiles/ufs_cheyenne.intel +++ /dev/null @@ -1,30 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/Intel" -} - -module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" - -module load cmake/3.22.0 -module load python/3.7.9 - -# load programming environment -module load ncarenv/1.3 -module load intel/2021.2 -module load mpt/2.22 -module load ncarcompilers/0.5.0 -module unload netcdf - -module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/2021.2 -module load hpc-mpt/2.22 - -module load ufs_common - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform cheyenne.intel diff --git a/modulefiles/ufs_cheyenne.intel.lua b/modulefiles/ufs_cheyenne.intel.lua new file mode 100644 index 0000000000..7f9dc697f9 --- /dev/null +++ b/modulefiles/ufs_cheyenne.intel.lua @@ -0,0 +1,44 @@ +help([[ +loads UFS Model prerequisites for Cheyenne/Intel +]]) + +cmake_ver=os.getenv("cmake_ver") or "3.22.0" +load(pathJoin("cmake", cmake_ver)) + +python_ver=os.getenv("python_ver") or "3.7.9" +load(pathJoin("python", python)) + +--load programming environment +ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" +load(pathJoin("ncarenv", ncarenv_ver)) + +intel_ver=os.getenv("intel_ver") or "2022.1" +load(pathJoin("intel", intel_ver)) + +mpt_ver=os.getenv("mpt_ver") or "2.25" +load(pathJoin("mpt", mpt_ver)) + +ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" +load(pathJoin("ncarcompilers", ncarcompilers_ver)) + +unload("netcdf") + +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" +load(pathJoin("hpc-mpt", hpc_mpt_ver)) + +load("ufs_common") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "cheyenne.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_cheyenne.intel_debug b/modulefiles/ufs_cheyenne.intel_debug deleted file mode 100644 index 98a6febd75..0000000000 --- a/modulefiles/ufs_cheyenne.intel_debug +++ /dev/null @@ -1,29 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Cheyenne/Intel" -} - -module-whatis "loads UFS Model prerequisites for Cheyenne/Intel" - -module load cmake/3.22.0 -module load python/3.7.9 - -# load programming environment -module load ncarenv/1.3 -module load intel/2021.2 -module load mpt/2.22 -module load ncarcompilers/0.5.0 -module unload netcdf - -module use /glade/work/epicufsrt/GMTB/tools/hpc-stack-v1.2.0_6eb6/modulefiles/stack -module load hpc/1.2.0 -module load hpc-intel/2021.2 -module load hpc-mpt/2.22 - -module load ufs_common_debug - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform cheyenne.intel diff --git a/modulefiles/ufs_cheyenne.intel_debug.lua b/modulefiles/ufs_cheyenne.intel_debug.lua new file mode 100644 index 0000000000..b3bd0dd112 --- /dev/null +++ b/modulefiles/ufs_cheyenne.intel_debug.lua @@ -0,0 +1,44 @@ +help([[ +loads UFS Model prerequisites for Cheyenne/Intel Debugging +]]) + +cmake_ver=os.getenv("cmake_ver") or "3.22.0" +load(pathJoin("cmake", cmake_ver)) + +python_ver=os.getenv("python_ver") or "3.7.9" +load(pathJoin("python", python)) + +--load programming environment +ncarenv_ver=os.getenv("ncarenv_ver") or "1.3" +load(pathJoin("ncarenv", ncarenv_ver)) + +intel_ver=os.getenv("intel_ver") or "2022.1" +load(pathJoin("intel", intel_ver)) + +mpt_ver=os.getenv("mpt_ver") or "2.25" +load(pathJoin("mpt", mpt_ver)) + +ncarcompilers_ver=os.getenv("ncarcompilers_ver") or "0.5.0" +load(pathJoin("ncarcompilers", ncarcompilers_ver)) + +unload("netcdf") + +prepend_path("MODULEPATH", "/glade/work/epicufsrt/contrib/hpc-stack/intel2022.1/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_mpt_ver=os.getenv("hpc_mpt_ver") or "2.25" +load(pathJoin("hpc-mpt", hpc_mpt_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "cheyenne.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common deleted file mode 100644 index b601a612a8..0000000000 --- a/modulefiles/ufs_common +++ /dev/null @@ -1,23 +0,0 @@ -#%Module - -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.2 -module load esmf/8.3.0b09 -module load fms/2022.01 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.2 -module load g2tmpl/1.10.0 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3nco/2.4.1 - -module load gftl-shared/v1.3.3 -module load yafyaml/v0.5.1 -module load mapl/2.11.0-esmf-8.3.0b09 diff --git a/modulefiles/ufs_common.lua b/modulefiles/ufs_common.lua new file mode 100644 index 0000000000..ae8b8e6c31 --- /dev/null +++ b/modulefiles/ufs_common.lua @@ -0,0 +1,56 @@ +help([[ +loads UFS Model common libraries +]]) + +jasper_ver=os.getenv("jasper_ver") or "2.0.25" +load(pathJoin("jasper", jasper_ver)) + +zlib_ver=os.getenv("zlib_ver") or "1.2.11" +load(pathJoin("zlib", zlib_ver)) + +libpng_ver=os.getenv("libpng_ver") or "1.6.37" +load(pathJoin("libpng", libpng_ver)) + +hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" +load(pathJoin("hdf5", hdf5_ver)) + +netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" +load(pathJoin("netcdf", netcdf_ver)) + +pio_ver=os.getenv("pio_ver") or "2.5.7" +load(pathJoin("pio", pio_ver)) + +esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" +load(pathJoin("esmf", esmf_ver)) + +fms_ver=os.getenv("fms_ver") or "2022.04" +load(pathJoin("fms",fms_ver)) + +bacio_ver=os.getenv("bacio_ver") or "2.4.1" +load(pathJoin("bacio", bacio_ver)) + +crtm_ver=os.getenv("crtm_ver") or "2.4.0" +load(pathJoin("crtm", crtm_ver)) + +g2_ver=os.getenv("g2_ver") or "3.4.5" +load(pathJoin("g2", g2_ver)) + +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +load(pathJoin("g2tmpl", g2tmpl_ver)) + +ip_ver=os.getenv("ip_ver") or "3.3.3" +load(pathJoin("ip", ip_ver)) + +sp_ver=os.getenv("sp_ver") or "2.3.3" +load(pathJoin("sp", sp_ver)) + +w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" +load(pathJoin("w3emc", w3emc_ver)) + +gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" +load(pathJoin("gftl-shared", gftl_shared_ver)) + +mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" +load(pathJoin("mapl", mapl_ver)) + +whatis("Description: UFS build environment common libraries") diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug deleted file mode 100644 index fa274306a8..0000000000 --- a/modulefiles/ufs_common_debug +++ /dev/null @@ -1,23 +0,0 @@ -#%Module - -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.2 -module load esmf/8.3.0b09-debug -module load fms/2022.01 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.2 -module load g2tmpl/1.10.0 -module load ip/3.3.3 -module load sp/2.3.3 -module load w3nco/2.4.1 - -module load gftl-shared/v1.3.3 -module load yafyaml/v0.5.1 -module load mapl/2.11.0-esmf-8.3.0b09 diff --git a/modulefiles/ufs_common_debug.lua b/modulefiles/ufs_common_debug.lua new file mode 100644 index 0000000000..d9191bfd01 --- /dev/null +++ b/modulefiles/ufs_common_debug.lua @@ -0,0 +1,56 @@ +help([[ +loads UFS Model common libraries for debug +]]) + +jasper_ver=os.getenv("jasper_ver") or "2.0.25" +load(pathJoin("jasper", jasper_ver)) + +zlib_ver=os.getenv("zlib_ver") or "1.2.11" +load(pathJoin("zlib", zlib_ver)) + +libpng_ver=os.getenv("libpng_ver") or "1.6.37" +load(pathJoin("libpng", libpng_ver)) + +hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" +load(pathJoin("hdf5", hdf5_ver)) + +netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" +load(pathJoin("netcdf", netcdf_ver)) + +pio_ver=os.getenv("pio_ver") or "2.5.7" +load(pathJoin("pio", pio_ver)) + +esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" +load(pathJoin("esmf", esmf_ver)) + +fms_ver=os.getenv("fms_ver") or "2022.04" +load(pathJoin("fms",fms_ver)) + +bacio_ver=os.getenv("bacio_ver") or "2.4.1" +load(pathJoin("bacio", bacio_ver)) + +crtm_ver=os.getenv("crtm_ver") or "2.4.0" +load(pathJoin("crtm", crtm_ver)) + +g2_ver=os.getenv("g2_ver") or "3.4.5" +load(pathJoin("g2", g2_ver)) + +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +load(pathJoin("g2tmpl", g2tmpl_ver)) + +ip_ver=os.getenv("ip_ver") or "3.3.3" +load(pathJoin("ip", ip_ver)) + +sp_ver=os.getenv("sp_ver") or "2.3.3" +load(pathJoin("sp", sp_ver)) + +w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" +load(pathJoin("w3emc", w3emc_ver)) + +gftl_shared_ver=os.getenv("gftl_shared_ver") or "v1.5.0" +load(pathJoin("gftl-shared", gftl_shared_ver)) + +mapl_ver=os.getenv("mapl_ver") or "2.22.0-esmf-8.3.0b09" +load(pathJoin("mapl", mapl_ver)) + +whatis("Description: UFS build environment common libraries for debug") diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel index e9dfa639d6..2f21f011a9 100644 --- a/modulefiles/ufs_gaea.intel +++ b/modulefiles/ufs_gaea.intel @@ -22,15 +22,33 @@ module load cmake/3.20.1 #needed for WW3 build module load gcc/8.3.0 -module use /lustre/f2/pdata/ncep_shared/hpc-stack/modulefiles/stack +module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack -module load hpc/1.1.0 -module load hpc-intel/18.0.6.288 +module load hpc/1.2.0 +module load hpc-intel/2021.3.0 module load hpc-cray-mpich/7.7.11 -module load ufs_common - -setenv I_MPI_DAPL_UD 1 +#module load ufs_common +module load jasper/2.0.25 +module load zlib/1.2.11 +module load libpng/1.6.37 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.7 +module load esmf/8.3.0b09 +module load fms/2022.04 + +module load bacio/2.4.1 +module load crtm/2.4.0 +module load g2/3.4.5 +module load g2tmpl/1.10.2 +module load ip/3.3.3 +module load sp/2.3.3 +module load w3emc/2.9.2 + +module load gftl-shared/v1.5.0 +module load mapl/2.22.0-esmf-8.3.0b09 setenv CC cc setenv CXX CC diff --git a/modulefiles/ufs_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug index a2e573739a..c357773ae8 100644 --- a/modulefiles/ufs_gaea.intel_debug +++ b/modulefiles/ufs_gaea.intel_debug @@ -19,15 +19,33 @@ module load alps module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles module load cmake/3.20.1 -module use /lustre/f2/pdata/ncep_shared/hpc-stack/modulefiles/stack +module use /lustre/f2/pdata/ncep_shared/hpc-stack.epic/libs/intel/2021.3.0/modulefiles/stack -module load hpc/1.1.0 -module load hpc-intel/18.0.6.288 +module load hpc/1.2.0 +module load hpc-intel/2021.3.0 module load hpc-cray-mpich/7.7.11 -module load ufs_common_debug - -setenv I_MPI_DAPL_UD 1 +#module load ufs_common_debug +module load jasper/2.0.25 +module load zlib/1.2.11 +module load libpng/1.6.37 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.7 +module load esmf/8.3.0b09-debug +module load fms/2022.04 + +module load bacio/2.4.1 +module load crtm/2.4.0 +module load g2/3.4.5 +module load g2tmpl/1.10.2 +module load ip/3.3.3 +module load sp/2.3.3 +module load w3emc/2.9.2 + +module load gftl-shared/v1.5.0 +module load mapl/2.22.0-esmf-8.3.0b09 setenv CC cc setenv CXX CC diff --git a/modulefiles/ufs_hera.gnu b/modulefiles/ufs_hera.gnu deleted file mode 100644 index 2322493abc..0000000000 --- a/modulefiles/ufs_hera.gnu +++ /dev/null @@ -1,29 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/GNU" -} - -module-whatis "loads UFS Model prerequisites for Hera/GNU" - -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -module load miniconda3/3.7.3 - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 - -module load hpc-gnu/9.2.0 -module load hpc-mpich/3.3.2 - -module load ufs_common - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform hera.gnu diff --git a/modulefiles/ufs_hera.gnu.lua b/modulefiles/ufs_hera.gnu.lua new file mode 100644 index 0000000000..eef017b7c3 --- /dev/null +++ b/modulefiles/ufs_hera.gnu.lua @@ -0,0 +1,36 @@ +help([[ +loads UFS Model prerequisites for Hera/GNU +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +gnu_ver=os.getenv("gnu_ver") or "9.2.0" +load(pathJoin("gnu", gnu_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" +load(pathJoin("hpc-gnu", hpc_gnu_ver)) + +hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" +load(pathJoin("hpc-mpich", hpc_mpich_ver)) + +load("ufs_common") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "hera.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.gnu_debug b/modulefiles/ufs_hera.gnu_debug deleted file mode 100644 index cd2041578c..0000000000 --- a/modulefiles/ufs_hera.gnu_debug +++ /dev/null @@ -1,29 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/GNU" -} - -module-whatis "loads UFS Model prerequisites for Hera/GNU" - -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -module load miniconda3/3.7.3 - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 - -module load hpc-gnu/9.2.0 -module load hpc-mpich/3.3.2 - -module load ufs_common_debug - -setenv CC mpicc -setenv CXX mpicxx -setenv FC mpif90 -setenv CMAKE_Platform hera.gnu diff --git a/modulefiles/ufs_hera.gnu_debug.lua b/modulefiles/ufs_hera.gnu_debug.lua new file mode 100644 index 0000000000..d0ce5d1194 --- /dev/null +++ b/modulefiles/ufs_hera.gnu_debug.lua @@ -0,0 +1,36 @@ +help([[ +loads UFS Model prerequisites for Hera/GNU Debugging +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +gnu_ver=os.getenv("gnu_ver") or "9.2.0" +load(pathJoin("gnu", gnu_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/gnu-9.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_gnu_ver=os.getenv("hpc_gnu_ver") or "9.2" +load(pathJoin("hpc-gnu", hpc_gnu_ver)) + +hpc_mpich_ver=os.getenv("hpc_mpich_ver") or "3.3.2" +load(pathJoin("hpc-mpich", hpc_mpich_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpicc") +setenv("CXX", "mpicxx") +setenv("FC", "mpif90") +setenv("CMAKE_Platform", "hera.gnu") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel deleted file mode 100644 index e1ea830236..0000000000 --- a/modulefiles/ufs_hera.intel +++ /dev/null @@ -1,31 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/Intel" -} - -module-whatis "loads UFS Model prerequisites for Hera/Intel" - -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -module load miniconda3/3.7.3 - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 - -module load hpc-intel/18.0.5.274 -module load hpc-impi/2018.0.4 - -module load ufs_common - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform hera.intel - -setenv I_MPI_DAPL_UD 1 diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua new file mode 100644 index 0000000000..5209333988 --- /dev/null +++ b/modulefiles/ufs_hera.intel.lua @@ -0,0 +1,39 @@ +help([[ +loads UFS Model prerequisites for Hera/Intel +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +intel_ver=os.getenv("intel_ver") or "2022.1.2" +load(pathJoin("intel", intel_ver)) + +impi_ver=os.getenv("impi_ver") or "2022.1.2" +load(pathJoin("impi", impi_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hera.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug deleted file mode 100644 index 8e3c1f2676..0000000000 --- a/modulefiles/ufs_hera.intel_debug +++ /dev/null @@ -1,31 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Hera/Intel" -} - -module-whatis "loads UFS Model prerequisites for Hera/Intel" - -module use /scratch1/NCEPDEV/nems/emc.nemspara/soft/modulefiles -module load miniconda3/3.7.3 - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 - -module load hpc-intel/18.0.5.274 -module load hpc-impi/2018.0.4 - -module load ufs_common_debug - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform hera.intel - -setenv I_MPI_DAPL_UD 1 diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua new file mode 100644 index 0000000000..4c50ac2cab --- /dev/null +++ b/modulefiles/ufs_hera.intel_debug.lua @@ -0,0 +1,39 @@ +help([[ +loads UFS Model prerequisites for Hera/Intel Debugging +]]) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +intel_ver=os.getenv("intel_ver") or "2022.1.2" +load(pathJoin("intel", intel_ver)) + +impi_ver=os.getenv("impi_ver") or "2022.1.2" +load(pathJoin("impi", impi_ver)) + +prepend_path("MODULEPATH", "/scratch1/NCEPDEV/nems/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "hera.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel b/modulefiles/ufs_jet.intel deleted file mode 100644 index f31a5945b4..0000000000 --- a/modulefiles/ufs_jet.intel +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Jet/Intel" -} - -module-whatis "loads UFS Model prerequisites for Jet/Intel" - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack - -module load hpc/1.1.0 -module load hpc-intel/18.0.5.274 -module load hpc-impi/2018.4.274 - -module load ufs_common - -setenv I_MPI_DAPL_UD 1 - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform jet.intel diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua new file mode 100644 index 0000000000..c2d048bd2d --- /dev/null +++ b/modulefiles/ufs_jet.intel.lua @@ -0,0 +1,34 @@ +help([[ +loads UFS Model prerequisites for Jet/Intel +]]) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + + +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "jet.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug b/modulefiles/ufs_jet.intel_debug deleted file mode 100644 index 8c1e67fb41..0000000000 --- a/modulefiles/ufs_jet.intel_debug +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Jet/Intel" -} - -module-whatis "loads UFS Model prerequisites for Jet/Intel" - -module use /contrib/sutils/modulefiles -module load sutils - -module load cmake/3.20.1 - -module use /lfs4/HFIP/hfv3gfs/nwprod/hpc-stack/libs/modulefiles/stack - -module load hpc/1.1.0 -module load hpc-intel/18.0.5.274 -module load hpc-impi/2018.4.274 - -module load ufs_common_debug - -setenv I_MPI_DAPL_UD 1 - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform jet.intel diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua new file mode 100644 index 0000000000..8fd81d58f8 --- /dev/null +++ b/modulefiles/ufs_jet.intel_debug.lua @@ -0,0 +1,34 @@ +help([[ +loads UFS Model prerequisites for Jet/Intel Debugging +]]) + +prepend_path("MODULEPATH", "/contrib/sutils/modulefiles") +load("sutils") + +cmake_ver=os.getenv("cmake_ver") or "3.20.1" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + + +prepend_path("MODULEPATH", "/mnt/lfs4/HFIP/hfv3gfs/role.epic/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "jet.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_orion.intel b/modulefiles/ufs_orion.intel deleted file mode 100644 index f9791644d4..0000000000 --- a/modulefiles/ufs_orion.intel +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Orion/Intel" -} - -module-whatis "loads UFS Model prerequisites for Orion/Intel" - -module load contrib noaatools - -module load cmake/3.22.1 -module load python/3.7.5 - -module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 -module load hpc-intel/2018.4 -module load hpc-impi/2018.4 - -module load ufs_common - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform orion.intel - -setenv I_MPI_DAPL_UD 1 diff --git a/modulefiles/ufs_orion.intel.lua b/modulefiles/ufs_orion.intel.lua new file mode 100644 index 0000000000..ab6997c3e9 --- /dev/null +++ b/modulefiles/ufs_orion.intel.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Orion/Intel +]]) + +load("contrib") +load("noaatools") + +cmake_ver=os.getenv("cmake_ver") or "3.22.1" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "orion.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_orion.intel_debug b/modulefiles/ufs_orion.intel_debug deleted file mode 100644 index eb6d4bb708..0000000000 --- a/modulefiles/ufs_orion.intel_debug +++ /dev/null @@ -1,25 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on Orion/Intel" -} - -module-whatis "loads UFS Model prerequisites for Orion/Intel" - -module load contrib noaatools - -module load cmake/3.22.1 -module load python/3.7.5 - -module use /apps/contrib/NCEP/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 -module load hpc-intel/2018.4 -module load hpc-impi/2018.4 - -module load ufs_common_debug - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform orion.intel diff --git a/modulefiles/ufs_orion.intel_debug.lua b/modulefiles/ufs_orion.intel_debug.lua new file mode 100644 index 0000000000..99e76175b9 --- /dev/null +++ b/modulefiles/ufs_orion.intel_debug.lua @@ -0,0 +1,33 @@ +help([[ +loads UFS Model prerequisites for Orion/Intel Debugging +]]) + +load("contrib") +load("noaatools") + +cmake_ver=os.getenv("cmake_ver") or "3.22.1" +load(pathJoin("cmake", cmake_ver)) + +prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/miniconda3/modulefiles") +miniconda3_ver=os.getenv("miniconda3_ver") or "4.12.0" +load(pathJoin("miniconda3", miniconda3_ver)) + +prepend_path("MODULEPATH", "/work/noaa/epic-ps/role-epic-ps/hpc-stack/libs/intel-2022.1.2/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.2.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1.2" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1.2" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "orion.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_s4.intel b/modulefiles/ufs_s4.intel deleted file mode 100644 index da621b4a13..0000000000 --- a/modulefiles/ufs_s4.intel +++ /dev/null @@ -1,20 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on S4" -} - -module-whatis "loads UFS Model prerequisites for S4" - -module load license_intel/S4 -module use /data/prod/hpc-stack/modulefiles/stack -module load hpc/1.1.0 -module load hpc-intel/18.0.4 -module load hpc-impi/18.0.4 - -module load ufs_common - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform s4.intel diff --git a/modulefiles/ufs_s4.intel.lua b/modulefiles/ufs_s4.intel.lua new file mode 100644 index 0000000000..50372f364c --- /dev/null +++ b/modulefiles/ufs_s4.intel.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for S4 +]]) + +miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" +load(pathJoin("miniconda", miniconda3_ver)) + +license_ver=os.getenv("license_ver") or "S4" +load(pathJoin("license_intel",license_ver)) + + +prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.1.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "s4.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_s4.intel_debug b/modulefiles/ufs_s4.intel_debug deleted file mode 100644 index 2259e980a9..0000000000 --- a/modulefiles/ufs_s4.intel_debug +++ /dev/null @@ -1,21 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on S4" -} - -module-whatis "loads UFS Model prerequisites for S4" - - -module load license_intel/S4 -module use /data/prod/hpc-stack/modulefiles/stack -module load hpc/1.1.0 -module load hpc-intel/18.0.4 -module load hpc-impi/18.0.4 - -module load ufs_common_debug - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform s4.intel diff --git a/modulefiles/ufs_s4.intel_debug.lua b/modulefiles/ufs_s4.intel_debug.lua new file mode 100644 index 0000000000..285ddc203e --- /dev/null +++ b/modulefiles/ufs_s4.intel_debug.lua @@ -0,0 +1,30 @@ +help([[ +loads UFS Model prerequisites for S4 +]]) + +miniconda3_ver=os.getenv("miniconda3_ver") or "3.8-s4" +load(pathJoin("miniconda", miniconda3_ver)) + +license_ver=os.getenv("license_ver") or "S4" +load(pathJoin("license_intel",license_ver)) + + +prepend_path("MODULEPATH", "/data/prod/hpc-stack/modulefiles/stack") + +hpc_ver=os.getenv("hpc_ver") or "1.1.0" +load(pathJoin("hpc", hpc_ver)) + +hpc_intel_ver=os.getenv("hpc_intel_ver") or "2022.1" +load(pathJoin("hpc-intel", hpc_intel_ver)) + +hpc_impi_ver=os.getenv("hpc_impi_ver") or "2022.1" +load(pathJoin("hpc-impi", hpc_impi_ver)) + +load("ufs_common_debug") + +setenv("CC", "mpiicc") +setenv("CXX", "mpiicpc") +setenv("FC", "mpiifort") +setenv("CMAKE_Platform", "s4.intel") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_stampede.intel b/modulefiles/ufs_stampede.intel index 31d27016b6..968cc9dd9f 100644 --- a/modulefiles/ufs_stampede.intel +++ b/modulefiles/ufs_stampede.intel @@ -23,7 +23,7 @@ module load python3/3.7.0 module load bacio/2.4.1 module load crtm/2.3.0 module load g2/3.4.3 -module load g2tmpl/1.10.0 +module load g2tmpl/1.10.2 module load ip/3.3.3 module load nemsio/2.5.2 module load sp/2.3.3 diff --git a/modulefiles/ufs_wcoss2 b/modulefiles/ufs_wcoss2 deleted file mode 100644 index cd4f31954d..0000000000 --- a/modulefiles/ufs_wcoss2 +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" -} - -module-whatis "loads UFS Model prerequisites on Venus and Mars" - -module load PrgEnv-intel/8.1.0 -module load intel/19.1.3.304 -module load craype/2.7.8 -module load cray-mpich/8.1.7 - -module load cmake/3.20.2 - -module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/19.1.3.304 -module load hpc-cray-mpich/8.1.7 - -module load ufs_common - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform wcoss2 diff --git a/modulefiles/ufs_wcoss2.intel.lua b/modulefiles/ufs_wcoss2.intel.lua new file mode 100644 index 0000000000..8e9fdcaf13 --- /dev/null +++ b/modulefiles/ufs_wcoss2.intel.lua @@ -0,0 +1,86 @@ +help([[ +loads UFS Model prerequisites on Cactus and Dogwood +]]) + +-- First, look for libraries in "prod" space +PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" +load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) + +intel_ver=os.getenv("intel_ver") or "19.1.3.304" +load(pathJoin("intel", intel_ver)) + +craype_ver=os.getenv("craype_ver") or "2.7.13" +load(pathJoin("craype", craype_ver)) + +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" +load(pathJoin("cray-mpich", cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.20.2" +load(pathJoin("cmake", cmake_ver)) + +jasper_ver=os.getenv("jasper_ver") or "2.0.25" +load(pathJoin("jasper", jasper_ver)) + +zlib_ver=os.getenv("zlib_ver") or "1.2.11" +load(pathJoin("zlib", zlib_ver)) + +libpng_ver=os.getenv("libpng_ver") or "1.6.37" +load(pathJoin("libpng", libpng_ver)) + +hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" +load(pathJoin("hdf5", hdf5_ver)) + +netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" +load(pathJoin("netcdf", netcdf_ver)) + +fms_ver=os.getenv("fms_ver") or "2022.04" +load(pathJoin("fms", fms_ver)) + +bacio_ver=os.getenv("bacio_ver") or "2.4.1" +load(pathJoin("bacio", bacio_ver)) + +crtm_ver=os.getenv("crtm_ver") or "2.4.0" +load(pathJoin("crtm", crtm_ver)) + +g2_ver=os.getenv("g2_ver") or "3.4.5" +load(pathJoin("g2", g2_ver)) + +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +load(pathJoin("g2tmpl", g2tmpl_ver)) + +ip_ver=os.getenv("ip_ver") or "3.3.3" +load(pathJoin("ip", ip_ver)) + +sp_ver=os.getenv("sp_ver") or "2.3.3" +load(pathJoin("sp", sp_ver)) + +w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" +load(pathJoin("w3emc", w3emc_ver)) + +-- Second, look for libraries in "para" +setenv("HPC_OPT", "/apps/ops/para/libs") +prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") +prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") + +pio_ver=os.getenv("pio_ver") or "2.5.7" +load(pathJoin("pio", pio_ver)) + +-- Finally, look for libraries in "dev" space +prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") +prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") + +gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" +load(pathJoin("gftl_shared", gftl_shared_ver)) + +esmf_ver=os.getenv("esmf_ver") or "8.3.0b09" +load(pathJoin("esmf", esmf_ver)) + +mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" +load(pathJoin("mapl", mapl_ver)) + +setenv("CC", "cc") +setenv("CXX", "CC") +setenv("FC", "ftn") +setenv("CMAKE_Platform", "wcoss2") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_wcoss2.intel_debug.lua b/modulefiles/ufs_wcoss2.intel_debug.lua new file mode 100644 index 0000000000..697a952ad4 --- /dev/null +++ b/modulefiles/ufs_wcoss2.intel_debug.lua @@ -0,0 +1,86 @@ +help([[ +loads UFS Model prerequisites on Cactus and Dogwood +]]) + +-- First, look for libraries on "prod" space +PrgEnv_intel_ver=os.getenv("PrgEnv_intel_ver") or "8.1.0" +load(pathJoin("PrgEnv-intel", PrgEnv_intel_ver)) + +intel_ver=os.getenv("intel_ver") or "19.1.3.304" +load(pathJoin("intel", intel_ver)) + +craype_ver=os.getenv("craype_ver") or "2.7.13" +load(pathJoin("craype", craype_ver)) + +cray_mpich_ver=os.getenv("cray_mpich_ver") or "8.1.7" +load(pathJoin("cray-mpich", cray_mpich_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.20.2" +load(pathJoin("cmake", cmake_ver)) + +jasper_ver=os.getenv("jasper_ver") or "2.0.25" +load(pathJoin("jasper", jasper_ver)) + +zlib_ver=os.getenv("zlib_ver") or "1.2.11" +load(pathJoin("zlib", zlib_ver)) + +libpng_ver=os.getenv("libpng_ver") or "1.6.37" +load(pathJoin("libpng", libpng_ver)) + +hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" +load(pathJoin("hdf5", hdf5_ver)) + +netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" +load(pathJoin("netcdf", netcdf_ver)) + +fms_ver=os.getenv("fms_ver") or "2022.04" +load(pathJoin("fms", fms_ver)) + +bacio_ver=os.getenv("bacio_ver") or "2.4.1" +load(pathJoin("bacio", bacio_ver)) + +crtm_ver=os.getenv("crtm_ver") or "2.4.0" +load(pathJoin("crtm", crtm_ver)) + +g2_ver=os.getenv("g2_ver") or "3.4.5" +load(pathJoin("g2", g2_ver)) + +g2tmpl_ver=os.getenv("g2tmpl_ver") or "1.10.2" +load(pathJoin("g2tmpl", g2tmpl_ver)) + +ip_ver=os.getenv("ip_ver") or "3.3.3" +load(pathJoin("ip", ip_ver)) + +sp_ver=os.getenv("sp_ver") or "2.3.3" +load(pathJoin("sp", sp_ver)) + +w3emc_ver=os.getenv("w3emc_ver") or "2.9.2" +load(pathJoin("w3emc", w3emc_ver)) + +-- Seond, look for libraries in "para" +setenv("HPC_OPT", "/apps/ops/para/libs") +prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/compiler/intel/19.1.3.304") +prepend_path("MODULEPATH", "/apps/ops/para/libs/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.7") + +pio_ver=os.getenv("pio_ver") or "2.5.7" +load(pathJoin("pio", pio_ver)) + +-- Finally, look for libraries in "dev" space +prepend_path("MODULEPATH", "/apps/dev/lmodules/intel/19.1.3.304") +prepend_path("MODULEPATH", "/apps/dev/modulefiles/mpi/intel/19.1.3.304/cray-mpich/8.1.9") + +gftl_shared_ver=os.getenv("gftl_shared_ver") or "1.5.0" +load(pathJoin("gftl_shared", gftl_shared_ver)) + +esmf_ver=os.getenv("esmf_ver") or "8.3.0b09-debug" +load(pathJoin("esmf", esmf_ver)) + +mapl_ver=os.getenv("mapl_ver") or "2.23.1-esmf-8.3.0b09" +load(pathJoin("mapl", mapl_ver)) + +setenv("CC", "cc") +setenv("CXX", "CC") +setenv("FC", "ftn") +setenv("CMAKE_Platform", "wcoss2") + +whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_wcoss2_debug b/modulefiles/ufs_wcoss2_debug deleted file mode 100644 index 4bdf1bd177..0000000000 --- a/modulefiles/ufs_wcoss2_debug +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" -} - -module-whatis "loads UFS Model prerequisites on Venus and Mars" - -module load PrgEnv-intel/8.1.0 -module load intel/19.1.3.304 -module load craype/2.7.8 -module load cray-mpich/8.1.7 - -module load cmake/3.20.2 - -module use /lfs/h1/emc/nceplibs/noscrub/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.2.0 -module load hpc-intel/19.1.3.304 -module load hpc-cray-mpich/8.1.7 - -module load ufs_common_debug - -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform wcoss2 diff --git a/modulefiles/ufs_wcoss_cray b/modulefiles/ufs_wcoss_cray deleted file mode 100644 index 22a4149bdf..0000000000 --- a/modulefiles/ufs_wcoss_cray +++ /dev/null @@ -1,72 +0,0 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Surge and Luna (WCOSS Cray) - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on the Cray side of WCOSS" -} - -module-whatis "loads NEMS FV3 prerequisites on Surge and Luna" - -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## -module load PrgEnv-intel -module rm intel -module load intel/18.1.163 -module rm NetCDF-intel-sandybridge/4.2 -module load xt-lsfhpc/9.1.3 -module load craype-haswell -module load python/3.6.3 -module load gcc/5.3.0 - -module use /usrx/local/dev/modulefiles -module load NetCDF-intel-sandybridge/4.7.4 -module load HDF5-parallel-intel-sandybridge/1.10.6 - -## WCOSS cray for WW3 -module load jasper-gnu-sandybridge/1.900.1 -module load png-intel-sandybridge/1.2.49 -module load zlib-intel-sandybridge/1.2.7 -setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge - -## -## NCEP libraries -## -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules -module load pio/2.5.2 -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.10.0 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 - -## WCOSS Cray execution prereqs: -module load rca -module load alps -module load xpmem -module load gni-headers -module load udreg -module load ugni - -module load esmf/8.3.0b09 -module load fms/2021.04 - -module swap pmi pmi/5.0.11 - -## -## load cmake -## -prepend-path PATH /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/cmake/cmake-3.20.1-linux-x86_64/bin -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform wcoss_cray diff --git a/modulefiles/ufs_wcoss_cray_debug b/modulefiles/ufs_wcoss_cray_debug deleted file mode 100644 index 264e210d83..0000000000 --- a/modulefiles/ufs_wcoss_cray_debug +++ /dev/null @@ -1,72 +0,0 @@ -#%Module###################################################################### -## -## NEMS FV3 Prerequisites: Surge and Luna (WCOSS Cray) - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running FV3 under NEMS on the Cray side of WCOSS" -} - -module-whatis "loads NEMS FV3 prerequisites on Surge and Luna" - -# NOTE: the "module purge" and loading of the module command are -# handled by the module-setup.sh (or .csh) script. - -## -## load programming environment -## this typically includes compiler, MPI and job scheduler -## -module load PrgEnv-intel -module rm intel -module load intel/18.1.163 -module rm NetCDF-intel-sandybridge/4.2 -module load xt-lsfhpc/9.1.3 -module load craype-haswell -module load python/3.6.3 -module load gcc/5.3.0 - -module use /usrx/local/dev/modulefiles -module load NetCDF-intel-sandybridge/4.7.4 -module load HDF5-parallel-intel-sandybridge/1.10.6 - -## WCOSS cray for WW3 -module load jasper-gnu-sandybridge/1.900.1 -module load png-intel-sandybridge/1.2.49 -module load zlib-intel-sandybridge/1.2.7 -setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge - -## -## NCEP libraries -## -module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules -module load pio/2.5.2 -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.10.0 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 - -## WCOSS Cray execution prereqs: -module load rca -module load alps -module load xpmem -module load gni-headers -module load udreg -module load ugni - -module load esmf/8.3.0b09-debug -module load fms/2021.04 - -module swap pmi pmi/5.0.11 - -## -## load cmake -## -prepend-path PATH /gpfs/hps3/emc/nems/noscrub/emc.nemspara/soft/cmake/cmake-3.20.1-linux-x86_64/bin -setenv CC cc -setenv CXX CC -setenv FC ftn -setenv CMAKE_Platform wcoss_cray diff --git a/modulefiles/ufs_wcoss_dell_p3 b/modulefiles/ufs_wcoss_dell_p3 deleted file mode 100644 index 817339afa3..0000000000 --- a/modulefiles/ufs_wcoss_dell_p3 +++ /dev/null @@ -1,28 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" -} - -module-whatis "loads UFS Model prerequisites on Venus and Mars" - -module load ips/18.0.5.274 -module load impi/18.0.1 -module load lsf/10.1 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 -module load cmake/3.20.0 -module load hpc-ips/18.0.5.274 -module load hpc-impi/18.0.1 - -module load ufs_common - -setenv I_MPI_DAPL_UD 1 - -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform wcoss_dell_p3 diff --git a/modulefiles/ufs_wcoss_dell_p3_debug b/modulefiles/ufs_wcoss_dell_p3_debug deleted file mode 100644 index 75a4678a67..0000000000 --- a/modulefiles/ufs_wcoss_dell_p3_debug +++ /dev/null @@ -1,27 +0,0 @@ -#%Module - -proc ModulesHelp {} { - puts stderr "\tcit - loads modules required for building and running UFS Model on the Dell side of WCOSS" -} - -module-whatis "loads UFS Model prerequisites on Venus and Mars" - -module load ips/18.0.5.274 -module load impi/18.0.1 -module load lsf/10.1 -module load python/3.6.3 - -module use /usrx/local/nceplibs/dev/hpc-stack/libs/hpc-stack/modulefiles/stack - -module load hpc/1.1.0 -module load cmake/3.20.0 -module load hpc-ips/18.0.5.274 -module load hpc-impi/18.0.1 - -module load ufs_common_debug - -setenv I_MPI_DAPL_UD 1 -setenv CC mpiicc -setenv CXX mpiicpc -setenv FC mpiifort -setenv CMAKE_Platform wcoss_dell_p3 diff --git a/stochastic_physics b/stochastic_physics index 5232846c2c..3bfa4468d8 160000 --- a/stochastic_physics +++ b/stochastic_physics @@ -1 +1 @@ -Subproject commit 5232846c2cae2b37b891f220c11dfa4280b46edc +Subproject commit 3bfa4468d85e5b63980c28434f494967f38b10a3 diff --git a/tests/OpnReqTests_control_p8_hera.intel.log b/tests/OpnReqTests_control_p8_hera.intel.log index 6c388501ff..1101bcbd10 100644 --- a/tests/OpnReqTests_control_p8_hera.intel.log +++ b/tests/OpnReqTests_control_p8_hera.intel.log @@ -1,9 +1,9 @@ -Wed Apr 6 20:51:37 UTC 2022 +Mon Nov 28 18:46:50 UTC 2022 Start Operation Requirement Test -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_bit_base +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_bit_base Checking test bit_base control_p8 results .... Moving baseline bit_base control_p8 files .... Moving sfcf000.nc .........OK @@ -51,27 +51,27 @@ Moving baseline bit_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.323130 - 0: The maximum resident set size (KB) = 986108 + 0: The total amount of wall time = 198.045906 + 0: The maximum resident set size (KB) = 1638792 Test bit_base control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dbg_base +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_dbg_base Checking test dbg_base control_p8 results .... Moving baseline dbg_base control_p8 files .... Moving sfcf001.nc .........OK Moving sfcf001.nc .........OK - 0: The total amount of wall time = 188.146796 - 0: The maximum resident set size (KB) = 1133204 + 0: The total amount of wall time = 167.095428 + 0: The maximum resident set size (KB) = 1626948 Test dbg_base control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_dcp +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_dcp Checking test dcp control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -118,14 +118,14 @@ Checking test dcp control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.841330 - 0: The maximum resident set size (KB) = 969344 + 0: The total amount of wall time = 182.350504 + 0: The maximum resident set size (KB) = 1596724 Test dcp control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_fhz +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_fhz Checking test fhz control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -168,14 +168,14 @@ Checking test fhz control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.502760 - 0: The maximum resident set size (KB) = 969984 + 0: The total amount of wall time = 165.511111 + 0: The maximum resident set size (KB) = 1604020 Test fhz control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_mpi +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_mpi Checking test mpi control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -222,14 +222,14 @@ Checking test mpi control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 312.284807 - 0: The maximum resident set size (KB) = 1042144 + 0: The total amount of wall time = 277.049093 + 0: The maximum resident set size (KB) = 1669136 Test mpi control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_rst +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_rst Checking test rst control_p8 results .... Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -268,14 +268,14 @@ Checking test rst control_p8 results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing sfcf024.nc .........OK - 0: The total amount of wall time = 101.337361 - 0: The maximum resident set size (KB) = 748452 + 0: The total amount of wall time = 86.326613 + 0: The maximum resident set size (KB) = 861168 Test rst control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_std_base +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_std_base Checking test std_base control_p8 results .... Moving baseline std_base control_p8 files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base control_p8 files .... Moving RESTART/sfc_data.tile5.nc .........OK Moving RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.568003 - 0: The maximum resident set size (KB) = 974524 + 0: The total amount of wall time = 164.159141 + 0: The maximum resident set size (KB) = 1599776 Test std_base control_p8 PASS -baseline dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp4/Dustin.Swales/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base -working dir = /scratch2/BMC/ome/Dustin.Swales/UFS/stmp2/Dustin.Swales/FV3_OPNREQ_TEST/opnReqTest_114926/control_p8_thr +baseline dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/stmp4/Michael.Toy/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base +working dir = /scratch1/BMC/wrfruc/mtoy/git_local/ufs-weather-model/FV3_OPNREQ_TEST/opnReqTest_152217/control_p8_thr Checking test thr control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -377,11 +377,11 @@ Checking test thr control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.746072 - 0: The maximum resident set size (KB) = 1113940 + 0: The total amount of wall time = 185.282825 + 0: The maximum resident set size (KB) = 1651060 Test thr control_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Apr 6 21:51:58 UTC 2022 -Elapsed time: 01h:00m:21s. Have a nice day! +Mon Nov 28 23:19:48 UTC 2022 +Elapsed time: 04h:33m:00s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_bmark_p8_hera.intel.log b/tests/OpnReqTests_cpld_bmark_p8_hera.intel.log index 479b6adffa..c7307cec01 100644 --- a/tests/OpnReqTests_cpld_bmark_p8_hera.intel.log +++ b/tests/OpnReqTests_cpld_bmark_p8_hera.intel.log @@ -1,15 +1,15 @@ -Fri Jan 7 16:13:28 UTC 2022 +Fri Feb 10 15:59:04 UTC 2023 Start Operation Requirement Test -Compile std elapsed time 431 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_21817/cpld_bmark_p8_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_266262/cpld_bmark_p8_dcp Checking test dcp cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -48,21 +48,79 @@ Checking test dcp cpld_bmark_p8 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1061.233846 - 0: The maximum resident set size (KB) = 1396392 + 0: The total amount of wall time = 736.363564 + 0: The maximum resident set size (KB) = 4032664 Test dcp cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_21817/cpld_bmark_p8_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_266262/cpld_bmark_p8_rst +Checking test rst cpld_bmark_p8 results .... + Comparing 20130401.060000.out_grd.ww3 .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 483.459018 + 0: The maximum resident set size (KB) = 3971804 + +Test rst cpld_bmark_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_266262/cpld_bmark_p8_std_base Checking test std_base cpld_bmark_p8 results .... Moving baseline std_base cpld_bmark_p8 files .... Moving sfcf006.nc .........OK Moving atmf006.nc .........OK - Moving 20130401.060000.out_grd.gwes_30m .........OK - Moving 20130401.060000.out_pnt.points .........OK + Moving GFSFLX.GrbF06 .........OK + Moving GFSPRS.GrbF06 .........OK + Moving gocart.inst_aod.20130401_0600z.nc4 .........OK Moving RESTART/coupler.res .........OK Moving RESTART/fv_core.res.nc .........OK Moving RESTART/fv_core.res.tile1.nc .........OK @@ -101,20 +159,23 @@ Moving baseline std_base cpld_bmark_p8 files .... Moving RESTART/MOM.res_3.nc .........OK Moving RESTART/iced.2013-04-01-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Moving 20130401.060000.out_pnt.ww3 .........OK + Moving 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1081.300718 - 0: The maximum resident set size (KB) = 1401732 + 0: The total amount of wall time = 752.788090 + 0: The maximum resident set size (KB) = 4027208 Test std_base cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Denise.Worthen/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_OPNREQ_TEST/opnReqTest_21817/cpld_bmark_p8_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Zachary.Shrader/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_bmark_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Zachary.Shrader/FV3_OPNREQ_TEST/opnReqTest_266262/cpld_bmark_p8_thr Checking test thr cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -153,12 +214,14 @@ Checking test thr cpld_bmark_p8 results .... Comparing RESTART/MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 865.097270 - 0: The maximum resident set size (KB) = 1378960 + 0: The total amount of wall time = 631.129328 + 0: The maximum resident set size (KB) = 4322436 Test thr cpld_bmark_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 7 17:32:38 UTC 2022 -Elapsed time: 01h:19m:11s. Have a nice day! +Fri Feb 10 19:12:54 UTC 2023 +Elapsed time: 03h:13m:51s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_ciceC_p8_hera.intel.log b/tests/OpnReqTests_cpld_control_ciceC_p8_hera.intel.log new file mode 100644 index 0000000000..84134b61c8 --- /dev/null +++ b/tests/OpnReqTests_cpld_control_ciceC_p8_hera.intel.log @@ -0,0 +1,404 @@ +Tue Aug 2 23:28:16 UTC 2022 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_dbg_base +Checking test dbg_base cpld_control_ciceC_p8 results .... +Moving baseline dbg_base cpld_control_ciceC_p8 files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 644.645606 + 0: The maximum resident set size (KB) = 3254100 + +Test dbg_base cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_dcp +Checking test dcp cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 350.619634 + 0: The maximum resident set size (KB) = 3167564 + +Test dcp cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_fhz +Checking test fhz cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc ............ALT CHECK......OK + Comparing sfcf021.tile2.nc ............ALT CHECK......OK + Comparing sfcf021.tile3.nc ............ALT CHECK......OK + Comparing sfcf021.tile4.nc ............ALT CHECK......OK + Comparing sfcf021.tile5.nc ............ALT CHECK......OK + Comparing sfcf021.tile6.nc ............ALT CHECK......OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 336.897470 + 0: The maximum resident set size (KB) = 3184344 + +Test fhz cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_rst +Checking test rst cpld_control_ciceC_p8 results .... + Comparing 20210323.060000.out_grd.ww3 .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + + 0: The total amount of wall time = 188.164869 + 0: The maximum resident set size (KB) = 3055564 + +Test rst cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_std_base +Checking test std_base cpld_control_ciceC_p8 results .... +Moving baseline std_base cpld_control_ciceC_p8 files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 341.573667 + 0: The maximum resident set size (KB) = 3177368 + +Test std_base cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_ciceC_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_122594/cpld_control_ciceC_p8_thr +Checking test thr cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 383.352023 + 0: The maximum resident set size (KB) = 3738064 + +Test thr cpld_control_ciceC_p8 PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Wed Aug 3 01:06:00 UTC 2022 +Elapsed time: 01h:37m:45s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_p8_hera.intel.log b/tests/OpnReqTests_cpld_control_p8_hera.intel.log index 4e150f4f20..487aed38db 100644 --- a/tests/OpnReqTests_cpld_control_p8_hera.intel.log +++ b/tests/OpnReqTests_cpld_control_p8_hera.intel.log @@ -1,10 +1,70 @@ -Fri Jan 21 21:39:09 UTC 2022 +Wed Aug 3 01:42:33 UTC 2022 Start Operation Requirement Test -Compile std elapsed time 426 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_32523/cpld_control_p8_dcp +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_dbg_base +Checking test dbg_base cpld_control_p8 results .... +Moving baseline dbg_base cpld_control_p8 files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 645.202686 + 0: The maximum resident set size (KB) = 3260616 + +Test dbg_base cpld_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_dcp Checking test dcp cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -30,6 +90,7 @@ Checking test dcp cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -65,18 +126,17 @@ Checking test dcp cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.661495 - 0: The maximum resident set size (KB) = 620508 + 0: The total amount of wall time = 360.946753 + 0: The maximum resident set size (KB) = 3161016 Test dcp cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_32523/cpld_control_p8_fhz +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_fhz Checking test fhz cpld_control_p8 results .... Comparing sfcf021.tile1.nc ............ALT CHECK......OK Comparing sfcf021.tile2.nc ............ALT CHECK......OK @@ -90,6 +150,7 @@ Checking test fhz cpld_control_p8 results .... Comparing atmf021.tile4.nc .........OK Comparing atmf021.tile5.nc .........OK Comparing atmf021.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -125,18 +186,77 @@ Checking test fhz cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 209.405067 - 0: The maximum resident set size (KB) = 631364 + 0: The total amount of wall time = 337.696992 + 0: The maximum resident set size (KB) = 3178480 Test fhz cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_32523/cpld_control_p8_std_base +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_rst +Checking test rst cpld_control_p8 results .... + Comparing 20210323.060000.out_grd.ww3 .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + + 0: The total amount of wall time = 189.927540 + 0: The maximum resident set size (KB) = 3049680 + +Test rst cpld_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_std_base Checking test std_base cpld_control_p8 results .... Moving baseline std_base cpld_control_p8 files .... Moving sfcf021.tile1.nc .........OK @@ -163,6 +283,7 @@ Moving baseline std_base cpld_control_p8 files .... Moving atmf024.tile4.nc .........OK Moving atmf024.tile5.nc .........OK Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK Moving RESTART/coupler.res .........OK Moving RESTART/fv_core.res.nc .........OK Moving RESTART/fv_core.res.tile1.nc .........OK @@ -198,18 +319,17 @@ Moving baseline std_base cpld_control_p8 files .... Moving RESTART/MOM.res.nc .........OK Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Moving 20210323.060000.out_grd.glo_1deg .........OK - Moving 20210323.060000.out_pnt.points .........OK - Moving 20210323.060000.restart.glo_1deg .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 207.966592 - 0: The maximum resident set size (KB) = 628896 + 0: The total amount of wall time = 337.201936 + 0: The maximum resident set size (KB) = 3181060 Test std_base cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/stmp4/Minsuk.Ji/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base -working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_OPNREQ_TEST/opnReqTest_32523/cpld_control_p8_thr +baseline dir = /scratch1/NCEPDEV/stmp4/Jessica.Meixner/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_std_base +working dir = /scratch1/NCEPDEV/stmp2/Jessica.Meixner/FV3_OPNREQ_TEST/opnReqTest_290168/cpld_control_p8_thr Checking test thr cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -235,6 +355,7 @@ Checking test thr cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -270,15 +391,14 @@ Checking test thr cpld_control_p8 results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 240.240599 - 0: The maximum resident set size (KB) = 690472 + 0: The total amount of wall time = 387.921682 + 0: The maximum resident set size (KB) = 3738736 Test thr cpld_control_p8 PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Fri Jan 21 22:35:02 UTC 2022 -Elapsed time: 00h:55m:54s. Have a nice day! +Wed Aug 3 03:21:08 UTC 2022 +Elapsed time: 01h:38m:35s. Have a nice day! diff --git a/tests/OpnReqTests_cpld_control_p8_mixedmode_hera.intel.log b/tests/OpnReqTests_cpld_control_p8_mixedmode_hera.intel.log new file mode 100644 index 0000000000..4c8af2e914 --- /dev/null +++ b/tests/OpnReqTests_cpld_control_p8_mixedmode_hera.intel.log @@ -0,0 +1,404 @@ +Fri Dec 9 14:42:05 UTC 2022 +Start Operation Requirement Test + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_dbg_base +Checking test dbg_base cpld_control_p8_mixedmode results .... +Moving baseline dbg_base cpld_control_p8_mixedmode files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 643.124271 + 0: The maximum resident set size (KB) = 3207892 + +Test dbg_base cpld_control_p8_mixedmode PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_std_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_dcp +Checking test dcp cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 317.910772 + 0: The maximum resident set size (KB) = 3116692 + +Test dcp cpld_control_p8_mixedmode PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_std_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_fhz +Checking test fhz cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc ............ALT CHECK......OK + Comparing sfcf021.tile2.nc ............ALT CHECK......OK + Comparing sfcf021.tile3.nc ............ALT CHECK......OK + Comparing sfcf021.tile4.nc ............ALT CHECK......OK + Comparing sfcf021.tile5.nc ............ALT CHECK......OK + Comparing sfcf021.tile6.nc ............ALT CHECK......OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 298.644708 + 0: The maximum resident set size (KB) = 3138260 + +Test fhz cpld_control_p8_mixedmode PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_std_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_rst +Checking test rst cpld_control_p8_mixedmode results .... + Comparing 20210323.060000.out_grd.ww3 .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + + 0: The total amount of wall time = 188.299914 + 0: The maximum resident set size (KB) = 3002872 + +Test rst cpld_control_p8_mixedmode PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_std_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_std_base +Checking test std_base cpld_control_p8_mixedmode results .... +Moving baseline std_base cpld_control_p8_mixedmode files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/coupler.res .........OK + Moving RESTART/fv_core.res.nc .........OK + Moving RESTART/fv_core.res.tile1.nc .........OK + Moving RESTART/fv_core.res.tile2.nc .........OK + Moving RESTART/fv_core.res.tile3.nc .........OK + Moving RESTART/fv_core.res.tile4.nc .........OK + Moving RESTART/fv_core.res.tile5.nc .........OK + Moving RESTART/fv_core.res.tile6.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/fv_tracer.res.tile1.nc .........OK + Moving RESTART/fv_tracer.res.tile2.nc .........OK + Moving RESTART/fv_tracer.res.tile3.nc .........OK + Moving RESTART/fv_tracer.res.tile4.nc .........OK + Moving RESTART/fv_tracer.res.tile5.nc .........OK + Moving RESTART/fv_tracer.res.tile6.nc .........OK + Moving RESTART/phy_data.tile1.nc .........OK + Moving RESTART/phy_data.tile2.nc .........OK + Moving RESTART/phy_data.tile3.nc .........OK + Moving RESTART/phy_data.tile4.nc .........OK + Moving RESTART/phy_data.tile5.nc .........OK + Moving RESTART/phy_data.tile6.nc .........OK + Moving RESTART/sfc_data.tile1.nc .........OK + Moving RESTART/sfc_data.tile2.nc .........OK + Moving RESTART/sfc_data.tile3.nc .........OK + Moving RESTART/sfc_data.tile4.nc .........OK + Moving RESTART/sfc_data.tile5.nc .........OK + Moving RESTART/sfc_data.tile6.nc .........OK + Moving RESTART/MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 296.158151 + 0: The maximum resident set size (KB) = 3143420 + +Test std_base cpld_control_p8_mixedmode PASS + + +baseline dir = /scratch1/NCEPDEV/stmp4/Bin.Li/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_p8_mixedmode_std_base +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_OPNREQ_TEST/opnReqTest_299984/cpld_control_p8_mixedmode_thr +Checking test thr cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 345.138451 + 0: The maximum resident set size (KB) = 3688560 + +Test thr cpld_control_p8_mixedmode PASS + +OPERATION REQUIREMENT TEST WAS SUCCESSFUL +Fri Dec 9 15:50:26 UTC 2022 +Elapsed time: 01h:08m:22s. Have a nice day! diff --git a/tests/RegressionTests_acorn.intel.log b/tests/RegressionTests_acorn.intel.log new file mode 100644 index 0000000000..07ba40a52d --- /dev/null +++ b/tests/RegressionTests_acorn.intel.log @@ -0,0 +1,4203 @@ +Thu Mar 2 15:21:43 UTC 2023 +Start Regression test + +Compile 001 elapsed time 1290 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 991 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 745 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 476 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 474 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 705 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 007 elapsed time 453 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 652 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 009 elapsed time 1109 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 199 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 151 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 177 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 472 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 017 elapsed time 284 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 574 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 630 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 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 021 elapsed time 84 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 023 elapsed time 482 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 443 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 739 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 365 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 334.481076 +The maximum resident set size (KB) = 2952152 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 257.957004 +The maximum resident set size (KB) = 1584784 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 384.476552 +The maximum resident set size (KB) = 2978768 + +Test 003 cpld_control_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 231.229181 +The maximum resident set size (KB) = 2863192 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 373.040622 +The maximum resident set size (KB) = 3279224 + +Test 005 cpld_2threads_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 378.100860 +The maximum resident set size (KB) = 2976796 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 316.076532 +The maximum resident set size (KB) = 2905832 + +Test 007 cpld_mpi_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 383.555890 +The maximum resident set size (KB) = 2979144 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8 +Checking test 009 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 281.463877 +The maximum resident set size (KB) = 1568704 + +Test 009 cpld_control_noaero_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_nowave_noaero_p8 +Checking test 010 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 297.275233 +The maximum resident set size (KB) = 1630984 + +Test 010 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_noaero_p8_agrid +Checking test 011 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 305.075184 +The maximum resident set size (KB) = 1621088 + +Test 011 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_control_c48 +Checking test 012 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 432.771289 +The maximum resident set size (KB) = 2627756 + +Test 012 cpld_control_c48 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_warmstart_c48 +Checking test 013 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +The total amount of wall time = 119.298226 +The maximum resident set size (KB) = 2647060 + +Test 013 cpld_warmstart_c48 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/cpld_restart_c48 +Checking test 014 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +The total amount of wall time = 65.665141 +The maximum resident set size (KB) = 2066656 + +Test 014 cpld_restart_c48 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid +Checking test 015 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + +The total amount of wall time = 129.158615 +The maximum resident set size (KB) = 516980 + +Test 015 control_CubedSphereGrid PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_latlon +Checking test 016 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 131.358279 +The maximum resident set size (KB) = 516492 + +Test 016 control_latlon PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel +Checking test 017 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 133.437593 +The maximum resident set size (KB) = 518624 + +Test 017 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c48 +Checking test 018 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.010012 +The maximum resident set size (KB) = 672008 + +Test 018 control_c48 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c192 +Checking test 019 control_c192 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 528.183770 +The maximum resident set size (KB) = 612132 + +Test 019 control_c192 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384 +Checking test 020 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 570.427390 +The maximum resident set size (KB) = 910064 + +Test 020 control_c384 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_c384gdas +Checking test 021 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 499.590885 +The maximum resident set size (KB) = 1041152 + +Test 021 control_c384gdas PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy +Checking test 022 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 89.085162 +The maximum resident set size (KB) = 518488 + +Test 022 control_stochy PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_restart +Checking test 023 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 48.216003 +The maximum resident set size (KB) = 291772 + +Test 023 control_stochy_restart PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp +Checking test 024 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 82.509418 +The maximum resident set size (KB) = 520600 + +Test 024 control_lndp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr4 +Checking test 025 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 135.098192 +The maximum resident set size (KB) = 519660 + +Test 025 control_iovr4 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_iovr5 +Checking test 026 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 135.275418 +The maximum resident set size (KB) = 514692 + +Test 026 control_iovr5 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8 +Checking test 027 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 179.329315 +The maximum resident set size (KB) = 1480712 + +Test 027 control_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_lndp +Checking test 028 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +The total amount of wall time = 319.242320 +The maximum resident set size (KB) = 1479676 + +Test 028 control_p8_lndp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_restart_p8 +Checking test 029 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 97.924220 +The maximum resident set size (KB) = 654744 + +Test 029 control_restart_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_decomp_p8 +Checking test 030 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 180.385708 +The maximum resident set size (KB) = 1478480 + +Test 030 control_decomp_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_2threads_p8 +Checking test 031 control_2threads_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 159.425838 +The maximum resident set size (KB) = 1565628 + +Test 031 control_2threads_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_rrtmgp +Checking test 032 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 233.111321 +The maximum resident set size (KB) = 1541564 + +Test 032 control_p8_rrtmgp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/merra2_thompson +Checking test 033 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 202.611338 +The maximum resident set size (KB) = 1496256 + +Test 033 merra2_thompson PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_control +Checking test 034 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 287.231767 +The maximum resident set size (KB) = 653852 + +Test 034 regional_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_restart +Checking test 035 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 153.632906 +The maximum resident set size (KB) = 650324 + +Test 035 regional_restart PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_decomp +Checking test 036 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 303.668238 +The maximum resident set size (KB) = 655244 + +Test 036 regional_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2threads +Checking test 037 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 179.474370 +The maximum resident set size (KB) = 696628 + +Test 037 regional_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_noquilt +Checking test 038 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 311.172013 +The maximum resident set size (KB) = 645260 + +Test 038 regional_noquilt PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_2dwrtdecomp +Checking test 039 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 286.956231 +The maximum resident set size (KB) = 650296 + +Test 039 regional_2dwrtdecomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_wofs +Checking test 040 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 361.629575 +The maximum resident set size (KB) = 340444 + +Test 040 regional_wofs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control +Checking test 041 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 420.070839 +The maximum resident set size (KB) = 894496 + +Test 041 rap_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb +Checking test 042 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 284.555017 +The maximum resident set size (KB) = 982396 + +Test 042 regional_spp_sppt_shum_skeb PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_decomp +Checking test 043 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 432.746571 +The maximum resident set size (KB) = 890064 + +Test 043 rap_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads +Checking test 044 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 391.758371 +The maximum resident set size (KB) = 963104 + +Test 044 rap_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart +Checking test 045 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 212.763103 +The maximum resident set size (KB) = 644212 + +Test 045 rap_restart PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff +Checking test 046 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 415.671199 +The maximum resident set size (KB) = 894088 + +Test 046 rap_sfcdiff PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_decomp +Checking test 047 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 432.058084 +The maximum resident set size (KB) = 891032 + +Test 047 rap_sfcdiff_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_restart +Checking test 048 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 309.645106 +The maximum resident set size (KB) = 641552 + +Test 048 rap_sfcdiff_restart PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control +Checking test 049 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 400.572383 +The maximum resident set size (KB) = 893116 + +Test 049 hrrr_control PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp +Checking test 050 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 413.368700 +The maximum resident set size (KB) = 888484 + +Test 050 hrrr_control_decomp PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads +Checking test 051 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 370.466919 +The maximum resident set size (KB) = 961068 + +Test 051 hrrr_control_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart +Checking test 052 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 298.050564 +The maximum resident set size (KB) = 638872 + +Test 052 hrrr_control_restart PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta +Checking test 053 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 409.729662 +The maximum resident set size (KB) = 890724 + +Test 053 rrfs_v1beta PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl +Checking test 054 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 473.105497 +The maximum resident set size (KB) = 574808 + +Test 054 rrfs_v1nssl PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1nssl_nohailnoccn +Checking test 055 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 464.073847 +The maximum resident set size (KB) = 566904 + +Test 055 rrfs_v1nssl_nohailnoccn PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm +Checking test 056 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 114.055415 +The maximum resident set size (KB) = 763364 + +Test 056 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 125.886151 +The maximum resident set size (KB) = 774232 + +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm +Checking test 058 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 113.981904 +The maximum resident set size (KB) = 762344 + +Test 058 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_2threads +Checking test 059 rrfs_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 83.199050 +The maximum resident set size (KB) = 761068 + +Test 059 rrfs_conus13km_hrrr_warm_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_2threads +Checking test 060 rrfs_conus13km_radar_tten_warm_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 84.091555 +The maximum resident set size (KB) = 761980 + +Test 060 rrfs_conus13km_radar_tten_warm_2threads PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg +Checking test 061 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 347.199857 +The maximum resident set size (KB) = 587476 + +Test 061 control_csawmg PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt +Checking test 062 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 342.273681 +The maximum resident set size (KB) = 584264 + +Test 062 control_csawmgt PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras +Checking test 063 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 180.943794 +The maximum resident set size (KB) = 551480 + +Test 063 control_ras PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam +Checking test 064 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +The total amount of wall time = 117.214769 +The maximum resident set size (KB) = 270648 + +Test 064 control_wam PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_hrrr_warm_debug +Checking test 065 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 781.535028 +The maximum resident set size (KB) = 790528 + +Test 065 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_conus13km_radar_tten_warm_debug +Checking test 066 rrfs_conus13km_radar_tten_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 782.697806 +The maximum resident set size (KB) = 790052 + +Test 066 rrfs_conus13km_radar_tten_warm_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +The total amount of wall time = 166.713904 +The maximum resident set size (KB) = 676512 + +Test 067 control_CubedSphereGrid_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 159.881383 +The maximum resident set size (KB) = 673872 + +Test 068 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_stochy_debug +Checking test 069 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 180.405845 +The maximum resident set size (KB) = 681888 + +Test 069 control_stochy_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_lndp_debug +Checking test 070 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 161.769097 +The maximum resident set size (KB) = 679956 + +Test 070 control_lndp_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 256.711065 +The maximum resident set size (KB) = 715940 + +Test 071 control_csawmg_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 252.279167 +The maximum resident set size (KB) = 717584 + +Test 072 control_csawmgt_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_ras_debug +Checking test 073 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 163.026489 +The maximum resident set size (KB) = 685668 + +Test 073 control_ras_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_diag_debug +Checking test 074 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 164.885135 +The maximum resident set size (KB) = 735780 + +Test 074 control_diag_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_debug_p8 +Checking test 075 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 185.377153 +The maximum resident set size (KB) = 1495768 + +Test 075 control_debug_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_debug +Checking test 076 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1040.923624 +The maximum resident set size (KB) = 675436 + +Test 076 regional_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug +Checking test 077 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 298.407909 +The maximum resident set size (KB) = 1053816 + +Test 077 rap_control_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug +Checking test 078 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.892020 +The maximum resident set size (KB) = 1050012 + +Test 078 hrrr_control_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_drag_suite_debug +Checking test 079 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 296.711943 +The maximum resident set size (KB) = 1053164 + +Test 079 rap_unified_drag_suite_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_diag_debug +Checking test 080 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 309.738316 +The maximum resident set size (KB) = 1137036 + +Test 080 rap_diag_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_cires_ugwp_debug +Checking test 081 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 306.876266 +The maximum resident set size (KB) = 1050148 + +Test 081 rap_cires_ugwp_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_unified_ugwp_debug +Checking test 082 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 304.754285 +The maximum resident set size (KB) = 1051244 + +Test 082 rap_unified_ugwp_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_lndp_debug +Checking test 083 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 301.109413 +The maximum resident set size (KB) = 1053308 + +Test 083 rap_lndp_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_flake_debug +Checking test 084 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.582210 +The maximum resident set size (KB) = 1049912 + +Test 084 rap_flake_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_progcld_thompson_debug +Checking test 085 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 298.504472 +The maximum resident set size (KB) = 1051704 + +Test 085 rap_progcld_thompson_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_debug +Checking test 086 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.644683 +The maximum resident set size (KB) = 1047532 + +Test 086 rap_noah_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_sfcdiff_debug +Checking test 087 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.172985 +The maximum resident set size (KB) = 1051596 + +Test 087 rap_sfcdiff_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 487.865717 +The maximum resident set size (KB) = 1048928 + +Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rrfs_v1beta_debug +Checking test 089 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.855801 +The maximum resident set size (KB) = 1048412 + +Test 089 rrfs_v1beta_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_wam_debug +Checking test 090 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +The total amount of wall time = 300.016643 +The maximum resident set size (KB) = 302804 + +Test 090 control_wam_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 269.007024 +The maximum resident set size (KB) = 882996 + +Test 091 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn32_phy32 +Checking test 092 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 341.349279 +The maximum resident set size (KB) = 777900 + +Test 092 rap_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_dyn32_phy32 +Checking test 093 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 183.251391 +The maximum resident set size (KB) = 773240 + +Test 093 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_2threads_dyn32_phy32 +Checking test 094 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 319.640708 +The maximum resident set size (KB) = 830044 + +Test 094 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_2threads_dyn32_phy32 +Checking test 095 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 173.488743 +The maximum resident set size (KB) = 829668 + +Test 095 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_decomp_dyn32_phy32 +Checking test 096 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 190.663696 +The maximum resident set size (KB) = 773348 + +Test 096 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_restart_dyn32_phy32 +Checking test 097 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 256.107888 +The maximum resident set size (KB) = 613992 + +Test 097 rap_restart_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_restart_dyn32_phy32 +Checking test 098 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 94.909814 +The maximum resident set size (KB) = 608028 + +Test 098 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32 +Checking test 099 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 232.052345 +The maximum resident set size (KB) = 799368 + +Test 099 rap_control_dyn64_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_debug_dyn32_phy32 +Checking test 100 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 289.908722 +The maximum resident set size (KB) = 937040 + +Test 100 rap_control_debug_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hrrr_control_debug_dyn32_phy32 +Checking test 101 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 285.267615 +The maximum resident set size (KB) = 936956 + +Test 101 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/rap_control_dyn64_phy32_debug +Checking test 102 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 292.911015 +The maximum resident set size (KB) = 955148 + +Test 102 rap_control_dyn64_phy32_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm +Checking test 103 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + +The total amount of wall time = 265.064159 +The maximum resident set size (KB) = 822880 + +Test 103 hafs_regional_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_thompson_gfdlsf +Checking test 104 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +The total amount of wall time = 303.250403 +The maximum resident set size (KB) = 1180404 + +Test 104 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn +Checking test 105 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 385.547911 +The maximum resident set size (KB) = 852396 + +Test 105 hafs_regional_atm_ocn PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_wav +Checking test 106 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 705.788910 +The maximum resident set size (KB) = 883720 + +Test 106 hafs_regional_atm_wav PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_atm_ocn_wav +Checking test 107 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 900.309232 +The maximum resident set size (KB) = 908680 + +Test 107 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_1nest_atm +Checking test 108 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 + +The total amount of wall time = 327.253644 +The maximum resident set size (KB) = 388876 + +Test 108 hafs_regional_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_telescopic_2nests_atm +Checking test 109 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + +The total amount of wall time = 396.765267 +The maximum resident set size (KB) = 413440 + +Test 109 hafs_regional_telescopic_2nests_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_1nest_atm +Checking test 110 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 + +The total amount of wall time = 165.112841 +The maximum resident set size (KB) = 267420 + +Test 110 hafs_global_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_multiple_4nests_atm +Checking test 111 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + +The total amount of wall time = 485.555925 +The maximum resident set size (KB) = 336932 + +Test 111 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_specified_moving_1nest_atm +Checking test 112 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + +The total amount of wall time = 212.305679 +The maximum resident set size (KB) = 400212 + +Test 112 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm +Checking test 113 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 + +The total amount of wall time = 200.800962 +The maximum resident set size (KB) = 399032 + +Test 113 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn +Checking test 114 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + +The total amount of wall time = 238.407121 +The maximum resident set size (KB) = 451652 + +Test 114 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_global_storm_following_1nest_atm +Checking test 115 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 + +The total amount of wall time = 78.744061 +The maximum resident set size (KB) = 277000 + +Test 115 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 116 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + +The total amount of wall time = 797.170440 +The maximum resident set size (KB) = 477196 + +Test 116 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 117 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + +The total amount of wall time = 522.100472 +The maximum resident set size (KB) = 525720 + +Test 117 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn +Checking test 118 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 368.849374 +The maximum resident set size (KB) = 855520 + +Test 118 hafs_regional_docn PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_docn_oisst +Checking test 119 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 369.771626 +The maximum resident set size (KB) = 841704 + +Test 119 hafs_regional_docn_oisst PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/hafs_regional_datm_cdeps +Checking test 120 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 + +The total amount of wall time = 945.048965 +The maximum resident set size (KB) = 839616 + +Test 120 hafs_regional_datm_cdeps PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_cfsr +Checking test 121 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 140.684245 +The maximum resident set size (KB) = 731780 + +Test 121 datm_cdeps_control_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_restart_cfsr +Checking test 122 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 85.711932 +The maximum resident set size (KB) = 727096 + +Test 122 datm_cdeps_restart_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_control_gefs +Checking test 123 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 133.426149 +The maximum resident set size (KB) = 621628 + +Test 123 datm_cdeps_control_gefs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_iau_gefs +Checking test 124 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 136.157042 +The maximum resident set size (KB) = 615736 + +Test 124 datm_cdeps_iau_gefs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_stochy_gefs +Checking test 125 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 138.117223 +The maximum resident set size (KB) = 611940 + +Test 125 datm_cdeps_stochy_gefs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_ciceC_cfsr +Checking test 126 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 140.297758 +The maximum resident set size (KB) = 732944 + +Test 126 datm_cdeps_ciceC_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_cfsr +Checking test 127 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 141.305456 +The maximum resident set size (KB) = 731540 + +Test 127 datm_cdeps_bulk_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_bulk_gefs +Checking test 128 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 133.878019 +The maximum resident set size (KB) = 614104 + +Test 128 datm_cdeps_bulk_gefs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_cfsr +Checking test 129 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +The total amount of wall time = 426.907088 +The maximum resident set size (KB) = 573748 + +Test 129 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_mx025_gefs +Checking test 130 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + +The total amount of wall time = 425.803372 +The maximum resident set size (KB) = 547372 + +Test 130 datm_cdeps_mx025_gefs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_multiple_files_cfsr +Checking test 131 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +The total amount of wall time = 141.580909 +The maximum resident set size (KB) = 719648 + +Test 131 datm_cdeps_multiple_files_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_3072x1536_cfsr +Checking test 132 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.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 + +The total amount of wall time = 257.309683 +The maximum resident set size (KB) = 1978688 + +Test 132 datm_cdeps_3072x1536_cfsr PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_gfs +Checking test 133 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 + +The total amount of wall time = 255.740749 +The maximum resident set size (KB) = 1977876 + +Test 133 datm_cdeps_gfs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3 +Checking test 134 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +The total amount of wall time = 22.257961 +The maximum resident set size (KB) = 227448 + +Test 134 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/datm_cdeps_lnd_gswp3_rst +Checking test 135 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK + +The total amount of wall time = 27.177102 +The maximum resident set size (KB) = 232008 + +Test 135 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_p8_atmlnd_sbs +Checking test 136 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 235.586268 +The maximum resident set size (KB) = 1539088 + +Test 136 control_p8_atmlnd_sbs PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/control_atmwav +Checking test 137 control_atmwav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + +The total amount of wall time = 90.130847 +The maximum resident set size (KB) = 545436 + +Test 137 control_atmwav PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8 +Checking test 138 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 244.112610 +The maximum resident set size (KB) = 2811392 + +Test 138 atmaero_control_p8 PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad +Checking test 139 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 283.820829 +The maximum resident set size (KB) = 2876924 + +Test 139 atmaero_control_p8_rad PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/atmaero_control_p8_rad_micro +Checking test 140 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 287.329958 +The maximum resident set size (KB) = 2884692 + +Test 140 atmaero_control_p8_rad_micro PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq +Checking test 141 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 658.516541 +The maximum resident set size (KB) = 1408148 + +Test 141 regional_atmaq PASS + + +baseline dir = /lfs/h1/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_176743/regional_atmaq_debug +Checking test 142 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1433.239613 +The maximum resident set size (KB) = 1440536 + +Test 142 regional_atmaq_debug PASS + + +REGRESSION TEST WAS SUCCESSFUL +Thu Mar 2 16:47:14 UTC 2023 +Elapsed time: 01h:25m:32s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index f2a70e72b2..e8c89bbacc 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,163 +1,68 @@ -Sat May 7 18:55:23 MDT 2022 +Mon Feb 27 16:57:57 MST 2023 Start Regression test -Compile 001 elapsed time 383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 762 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 193 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 499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 278 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 292 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control -Checking test 001 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 275.084690 -0:The maximum resident set size (KB) = 433100 - -Test 001 control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_restart -Checking test 002 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 136.738929 -0:The maximum resident set size (KB) = 182884 - -Test 002 control_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_c48 -Checking test 003 control_c48 results .... +Compile 001 elapsed time 375 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 408 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 882 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 200 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 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1082 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 876 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 894 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 635 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 569 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 384 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 320 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_c48 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_c48 +Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 818.270648 -0:The maximum resident set size (KB) = 669972 - -Test 003 control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_stochy -Checking test 004 control_stochy results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 823.262510 +0:The maximum resident set size (KB) = 681132 + +Test 001 control_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_stochy +Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -167,15 +72,15 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 174.583384 -0:The maximum resident set size (KB) = 427240 +0:The total amount of wall time = 180.983796 +0:The maximum resident set size (KB) = 442676 -Test 004 control_stochy PASS +Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_flake -Checking test 005 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_ras +Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -185,69 +90,15 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 336.712262 -0:The maximum resident set size (KB) = 485688 +0:The total amount of wall time = 297.583148 +0:The maximum resident set size (KB) = 452324 -Test 005 control_flake PASS +Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson -Checking test 006 control_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 374.475126 -0:The maximum resident set size (KB) = 795540 - -Test 006 control_thompson PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_no_aero -Checking test 007 control_thompson_no_aero results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 355.372321 -0:The maximum resident set size (KB) = 789380 - -Test 007 control_thompson_no_aero PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_ras -Checking test 008 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 289.117543 -0:The maximum resident set size (KB) = 446172 - -Test 008 control_ras PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_p8 -Checking test 009 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/control_p8 +Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -260,48 +111,48 @@ Checking test 009 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 318.275785 -0:The maximum resident set size (KB) = 817976 - -Test 009 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_control -Checking test 010 rap_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 318.732670 +0:The maximum resident set size (KB) = 1225600 + +Test 004 control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control +Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -314,48 +165,48 @@ Checking test 010 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 702.942240 -0:The maximum resident set size (KB) = 773920 - -Test 010 rap_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_2threads -Checking test 011 rap_2threads results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 725.292458 +0:The maximum resident set size (KB) = 791720 + +Test 005 rap_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_decomp +Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -368,94 +219,48 @@ Checking test 011 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 1235.750264 -0:The maximum resident set size (KB) = 840896 - -Test 011 rap_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_restart -Checking test 012 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 350.114940 -0:The maximum resident set size (KB) = 521064 - -Test 012 rap_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_sfcdiff -Checking test 013 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 722.774430 +0:The maximum resident set size (KB) = 791180 + +Test 006 rap_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads +Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -468,201 +273,509 @@ Checking test 013 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 704.204408 -0:The maximum resident set size (KB) = 773744 - -Test 013 rap_sfcdiff PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_sfcdiff_restart -Checking test 014 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 669.436970 +0:The maximum resident set size (KB) = 864044 + +Test 007 rap_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart +Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 349.049893 -0:The maximum resident set size (KB) = 521320 - -Test 014 rap_sfcdiff_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/hrrr_control -Checking test 015 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 361.861476 +0:The maximum resident set size (KB) = 538644 + +Test 008 rap_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff +Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 680.737753 -0:The maximum resident set size (KB) = 771432 - -Test 015 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_v1beta + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 716.711690 +0:The maximum resident set size (KB) = 791560 + +Test 009 rap_sfcdiff PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_decomp +Checking test 010 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 728.363535 +0:The maximum resident set size (KB) = 790764 + +Test 010 rap_sfcdiff_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_sfcdiff_restart +Checking test 011 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 535.420171 +0:The maximum resident set size (KB) = 543756 + +Test 011 rap_sfcdiff_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control +Checking test 012 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 694.510998 +0:The maximum resident set size (KB) = 789116 + +Test 012 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads +Checking test 013 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 630.234630 +0:The maximum resident set size (KB) = 858728 + +Test 013 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp +Checking test 014 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 693.216124 +0:The maximum resident set size (KB) = 788588 + +Test 014 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart +Checking test 015 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 516.609234 +0:The maximum resident set size (KB) = 540060 + +Test 015 hrrr_control_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 694.609953 -0:The maximum resident set size (KB) = 771408 + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 706.938909 +0:The maximum resident set size (KB) = 788420 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -671,15 +784,31 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 322.098112 -0:The maximum resident set size (KB) = 592344 +0:The total amount of wall time = 208.471993 +0:The maximum resident set size (KB) = 606668 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_conus13km_radar_tten_warm -Checking test 018 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 230.540906 +0:The maximum resident set size (KB) = 620780 + +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm +Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -687,237 +816,755 @@ Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 324.507478 -0:The maximum resident set size (KB) = 595732 +0:The total amount of wall time = 211.958193 +0:The maximum resident set size (KB) = 609624 -Test 018 rrfs_conus13km_radar_tten_warm PASS +Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_debug -Checking test 019 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rrfs_conus13km_radar_tten_warm_2threads +Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 79.704079 -0:The maximum resident set size (KB) = 424368 +0:The total amount of wall time = 140.603435 +0:The maximum resident set size (KB) = 628868 -Test 019 control_debug PASS +Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_diag_debug -Checking test 020 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 85.951171 -0:The maximum resident set size (KB) = 481256 +0:The total amount of wall time = 94.145720 +0:The maximum resident set size (KB) = 494892 -Test 020 control_diag_debug PASS +Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/regional_debug -Checking test 021 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/regional_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 131.597428 -0:The maximum resident set size (KB) = 536188 +0:The total amount of wall time = 488.927770 +0:The maximum resident set size (KB) = 569176 -Test 021 regional_debug PASS +Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_control_debug -Checking test 022 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 145.457329 -0:The maximum resident set size (KB) = 795940 +0:The total amount of wall time = 159.273127 +0:The maximum resident set size (KB) = 808548 -Test 022 rap_control_debug PASS +Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_diag_debug -Checking test 023 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 154.099763 -0:The maximum resident set size (KB) = 878496 +0:The total amount of wall time = 156.283240 +0:The maximum resident set size (KB) = 804228 -Test 023 rap_diag_debug PASS +Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 024 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 234.638443 -0:The maximum resident set size (KB) = 794932 +0:The total amount of wall time = 166.790856 +0:The maximum resident set size (KB) = 891700 -Test 024 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rap_progcld_thompson_debug -Checking test 025 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 146.050966 -0:The maximum resident set size (KB) = 796348 +0:The total amount of wall time = 244.893080 +0:The maximum resident set size (KB) = 806924 -Test 025 rap_progcld_thompson_debug PASS +Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/rrfs_v1beta_debug -Checking test 026 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 145.239082 -0:The maximum resident set size (KB) = 790820 +0:The total amount of wall time = 157.998629 +0:The maximum resident set size (KB) = 808668 -Test 026 rrfs_v1beta_debug PASS +Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_debug -Checking test 027 control_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 94.611345 -0:The maximum resident set size (KB) = 781992 +0:The total amount of wall time = 156.017946 +0:The maximum resident set size (KB) = 803832 -Test 027 control_thompson_debug PASS +Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_no_aero_debug -Checking test 028 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 91.737487 -0:The maximum resident set size (KB) = 777364 +0:The total amount of wall time = 92.541617 +0:The maximum resident set size (KB) = 449624 -Test 028 control_thompson_no_aero_debug PASS +Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_extdiag_debug -Checking test 029 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 101.377439 -0:The maximum resident set size (KB) = 823308 +0:The total amount of wall time = 98.702633 +0:The maximum resident set size (KB) = 441736 -Test 029 control_thompson_extdiag_debug PASS +Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_thompson_progcld_thompson_debug -Checking test 030 control_thompson_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 94.857181 -0:The maximum resident set size (KB) = 782000 +0:The total amount of wall time = 105.785680 +0:The maximum resident set size (KB) = 1224332 -Test 030 control_thompson_progcld_thompson_debug PASS Tries: 2 +Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_ras_debug -Checking test 031 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 82.780938 -0:The maximum resident set size (KB) = 433912 +0:The total amount of wall time = 392.917788 +0:The maximum resident set size (KB) = 613860 -Test 031 control_ras_debug PASS +Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_stochy_debug -Checking test 032 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 90.307943 -0:The maximum resident set size (KB) = 428164 +0:The total amount of wall time = 391.942575 +0:The maximum resident set size (KB) = 616408 + +Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -Test 032 control_stochy_debug PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 148.628806 +0:The maximum resident set size (KB) = 184480 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_debug_p8 -Checking test 033 control_debug_p8 results .... +Test 034 control_wam_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn32_phy32 +Checking test 035 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 692.578557 +0:The maximum resident set size (KB) = 673032 + +Test 035 rap_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_dyn32_phy32 +Checking test 036 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 354.112274 +0:The maximum resident set size (KB) = 671532 + +Test 036 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_2threads_dyn32_phy32 +Checking test 037 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 628.977110 +0:The maximum resident set size (KB) = 718240 + +Test 037 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_2threads_dyn32_phy32 +Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 325.043418 +0:The maximum resident set size (KB) = 715540 + +Test 038 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_decomp_dyn32_phy32 +Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 354.535034 +0:The maximum resident set size (KB) = 670372 + +Test 039 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_restart_dyn32_phy32 +Checking test 040 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 520.858780 +0:The maximum resident set size (KB) = 510936 + +Test 040 rap_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/hrrr_control_restart_dyn32_phy32 +Checking test 041 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 182.622704 +0:The maximum resident set size (KB) = 507036 + +Test 041 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/rap_control_dyn64_phy32 +Checking test 042 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 413.723932 +0:The maximum resident set size (KB) = 693824 + +Test 042 rap_control_dyn64_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 93.697940 -0:The maximum resident set size (KB) = 807712 +0:The total amount of wall time = 157.248564 +0:The maximum resident set size (KB) = 690664 -Test 033 control_debug_p8 PASS +Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/control_wam_debug -Checking test 034 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 142.964610 -0:The maximum resident set size (KB) = 170916 +0:The total amount of wall time = 155.066421 +0:The maximum resident set size (KB) = 687732 -Test 034 control_wam_debug PASS +Test 044 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/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 = 164.161444 +0:The maximum resident set size (KB) = 710116 + +Test 045 rap_control_dyn64_phy32_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_p8 +Checking test 046 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 513.901268 +0:The maximum resident set size (KB) = 3159288 + +Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/cpld_control_c96_noaero_p8 -Checking test 035 cpld_control_c96_noaero_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_control_nowave_noaero_p8 +Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -942,118 +1589,121 @@ Checking test 035 cpld_control_c96_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 400.301794 -0:The maximum resident set size (KB) = 841068 - -Test 035 cpld_control_c96_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/cpld_debug_noaero_p8 -Checking test 036 cpld_debug_noaero_p8 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -0:The total amount of wall time = 347.445910 -0:The maximum resident set size (KB) = 859380 - -Test 036 cpld_debug_noaero_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220508/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_47633/datm_cdeps_control_cfsr -Checking test 037 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +0:The total amount of wall time = 272.764558 +0:The maximum resident set size (KB) = 1239716 + +Test 047 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/cpld_debug_p8 +Checking test 048 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 294.947421 +0:The maximum resident set size (KB) = 3179572 + +Test 048 cpld_debug_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-gnu/jongkim/FV3_RT/rt_2153/datm_cdeps_control_cfsr +Checking test 049 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 173.061536 -0:The maximum resident set size (KB) = 640272 +0:The total amount of wall time = 183.953214 +0:The maximum resident set size (KB) = 675568 -Test 037 datm_cdeps_control_cfsr PASS +Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Sat May 7 19:26:04 MDT 2022 -Elapsed time: 00h:30m:41s. Have a nice day! +Mon Feb 27 17:32:34 MST 2023 +Elapsed time: 00h:34m:37s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 670396f99e..fcffacb4dd 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,39 @@ -Mon May 16 10:44:05 MDT 2022 +Mon Feb 27 16:57:46 MST 2023 Start Regression test -Compile 001 elapsed time 1237 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 449 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 717 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 804 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 005 elapsed time 769 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 385 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 321 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 336 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 292 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 944 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 963 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 468 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 249 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 807 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 657 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +Compile 001 elapsed time 1553 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 1434 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 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 462 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 405 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1134 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 1087 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1034 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 1018 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,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 937 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 824 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 434 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 308 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 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 854 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 305 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 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1142 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 386 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1585 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1119 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 022 elapsed time 455 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 232 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 125 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 963 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 999 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 908 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 891 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 314 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -45,55 +58,66 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 428.791707 -0:The maximum resident set size (KB) = 2764704 +0:The total amount of wall time = 339.515744 +0:The maximum resident set size (KB) = 2698536 -Test 001 cpld_control_p8 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -106,55 +130,125 @@ Checking test 002 cpld_2threads_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 307.578692 +0:The maximum resident set size (KB) = 1437496 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 829.754843 -0:The maximum resident set size (KB) = 3091144 +0:The total amount of wall time = 342.287778 +0:The maximum resident set size (KB) = 2716492 -Test 002 cpld_2threads_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -167,55 +261,114 @@ Checking test 003 cpld_decomp_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 195.069692 +0:The maximum resident set size (KB) = 2577740 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 421.075017 -0:The maximum resident set size (KB) = 2756016 +0:The total amount of wall time = 297.042978 +0:The maximum resident set size (KB) = 3175516 -Test 003 cpld_decomp_p8 PASS +Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -228,108 +381,114 @@ Checking test 004 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 348.018494 +0:The maximum resident set size (KB) = 2723200 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 360.490883 -0:The maximum resident set size (KB) = 2676272 +0:The total amount of wall time = 310.762946 +0:The maximum resident set size (KB) = 2682616 -Test 004 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_bmark_p8 -Checking test 005 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 1176.241812 -0:The maximum resident set size (KB) = 3644644 - -Test 005 cpld_bmark_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -355,51 +514,256 @@ Checking test 006 cpld_control_c96_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +0:The total amount of wall time = 335.356220 +0:The maximum resident set size (KB) = 2716264 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c192_p8 +Checking test 009 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 702.222894 +0:The maximum resident set size (KB) = 3347776 + +Test 009 cpld_control_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c192_p8 +Checking test 010 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + +0:The total amount of wall time = 475.278690 +0:The maximum resident set size (KB) = 3272052 + +Test 010 cpld_restart_c192_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 424.567032 -0:The maximum resident set size (KB) = 2760140 +0:The total amount of wall time = 308.760229 +0:The maximum resident set size (KB) = 1436544 -Test 006 cpld_control_c96_p8 PASS +Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -412,270 +776,296 @@ Checking test 007 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 228.001637 -0:The maximum resident set size (KB) = 2722576 - -Test 007 cpld_restart_c96_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c192_p8 -Checking test 008 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - -0:The total amount of wall time = 1364.213540 -0:The maximum resident set size (KB) = 2801548 - -Test 008 cpld_control_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - -0:The total amount of wall time = 896.340419 -0:The maximum resident set size (KB) = 2770576 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_control_c384_p8 -Checking test 010 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -0:The total amount of wall time = 1301.983960 -0:The maximum resident set size (KB) = 3646032 - -Test 010 cpld_control_c384_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_restart_c384_p8 -Checking test 011 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -0:The total amount of wall time = 734.798753 -0:The maximum resident set size (KB) = 3609812 - -Test 011 cpld_restart_c384_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/cpld_debug_p8 -Checking test 012 cpld_debug_p8 results .... +0:The total amount of wall time = 215.488438 +0:The maximum resident set size (KB) = 1452424 + +Test 012 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_p8 +Checking test 013 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 503.283573 +0:The maximum resident set size (KB) = 2788208 + +Test 013 cpld_debug_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_debug_noaero_p8 +Checking test 014 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + +0:The total amount of wall time = 368.732751 +0:The maximum resident set size (KB) = 1460532 + +Test 014 cpld_debug_noaero_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 279.507322 +0:The maximum resident set size (KB) = 1455812 + +Test 015 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 614.976733 +0:The maximum resident set size (KB) = 2580812 + +Test 016 cpld_control_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -688,315 +1078,107 @@ Checking test 012 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -0:The total amount of wall time = 1073.250505 -0:The maximum resident set size (KB) = 2831088 - -Test 012 cpld_debug_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 153.682210 -0:The maximum resident set size (KB) = 445328 - -Test 013 control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 155.637351 -0:The maximum resident set size (KB) = 444700 - -Test 014 control_decomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2dwrtdecomp -Checking test 015 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - -0:The total amount of wall time = 145.211612 -0:The maximum resident set size (KB) = 446052 - -Test 015 control_2dwrtdecomp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads -Checking test 016 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 323.141973 -0:The maximum resident set size (KB) = 500248 - -Test 016 control_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_restart -Checking test 017 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 77.803249 -0:The maximum resident set size (KB) = 195656 - -Test 017 control_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_fhzero -Checking test 018 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 147.141241 -0:The maximum resident set size (KB) = 445684 - -Test 018 control_fhzero PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_CubedSphereGrid + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 175.516102 +0:The maximum resident set size (KB) = 2598904 + +Test 017 cpld_warmstart_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 92.518169 +0:The maximum resident set size (KB) = 2015684 + +Test 018 cpld_restart_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1023,15 +1205,29 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 150.338313 -0:The maximum resident set size (KB) = 445220 +0:The total amount of wall time = 145.817948 +0:The maximum resident set size (KB) = 456744 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_parallel +Checking test 020 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + +0:The total amount of wall time = 148.045173 +0:The maximum resident set size (KB) = 456804 + +Test 020 control_CubedSphereGrid_parallel PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_latlon +Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1041,17 +1237,17 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.444753 -0:The maximum resident set size (KB) = 445816 +0:The total amount of wall time = 150.462219 +0:The maximum resident set size (KB) = 456804 -Test 020 control_latlon PASS +Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -1059,61 +1255,61 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 152.823417 -0:The maximum resident set size (KB) = 445604 +0:The total amount of wall time = 152.650119 +0:The maximum resident set size (KB) = 456808 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c48 +Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 431.027758 -0:The maximum resident set size (KB) = 636076 - -Test 022 control_c48 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c192 -Checking test 023 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 445.944768 +0:The maximum resident set size (KB) = 628920 + +Test 023 control_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c192 +Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1123,15 +1319,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 605.801274 -0:The maximum resident set size (KB) = 548316 +0:The total amount of wall time = 602.461352 +0:The maximum resident set size (KB) = 557080 -Test 023 control_c192 PASS +Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384 +Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1141,15 +1337,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1217.065893 -0:The maximum resident set size (KB) = 814056 +0:The total amount of wall time = 618.884949 +0:The maximum resident set size (KB) = 887288 -Test 024 control_c384 PASS +Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_c384gdas +Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1158,48 +1354,48 @@ Checking test 025 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 1228.174618 -0:The maximum resident set size (KB) = 976892 - -Test 025 control_c384gdas PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy -Checking test 026 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 585.985312 +0:The maximum resident set size (KB) = 1016076 + +Test 026 control_c384gdas PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy +Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,29 +1405,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 98.726007 -0:The maximum resident set size (KB) = 448764 +0:The total amount of wall time = 102.341109 +0:The maximum resident set size (KB) = 454888 -Test 026 control_stochy PASS +Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_restart +Checking test 028 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 = 52.571931 -0:The maximum resident set size (KB) = 230396 +0:The total amount of wall time = 55.952077 +0:The maximum resident set size (KB) = 225880 -Test 027 control_stochy_restart PASS +Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp +Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1241,15 +1437,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.547928 -0:The maximum resident set size (KB) = 448728 +0:The total amount of wall time = 94.826367 +0:The maximum resident set size (KB) = 456480 -Test 028 control_lndp PASS +Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr4 +Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1263,15 +1459,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 151.570140 -0:The maximum resident set size (KB) = 445768 +0:The total amount of wall time = 152.875915 +0:The maximum resident set size (KB) = 456636 -Test 029 control_iovr4 PASS +Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_iovr5 +Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1285,15 +1481,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 154.666801 -0:The maximum resident set size (KB) = 445712 +0:The total amount of wall time = 157.065643 +0:The maximum resident set size (KB) = 456704 -Test 030 control_iovr5 PASS +Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8 +Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1306,48 +1502,48 @@ Checking test 031 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 197.276349 -0:The maximum resident set size (KB) = 842808 - -Test 031 control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8_lndp -Checking test 032 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 191.152624 +0:The maximum resident set size (KB) = 1422896 + +Test 032 control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_lndp +Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,61 +1561,61 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 365.187521 -0:The maximum resident set size (KB) = 843424 +0:The total amount of wall time = 341.201529 +0:The maximum resident set size (KB) = 1423156 -Test 032 control_p8_lndp PASS +Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_restart_p8 -Checking test 033 control_restart_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_restart_p8 +Checking test 034 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 102.186237 -0:The maximum resident set size (KB) = 579692 - -Test 033 control_restart_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 104.842361 +0:The maximum resident set size (KB) = 582308 + +Test 034 control_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_decomp_p8 +Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,48 +1624,48 @@ Checking test 034 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 197.539206 -0:The maximum resident set size (KB) = 837928 - -Test 034 control_decomp_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 199.567829 +0:The maximum resident set size (KB) = 1417116 + +Test 035 control_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_2threads_p8 +Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1478,48 +1674,102 @@ Checking test 035 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 459.314592 -0:The maximum resident set size (KB) = 922056 - -Test 035 control_2threads_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 195.845945 +0:The maximum resident set size (KB) = 1508096 + +Test 036 control_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_rrtmgp +Checking test 037 control_p8_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......NOT OK + Comparing sfcf021.nc ............ALT CHECK......NOT OK + Comparing sfcf024.nc ............ALT CHECK......NOT OK + Comparing atmf000.nc ............ALT CHECK......NOT OK + Comparing atmf021.nc ............ALT CHECK......NOT OK + Comparing atmf024.nc ............ALT CHECK......NOT OK + Comparing GFSFLX.GrbF00 .........NOT OK + Comparing GFSFLX.GrbF21 .........NOT OK + Comparing GFSFLX.GrbF24 .........NOT OK + Comparing GFSPRS.GrbF00 .........NOT OK + Comparing GFSPRS.GrbF21 .........NOT OK + Comparing GFSPRS.GrbF24 .........NOT OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc ............ALT CHECK......NOT OK + +0:The total amount of wall time = 271.728403 +0:The maximum resident set size (KB) = 1480712 + +Test 037 control_p8_rrtmgp FAIL Tries: 2 + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/merra2_thompson +Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1532,141 +1782,163 @@ Checking test 036 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 261.519315 -0:The maximum resident set size (KB) = 959188 - -Test 036 control_p8_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_control -Checking test 037 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 225.185056 +0:The maximum resident set size (KB) = 1429756 + +Test 038 merra2_thompson PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_control +Checking test 039 regional_control results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 376.970475 -0:The maximum resident set size (KB) = 573932 +0:The total amount of wall time = 366.624847 +0:The maximum resident set size (KB) = 603152 -Test 037 regional_control PASS +Test 039 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_restart +Checking test 040 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 = 203.628504 -0:The maximum resident set size (KB) = 564540 +0:The total amount of wall time = 197.430357 +0:The maximum resident set size (KB) = 593476 -Test 038 regional_restart PASS +Test 040 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_control_2dwrtdecomp -Checking test 039 regional_control_2dwrtdecomp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_decomp +Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 374.686077 -0:The maximum resident set size (KB) = 573116 +0:The total amount of wall time = 378.548556 +0:The maximum resident set size (KB) = 597228 -Test 039 regional_control_2dwrtdecomp PASS +Test 041 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_noquilt -Checking test 040 regional_noquilt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2threads +Checking test 042 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 240.093846 +0:The maximum resident set size (KB) = 609752 + +Test 042 regional_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_noquilt +Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK 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 = 396.615409 -0:The maximum resident set size (KB) = 581376 +0:The total amount of wall time = 387.625095 +0:The maximum resident set size (KB) = 597604 -Test 040 regional_noquilt PASS +Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_2threads -Checking test 041 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_netcdf_parallel +Checking test 044 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 952.822378 -0:The maximum resident set size (KB) = 560936 +0:The total amount of wall time = 348.182389 +0:The maximum resident set size (KB) = 595076 -Test 041 regional_2threads PASS +Test 044 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_2dwrtdecomp +Checking test 045 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 370.448787 -0:The maximum resident set size (KB) = 563932 +0:The total amount of wall time = 367.152742 +0:The maximum resident set size (KB) = 603184 -Test 042 regional_netcdf_parallel PASS +Test 045 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_3km -Checking test 043 regional_3km results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_wofs +Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1676,69 +1948,15 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 320.942374 -0:The maximum resident set size (KB) = 598576 +0:The total amount of wall time = 430.042216 +0:The maximum resident set size (KB) = 274616 -Test 043 regional_3km PASS +Test 046 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_control -Checking test 044 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 479.480782 -0:The maximum resident set size (KB) = 815568 - -Test 044 rap_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_rrtmgp -Checking test 045 rap_rrtmgp results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control +Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,48 +1969,48 @@ Checking test 045 rap_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 547.409930 -0:The maximum resident set size (KB) = 941740 - -Test 045 rap_rrtmgp PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 486.623250 +0:The maximum resident set size (KB) = 826352 + +Test 047 rap_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb +Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1802,15 +2020,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 664.485989 -0:The maximum resident set size (KB) = 949764 +0:The total amount of wall time = 345.343547 +0:The maximum resident set size (KB) = 949276 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_2threads -Checking test 047 rap_2threads results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_decomp +Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,94 +2041,48 @@ Checking test 047 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 1001.211580 -0:The maximum resident set size (KB) = 881244 - -Test 047 rap_2threads PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_restart -Checking test 048 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 243.606692 -0:The maximum resident set size (KB) = 567792 - -Test 048 rap_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 512.114858 +0:The maximum resident set size (KB) = 823560 + +Test 049 rap_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads +Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,262 +2095,554 @@ Checking test 049 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 480.704564 -0:The maximum resident set size (KB) = 815164 - -Test 049 rap_sfcdiff PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 471.651173 +0:The maximum resident set size (KB) = 894532 + +Test 050 rap_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart +Checking test 051 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 243.190206 -0:The maximum resident set size (KB) = 567896 - -Test 050 rap_sfcdiff_restart PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hrrr_control -Checking test 051 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 246.188191 +0:The maximum resident set size (KB) = 572872 + +Test 051 rap_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff +Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 460.096277 -0:The maximum resident set size (KB) = 812644 - -Test 051 hrrr_control PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1beta -Checking test 052 rrfs_v1beta results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 478.093529 +0:The maximum resident set size (KB) = 826532 + +Test 052 rap_sfcdiff PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_decomp +Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 469.752466 -0:The maximum resident set size (KB) = 810848 - -Test 052 rrfs_v1beta PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1nssl -Checking test 053 rrfs_v1nssl results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 507.490185 +0:The maximum resident set size (KB) = 825488 + +Test 053 rap_sfcdiff_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_restart +Checking test 054 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 357.199484 +0:The maximum resident set size (KB) = 570236 + +Test 054 rap_sfcdiff_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control +Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -0:The total amount of wall time = 579.355194 -0:The maximum resident set size (KB) = 500276 - -Test 053 rrfs_v1nssl PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1nssl_nohailnoccn -Checking test 054 rrfs_v1nssl_nohailnoccn results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 459.186112 +0:The maximum resident set size (KB) = 821280 + +Test 055 hrrr_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp +Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 481.449172 +0:The maximum resident set size (KB) = 820304 + +Test 056 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads +Checking test 057 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 438.933029 +0:The maximum resident set size (KB) = 887888 + +Test 057 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart +Checking test 058 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 340.208400 +0:The maximum resident set size (KB) = 568716 + +Test 058 hrrr_control_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta +Checking test 059 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 466.158066 +0:The maximum resident set size (KB) = 819928 + +Test 059 rrfs_v1beta PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl +Checking test 060 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 557.952203 -0:The maximum resident set size (KB) = 495264 +0:The total amount of wall time = 573.759807 +0:The maximum resident set size (KB) = 508256 -Test 054 rrfs_v1nssl_nohailnoccn PASS +Test 060 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1nssl_nohailnoccn +Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 199.326526 -0:The maximum resident set size (KB) = 643856 +0:The total amount of wall time = 557.121924 +0:The maximum resident set size (KB) = 501320 -Test 055 rrfs_conus13km_hrrr_warm PASS +Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm +Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2186,15 +2650,15 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 201.971975 -0:The maximum resident set size (KB) = 647664 +0:The total amount of wall time = 139.519677 +0:The maximum resident set size (KB) = 639004 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_smoke_conus13km_hrrr_warm -Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_smoke_conus13km_hrrr_warm +Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2202,69 +2666,63 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 220.924170 -0:The maximum resident set size (KB) = 659660 +0:The total amount of wall time = 150.406111 +0:The maximum resident set size (KB) = 653076 -Test 057 rrfs_smoke_conus13km_hrrr_warm PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmg -Checking test 058 control_csawmg results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm +Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 396.526090 -0:The maximum resident set size (KB) = 524860 +0:The total amount of wall time = 136.777228 +0:The maximum resident set size (KB) = 641256 -Test 058 control_csawmg PASS +Test 064 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmgt -Checking test 059 control_csawmgt results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_2threads +Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 405.960319 -0:The maximum resident set size (KB) = 524784 +0:The total amount of wall time = 89.138083 +0:The maximum resident set size (KB) = 655520 -Test 059 control_csawmgt PASS +Test 065 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_flake -Checking test 060 control_flake results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_2threads +Checking test 066 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 269.765068 -0:The maximum resident set size (KB) = 519100 +0:The total amount of wall time = 91.156316 +0:The maximum resident set size (KB) = 658456 -Test 060 control_flake PASS +Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_ras -Checking test 061 control_ras results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg +Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2274,15 +2732,15 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 214.234897 -0:The maximum resident set size (KB) = 482100 +0:The total amount of wall time = 409.938168 +0:The maximum resident set size (KB) = 529008 -Test 061 control_ras PASS +Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson -Checking test 062 control_thompson results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt +Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2292,15 +2750,15 @@ Checking test 062 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 284.600658 -0:The maximum resident set size (KB) = 833712 +0:The total amount of wall time = 405.133119 +0:The maximum resident set size (KB) = 528996 -Test 062 control_thompson PASS +Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_no_aero -Checking test 063 control_thompson_no_aero results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras +Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2310,55 +2768,55 @@ Checking test 063 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 271.013156 -0:The maximum resident set size (KB) = 824536 +0:The total amount of wall time = 209.406271 +0:The maximum resident set size (KB) = 487800 -Test 063 control_thompson_no_aero PASS +Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wam -Checking test 064 control_wam results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam +Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 132.672975 -0:The maximum resident set size (KB) = 205948 +0:The total amount of wall time = 135.274320 +0:The maximum resident set size (KB) = 205672 -Test 064 control_wam PASS +Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_debug -Checking test 065 control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_hrrr_warm_debug +Checking test 071 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 = 156.974341 -0:The maximum resident set size (KB) = 612868 +0:The total amount of wall time = 778.955751 +0:The maximum resident set size (KB) = 672244 -Test 065 control_debug PASS +Test 071 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_2threads_debug -Checking test 066 control_2threads_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_conus13km_radar_tten_warm_debug +Checking test 072 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 = 279.305684 -0:The maximum resident set size (KB) = 666420 +0:The total amount of wall time = 779.455808 +0:The maximum resident set size (KB) = 673744 -Test 066 control_2threads_debug PASS +Test 072 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2384,818 +2842,1400 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 170.554837 -0:The maximum resident set size (KB) = 613072 +0:The total amount of wall time = 181.185422 +0:The maximum resident set size (KB) = 621536 -Test 067 control_CubedSphereGrid_debug PASS +Test 073 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_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 = 160.562126 -0:The maximum resident set size (KB) = 612784 +0:The total amount of wall time = 172.260001 +0:The maximum resident set size (KB) = 621312 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_stochy_debug -Checking test 069 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_stochy_debug +Checking test 075 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 = 179.276104 -0:The maximum resident set size (KB) = 618572 +0:The total amount of wall time = 192.263202 +0:The maximum resident set size (KB) = 624980 -Test 069 control_stochy_debug PASS +Test 075 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_lndp_debug -Checking test 070 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_lndp_debug +Checking test 076 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 = 161.463102 -0:The maximum resident set size (KB) = 617376 +0:The total amount of wall time = 175.337303 +0:The maximum resident set size (KB) = 627180 -Test 070 control_lndp_debug PASS +Test 076 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmg_debug -Checking test 071 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmg_debug +Checking test 077 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 = 253.067974 -0:The maximum resident set size (KB) = 664968 +0:The total amount of wall time = 267.033844 +0:The maximum resident set size (KB) = 671376 -Test 071 control_csawmg_debug PASS +Test 077 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_csawmgt_debug -Checking test 072 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_csawmgt_debug +Checking test 078 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 = 248.446349 -0:The maximum resident set size (KB) = 662968 +0:The total amount of wall time = 260.397392 +0:The maximum resident set size (KB) = 671132 -Test 072 control_csawmgt_debug PASS +Test 078 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_ras_debug -Checking test 073 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_ras_debug +Checking test 079 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 = 164.025768 -0:The maximum resident set size (KB) = 625856 +0:The total amount of wall time = 176.863358 +0:The maximum resident set size (KB) = 632616 -Test 073 control_ras_debug PASS +Test 079 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_diag_debug -Checking test 074 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_diag_debug +Checking test 080 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 = 167.715913 -0:The maximum resident set size (KB) = 669376 +0:The total amount of wall time = 177.397186 +0:The maximum resident set size (KB) = 677812 -Test 074 control_diag_debug PASS +Test 080 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_debug_p8 -Checking test 075 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_debug_p8 +Checking test 081 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 = 178.456132 -0:The maximum resident set size (KB) = 1010508 +0:The total amount of wall time = 194.280206 +0:The maximum resident set size (KB) = 1444192 -Test 075 control_debug_p8 PASS +Test 081 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_debug -Checking test 076 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_debug +Checking test 082 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 = 185.201351 -0:The maximum resident set size (KB) = 973476 +0:The total amount of wall time = 1054.249286 +0:The maximum resident set size (KB) = 628944 -Test 076 control_thompson_debug PASS +Test 082 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_no_aero_debug -Checking test 077 control_thompson_no_aero_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug +Checking test 083 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 = 178.916584 -0:The maximum resident set size (KB) = 970120 +0:The total amount of wall time = 301.366019 +0:The maximum resident set size (KB) = 990100 -Test 077 control_thompson_no_aero_debug PASS +Test 083 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_extdiag_debug -Checking test 078 control_thompson_extdiag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug +Checking test 084 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 = 195.221544 -0:The maximum resident set size (KB) = 1002316 +0:The total amount of wall time = 299.649563 +0:The maximum resident set size (KB) = 988936 -Test 078 control_thompson_extdiag_debug PASS +Test 084 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_thompson_progcld_thompson_debug -Checking test 079 control_thompson_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_drag_suite_debug +Checking test 085 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 = 185.996696 -0:The maximum resident set size (KB) = 973284 - -Test 079 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/regional_debug -Checking test 080 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 = 259.715592 -0:The maximum resident set size (KB) = 597388 +0:The total amount of wall time = 303.203349 +0:The maximum resident set size (KB) = 989908 -Test 080 regional_debug PASS +Test 085 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_control_debug -Checking test 081 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_diag_debug +Checking test 086 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 = 287.234243 -0:The maximum resident set size (KB) = 981140 +0:The total amount of wall time = 316.875091 +0:The maximum resident set size (KB) = 1074264 -Test 081 rap_control_debug PASS +Test 086 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_unified_drag_suite_debug -Checking test 082 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_cires_ugwp_debug +Checking test 087 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 = 287.215585 -0:The maximum resident set size (KB) = 980636 +0:The total amount of wall time = 311.912972 +0:The maximum resident set size (KB) = 988608 -Test 082 rap_unified_drag_suite_debug PASS +Test 087 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_diag_debug -Checking test 083 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_unified_ugwp_debug +Checking test 088 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 = 301.386202 -0:The maximum resident set size (KB) = 1064348 +0:The total amount of wall time = 307.876625 +0:The maximum resident set size (KB) = 991952 -Test 083 rap_diag_debug PASS +Test 088 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_cires_ugwp_debug -Checking test 084 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_lndp_debug +Checking test 089 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 = 293.313403 -0:The maximum resident set size (KB) = 980008 +0:The total amount of wall time = 308.394891 +0:The maximum resident set size (KB) = 990576 -Test 084 rap_cires_ugwp_debug PASS +Test 089 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_unified_ugwp_debug -Checking test 085 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_flake_debug +Checking test 090 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 = 293.535338 -0:The maximum resident set size (KB) = 981212 +0:The total amount of wall time = 305.642947 +0:The maximum resident set size (KB) = 990040 -Test 085 rap_unified_ugwp_debug PASS +Test 090 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_lndp_debug -Checking test 086 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_progcld_thompson_debug +Checking test 091 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 = 289.238026 -0:The maximum resident set size (KB) = 981644 +0:The total amount of wall time = 305.401718 +0:The maximum resident set size (KB) = 989872 -Test 086 rap_lndp_debug PASS +Test 091 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_flake_debug -Checking test 087 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_debug +Checking test 092 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 = 287.152351 -0:The maximum resident set size (KB) = 981216 +0:The total amount of wall time = 303.087811 +0:The maximum resident set size (KB) = 988452 -Test 087 rap_flake_debug PASS +Test 092 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_progcld_thompson_debug -Checking test 088 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_sfcdiff_debug +Checking test 093 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 = 287.659760 -0:The maximum resident set size (KB) = 980996 +0:The total amount of wall time = 304.635932 +0:The maximum resident set size (KB) = 991208 -Test 088 rap_progcld_thompson_debug PASS +Test 093 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_noah_debug -Checking test 089 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 094 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 = 283.366482 -0:The maximum resident set size (KB) = 979536 +0:The total amount of wall time = 492.924225 +0:The maximum resident set size (KB) = 989428 -Test 089 rap_noah_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_rrtmgp_debug -Checking test 090 rap_rrtmgp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rrfs_v1beta_debug +Checking test 095 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 = 483.441759 -0:The maximum resident set size (KB) = 1110728 +0:The total amount of wall time = 302.236983 +0:The maximum resident set size (KB) = 986376 -Test 090 rap_rrtmgp_debug PASS +Test 095 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_wam_debug +Checking test 096 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +0:The total amount of wall time = 304.906315 +0:The maximum resident set size (KB) = 238912 + +Test 096 control_wam_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 287.513614 -0:The maximum resident set size (KB) = 981044 +0:The total amount of wall time = 314.243173 +0:The maximum resident set size (KB) = 848436 -Test 091 rap_sfcdiff_debug PASS +Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn32_phy32 +Checking test 098 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 391.855765 +0:The maximum resident set size (KB) = 707128 + +Test 098 rap_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_dyn32_phy32 +Checking test 099 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 211.383526 +0:The maximum resident set size (KB) = 705520 + +Test 099 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_2threads_dyn32_phy32 +Checking test 100 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 382.149948 +0:The maximum resident set size (KB) = 761720 + +Test 100 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_2threads_dyn32_phy32 +Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 208.188858 +0:The maximum resident set size (KB) = 758412 + +Test 101 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_decomp_dyn32_phy32 +Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 221.829004 +0:The maximum resident set size (KB) = 704028 + +Test 102 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_restart_dyn32_phy32 +Checking test 103 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 296.145710 +0:The maximum resident set size (KB) = 544620 + +Test 103 rap_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_restart_dyn32_phy32 +Checking test 104 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 108.391744 +0:The maximum resident set size (KB) = 536944 + +Test 104 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32 +Checking test 105 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 272.572900 +0:The maximum resident set size (KB) = 726848 + +Test 105 rap_control_dyn64_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_debug_dyn32_phy32 +Checking test 106 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 = 473.840461 -0:The maximum resident set size (KB) = 979404 +0:The total amount of wall time = 298.143614 +0:The maximum resident set size (KB) = 876120 -Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 106 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/rrfs_v1beta_debug -Checking test 093 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hrrr_control_debug_dyn32_phy32 +Checking test 107 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 = 284.027722 -0:The maximum resident set size (KB) = 977356 +0:The total amount of wall time = 293.423231 +0:The maximum resident set size (KB) = 874272 -Test 093 rrfs_v1beta_debug PASS +Test 107 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_wam_debug -Checking test 094 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/rap_control_dyn64_phy32_debug +Checking test 108 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 = 296.739725 -0:The maximum resident set size (KB) = 237740 +0:The total amount of wall time = 302.454339 +0:The maximum resident set size (KB) = 893512 -Test 094 control_wam_debug PASS +Test 108 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm -Checking test 095 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm +Checking test 109 hafs_regional_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 548.712900 -0:The maximum resident set size (KB) = 675716 +0:The total amount of wall time = 272.658879 +0:The maximum resident set size (KB) = 739888 -Test 095 hafs_regional_atm PASS +Test 109 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_thompson_gfdlsf -Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_thompson_gfdlsf +Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 619.861753 -0:The maximum resident set size (KB) = 1044764 +0:The total amount of wall time = 312.815826 +0:The maximum resident set size (KB) = 1091528 -Test 096 hafs_regional_atm_thompson_gfdlsf PASS +Test 110 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_ocn -Checking test 097 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn +Checking test 111 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK 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 = 407.733966 -0:The maximum resident set size (KB) = 716288 +0:The total amount of wall time = 483.082674 +0:The maximum resident set size (KB) = 738468 -Test 097 hafs_regional_atm_ocn PASS +Test 111 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_wav -Checking test 098 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_wav +Checking test 112 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 954.896414 -0:The maximum resident set size (KB) = 709688 +0:The total amount of wall time = 1086.474166 +0:The maximum resident set size (KB) = 767040 -Test 098 hafs_regional_atm_wav PASS +Test 112 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_atm_ocn_wav -Checking test 099 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_atm_ocn_wav +Checking test 113 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 998.080680 -0:The maximum resident set size (KB) = 726796 +0:The total amount of wall time = 1137.979045 +0:The maximum resident set size (KB) = 790172 -Test 099 hafs_regional_atm_ocn_wav PASS +Test 113 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_1nest_atm -Checking test 100 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_1nest_atm +Checking test 114 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 1078.965979 -0:The maximum resident set size (KB) = 273704 +0:The total amount of wall time = 381.325358 +0:The maximum resident set size (KB) = 293444 -Test 100 hafs_regional_1nest_atm PASS +Test 114 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_telescopic_2nests_atm -Checking test 101 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_telescopic_2nests_atm +Checking test 115 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 1149.447783 -0:The maximum resident set size (KB) = 283264 +0:The total amount of wall time = 431.130242 +0:The maximum resident set size (KB) = 308096 -Test 101 hafs_regional_telescopic_2nests_atm PASS +Test 115 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_1nest_atm -Checking test 102 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_1nest_atm +Checking test 116 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 685.406881 -0:The maximum resident set size (KB) = 174988 +0:The total amount of wall time = 170.044068 +0:The maximum resident set size (KB) = 206108 -Test 102 hafs_global_1nest_atm PASS +Test 116 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_multiple_4nests_atm -Checking test 103 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_multiple_4nests_atm +Checking test 117 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK -0:The total amount of wall time = 1301.025977 -0:The maximum resident set size (KB) = 241072 +0:The total amount of wall time = 495.214303 +0:The maximum resident set size (KB) = 292528 -Test 103 hafs_global_multiple_4nests_atm PASS +Test 117 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_specified_moving_1nest_atm -Checking test 104 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_specified_moving_1nest_atm +Checking test 118 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 603.594801 -0:The maximum resident set size (KB) = 284992 +0:The total amount of wall time = 248.009649 +0:The maximum resident set size (KB) = 306588 -Test 104 hafs_regional_specified_moving_1nest_atm PASS +Test 118 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm -Checking test 105 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm +Checking test 119 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 591.032065 -0:The maximum resident set size (KB) = 284808 +0:The total amount of wall time = 231.149717 +0:The maximum resident set size (KB) = 306404 -Test 105 hafs_regional_storm_following_1nest_atm PASS +Test 119 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm_ocn -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn +Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -0:The total amount of wall time = 605.120340 -0:The maximum resident set size (KB) = 314240 +0:The total amount of wall time = 284.316249 +0:The maximum resident set size (KB) = 353640 -Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_global_storm_following_1nest_atm +Checking test 121 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + +0:The total amount of wall time = 68.142070 +0:The maximum resident set size (KB) = 222124 + +Test 121 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK -0:The total amount of wall time = 1250.730181 -0:The maximum resident set size (KB) = 329708 +0:The total amount of wall time = 831.080753 +0:The maximum resident set size (KB) = 386948 -Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_global_storm_following_1nest_atm -Checking test 108 hafs_global_storm_following_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 346.204993 -0:The maximum resident set size (KB) = 190796 +0:The total amount of wall time = 767.632658 +0:The maximum resident set size (KB) = 416112 -Test 108 hafs_global_storm_following_1nest_atm PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_docn -Checking test 109 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn +Checking test 124 hafs_regional_docn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 372.550554 -0:The maximum resident set size (KB) = 732616 +0:The total amount of wall time = 407.414611 +0:The maximum resident set size (KB) = 754428 -Test 109 hafs_regional_docn PASS +Test 124 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_docn_oisst -Checking test 110 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_docn_oisst +Checking test 125 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 377.230558 -0:The maximum resident set size (KB) = 712856 +0:The total amount of wall time = 405.101050 +0:The maximum resident set size (KB) = 733816 -Test 110 hafs_regional_docn_oisst PASS +Test 125 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/hafs_regional_datm_cdeps -Checking test 111 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/hafs_regional_datm_cdeps +Checking test 126 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 = 1289.714723 -0:The maximum resident set size (KB) = 872056 +0:The total amount of wall time = 1164.884201 +0:The maximum resident set size (KB) = 888168 -Test 111 hafs_regional_datm_cdeps PASS +Test 126 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_control_cfsr -Checking test 112 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_cfsr +Checking test 127 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 165.478910 -0:The maximum resident set size (KB) = 696292 +0:The total amount of wall time = 165.603420 +0:The maximum resident set size (KB) = 716716 -Test 112 datm_cdeps_control_cfsr PASS +Test 127 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_restart_cfsr -Checking test 113 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_restart_cfsr +Checking test 128 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 = 101.764274 -0:The maximum resident set size (KB) = 696504 +0:The total amount of wall time = 101.349015 +0:The maximum resident set size (KB) = 716288 + +Test 128 datm_cdeps_restart_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_control_gefs +Checking test 129 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 = 164.977500 +0:The maximum resident set size (KB) = 607492 -Test 113 datm_cdeps_restart_cfsr PASS +Test 129 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_control_gefs -Checking test 114 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_iau_gefs +Checking test 130 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 159.878082 -0:The maximum resident set size (KB) = 594132 +0:The total amount of wall time = 164.205007 +0:The maximum resident set size (KB) = 607472 -Test 114 datm_cdeps_control_gefs PASS +Test 130 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_iau_gefs -Checking test 115 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_stochy_gefs +Checking test 131 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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.685177 -0:The maximum resident set size (KB) = 593832 +0:The total amount of wall time = 166.737989 +0:The maximum resident set size (KB) = 607456 -Test 115 datm_cdeps_iau_gefs PASS +Test 131 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_stochy_gefs -Checking test 116 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_ciceC_cfsr +Checking test 132 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 155.715473 -0:The maximum resident set size (KB) = 594436 +0:The total amount of wall time = 172.977018 +0:The maximum resident set size (KB) = 727772 -Test 116 datm_cdeps_stochy_gefs PASS +Test 132 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_bulk_cfsr -Checking test 117 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_cfsr +Checking test 133 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 = 168.091501 -0:The maximum resident set size (KB) = 696684 +0:The total amount of wall time = 167.546006 +0:The maximum resident set size (KB) = 716700 -Test 117 datm_cdeps_bulk_cfsr PASS +Test 133 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_bulk_gefs -Checking test 118 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_bulk_gefs +Checking test 134 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 159.644766 -0:The maximum resident set size (KB) = 594132 +0:The total amount of wall time = 160.232284 +0:The maximum resident set size (KB) = 607444 -Test 118 datm_cdeps_bulk_gefs PASS +Test 134 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_mx025_cfsr -Checking test 119 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_cfsr +Checking test 135 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK 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 = 336.251126 -0:The maximum resident set size (KB) = 513664 +0:The total amount of wall time = 864.068864 +0:The maximum resident set size (KB) = 514396 -Test 119 datm_cdeps_mx025_cfsr PASS +Test 135 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_mx025_gefs -Checking test 120 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_mx025_gefs +Checking test 136 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 344.165627 -0:The maximum resident set size (KB) = 493276 +0:The total amount of wall time = 908.030744 +0:The maximum resident set size (KB) = 494796 -Test 120 datm_cdeps_mx025_gefs PASS +Test 136 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_multiple_files_cfsr -Checking test 121 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_multiple_files_cfsr +Checking test 137 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 = 159.554203 -0:The maximum resident set size (KB) = 696300 +0:The total amount of wall time = 170.708338 +0:The maximum resident set size (KB) = 727824 -Test 121 datm_cdeps_multiple_files_cfsr PASS +Test 137 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_3072x1536_cfsr -Checking test 122 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_3072x1536_cfsr +Checking test 138 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.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 = 264.253536 -0:The maximum resident set size (KB) = 1847716 +0:The total amount of wall time = 274.897388 +0:The maximum resident set size (KB) = 1942008 -Test 122 datm_cdeps_3072x1536_cfsr PASS +Test 138 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_gfs -Checking test 123 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_gfs +Checking test 139 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 = 253.211034 -0:The maximum resident set size (KB) = 1845492 +0:The total amount of wall time = 275.043220 +0:The maximum resident set size (KB) = 1942052 -Test 123 datm_cdeps_gfs PASS +Test 139 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/datm_cdeps_debug_cfsr -Checking test 124 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_debug_cfsr +Checking test 140 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.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 = 456.277901 -0:The maximum resident set size (KB) = 704712 +0:The total amount of wall time = 461.874728 +0:The maximum resident set size (KB) = 717724 + +Test 140 datm_cdeps_debug_cfsr PASS -Test 124 datm_cdeps_debug_cfsr PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3 +Checking test 141 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_atmwav -Checking test 125 control_atmwav results .... +0:The total amount of wall time = 11.445167 +0:The maximum resident set size (KB) = 208244 + +Test 141 datm_cdeps_lnd_gswp3 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/datm_cdeps_lnd_gswp3_rst +Checking test 142 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 17.048179 +0:The maximum resident set size (KB) = 208244 + +Test 142 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_p8_atmlnd_sbs +Checking test 143 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 240.021752 +0:The maximum resident set size (KB) = 1461972 + +Test 143 control_p8_atmlnd_sbs PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/control_atmwav +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/control_atmwav +Checking test 144 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3204,49 +4244,151 @@ Checking test 125 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 94.400725 -0:The maximum resident set size (KB) = 468360 +0:The total amount of wall time = 102.398710 +0:The maximum resident set size (KB) = 474892 -Test 125 control_atmwav PASS +Test 144 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atm_aerosols -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_16692/control_atm_aerosols -Checking test 126 control_atm_aerosols results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 256.005184 +0:The maximum resident set size (KB) = 2703356 + +Test 145 atmaero_control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad +Checking test 146 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 308.277530 +0:The maximum resident set size (KB) = 2757596 + +Test 146 atmaero_control_p8_rad PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3255,49 +4397,134 @@ Checking test 126 control_atm_aerosols results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0:The total amount of wall time = 365.533278 -0:The maximum resident set size (KB) = 1779736 - -Test 126 control_atm_aerosols PASS + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 313.291868 +0:The maximum resident set size (KB) = 2763944 + +Test 147 atmaero_control_p8_rad_micro PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_27290/regional_atmaq +Checking test 148 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +0:The total amount of wall time = 1307.034576 +0:The maximum resident set size (KB) = 1146040 + +Test 148 regional_atmaq PASS + +FAILED TESTS: +Test control_p8_rrtmgp 037 failed in check_result failed +Test control_p8_rrtmgp 037 failed in run_test failed + +REGRESSION TEST FAILED +Mon Feb 27 18:11:50 MST 2023 +Elapsed time: 01h:14m:05s. Have a nice day! +Tue Feb 28 05:45:30 MST 2023 +Start Regression test + +Compile 001 elapsed time 1033 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 + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/jongkim/rt-1604-intel/jongkim/FV3_RT/rt_54317/control_p8_rrtmgp +Checking test 001 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 252.444370 +0:The maximum resident set size (KB) = 1480736 + +Test 001 control_p8_rrtmgp PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 16 14:05:45 MDT 2022 -Elapsed time: 03h:21m:40s. Have a nice day! +Tue Feb 28 06:10:29 MST 2023 +Elapsed time: 00h:24m:59s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 7431039f2b..384129559e 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,39 @@ -Tue May 10 22:01:19 EDT 2022 +Tue Feb 28 12:34:00 EST 2023 Start Regression test -Compile 001 elapsed time 640 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 248 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 395 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 424 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 399 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 212 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 191 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 204 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 560 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 577 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 252 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 121 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 551 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 390 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +Compile 001 elapsed time 923 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 942 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 896 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 353 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 325 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 857 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 762 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 780 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 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,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 782 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 684 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 309 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 239 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 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 223 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 254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 782 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 246 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 940 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 738 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 022 elapsed time 258 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 169 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 149 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 753 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 651 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 746 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 217 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -45,55 +58,66 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 385.786682 - 0: The maximum resident set size (KB) = 1053276 + 0: The total amount of wall time = 357.057034 + 0: The maximum resident set size (KB) = 1551992 -Test 001 cpld_control_p8 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -106,55 +130,125 @@ Checking test 002 cpld_2threads_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 278.730106 + 0: The maximum resident set size (KB) = 1455612 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 551.306437 - 0: The maximum resident set size (KB) = 1485856 + 0: The total amount of wall time = 420.375157 + 0: The maximum resident set size (KB) = 1565212 -Test 002 cpld_2threads_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -167,55 +261,114 @@ Checking test 003 cpld_decomp_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 242.170803 + 0: The maximum resident set size (KB) = 1022304 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 418.914003 - 0: The maximum resident set size (KB) = 1204220 + 0: The total amount of wall time = 424.513720 + 0: The maximum resident set size (KB) = 1777592 -Test 003 cpld_decomp_p8 PASS +Test 005 cpld_2threads_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -228,108 +381,416 @@ Checking test 004 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 402.436366 + 0: The maximum resident set size (KB) = 1575056 + +Test 006 cpld_decomp_p8 PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 326.861996 - 0: The maximum resident set size (KB) = 942872 + 0: The total amount of wall time = 349.631553 + 0: The maximum resident set size (KB) = 1523868 -Test 004 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_bmark_p8 -Checking test 005 cpld_bmark_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 408.052578 + 0: The maximum resident set size (KB) = 1596308 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c192_p8 +Checking test 009 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 791.026512 + 0: The maximum resident set size (KB) = 1775188 + +Test 009 cpld_control_c192_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c192_p8 +Checking test 010 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 473.016534 + 0: The maximum resident set size (KB) = 1930564 + +Test 010 cpld_restart_c192_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_bmark_p8 +Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 890.406018 + 0: The maximum resident set size (KB) = 2518080 - 0: The total amount of wall time = 1255.488895 - 0: The maximum resident set size (KB) = 2711940 +Test 011 cpld_bmark_p8 PASS -Test 005 cpld_bmark_p8 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_bmark_p8 +Checking test 012 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... + 0: The total amount of wall time = 555.058185 + 0: The maximum resident set size (KB) = 2334860 + +Test 012 cpld_restart_bmark_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -354,52 +815,65 @@ Checking test 006 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 411.873955 - 0: The maximum resident set size (KB) = 1070676 + 0: The total amount of wall time = 305.512744 + 0: The maximum resident set size (KB) = 1441136 -Test 006 cpld_control_c96_p8 PASS +Test 013 cpld_control_noaero_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -412,270 +886,238 @@ Checking test 007 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 207.412038 - 0: The maximum resident set size (KB) = 1018084 - -Test 007 cpld_restart_c96_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c192_p8 -Checking test 008 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 1285.135300 - 0: The maximum resident set size (KB) = 1180516 - -Test 008 cpld_control_c192_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 832.806663 - 0: The maximum resident set size (KB) = 1402752 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_control_c384_p8 -Checking test 010 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1403.845752 - 0: The maximum resident set size (KB) = 2740408 - -Test 010 cpld_control_c384_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_restart_c384_p8 -Checking test 011 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 2305.356713 - 0: The maximum resident set size (KB) = 2716484 - -Test 011 cpld_restart_c384_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/cpld_debug_p8 -Checking test 012 cpld_debug_p8 results .... + 0: The total amount of wall time = 327.827643 + 0: The maximum resident set size (KB) = 1473640 + +Test 014 cpld_control_nowave_noaero_p8 PASS + +Test 015 cpld_debug_p8 FAIL + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 404.743366 + 0: The maximum resident set size (KB) = 1461040 + +Test 016 cpld_debug_noaero_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 324.634145 + 0: The maximum resident set size (KB) = 1489000 + +Test 017 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 601.559358 + 0: The maximum resident set size (KB) = 2569068 + +Test 018 cpld_control_c48 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -688,316 +1130,108 @@ Checking test 012 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 974.592669 - 0: The maximum resident set size (KB) = 1199496 - -Test 012 cpld_debug_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 158.197366 - 0: The maximum resident set size (KB) = 435156 - -Test 013 control PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 137.488835 - 0: The maximum resident set size (KB) = 434400 - -Test 014 control_decomp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2dwrtdecomp -Checking test 015 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 125.564784 - 0: The maximum resident set size (KB) = 435184 - -Test 015 control_2dwrtdecomp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads -Checking test 016 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 170.035313 - 0: The maximum resident set size (KB) = 488060 - -Test 016 control_2threads PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_restart -Checking test 017 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 97.660485 - 0: The maximum resident set size (KB) = 171292 - -Test 017 control_restart PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_fhzero -Checking test 018 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 152.997481 - 0: The maximum resident set size (KB) = 435212 - -Test 018 control_fhzero PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 159.518553 + 0: The maximum resident set size (KB) = 2572544 + +Test 019 cpld_warmstart_c48 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 101.728183 + 0: The maximum resident set size (KB) = 1996112 + +Test 020 cpld_restart_c48 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1023,15 +1257,29 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.932349 - 0: The maximum resident set size (KB) = 435756 + 0: The total amount of wall time = 142.693090 + 0: The maximum resident set size (KB) = 437232 + +Test 021 control_CubedSphereGrid PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 145.692583 + 0: The maximum resident set size (KB) = 437064 -Test 019 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1041,16 +1289,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.906430 - 0: The maximum resident set size (KB) = 435208 + 0: The total amount of wall time = 145.707710 + 0: The maximum resident set size (KB) = 437088 -Test 020 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1059,61 +1307,61 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.877374 - 0: The maximum resident set size (KB) = 435180 + 0: The total amount of wall time = 160.290892 + 0: The maximum resident set size (KB) = 437044 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 357.776901 -0: The maximum resident set size (KB) = 623584 - -Test 022 control_c48 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c192 -Checking test 023 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 423.903257 +0: The maximum resident set size (KB) = 631104 + +Test 025 control_c48 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1123,15 +1371,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 560.441425 - 0: The maximum resident set size (KB) = 534476 + 0: The total amount of wall time = 585.349965 + 0: The maximum resident set size (KB) = 539968 -Test 023 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1141,15 +1389,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 766.392527 - 0: The maximum resident set size (KB) = 801556 + 0: The total amount of wall time = 1127.187683 + 0: The maximum resident set size (KB) = 818340 -Test 024 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1158,48 +1406,48 @@ Checking test 025 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 725.023184 - 0: The maximum resident set size (KB) = 951048 - -Test 025 control_c384gdas PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy -Checking test 026 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 946.910598 + 0: The maximum resident set size (KB) = 948148 + +Test 028 control_c384gdas PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,29 +1457,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 117.744239 - 0: The maximum resident set size (KB) = 437328 + 0: The total amount of wall time = 98.600710 + 0: The maximum resident set size (KB) = 440092 -Test 026 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_restart +Checking test 030 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 = 73.366940 - 0: The maximum resident set size (KB) = 188024 + 0: The total amount of wall time = 51.676639 + 0: The maximum resident set size (KB) = 194760 -Test 027 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1241,15 +1489,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 109.379107 - 0: The maximum resident set size (KB) = 437404 + 0: The total amount of wall time = 90.191850 + 0: The maximum resident set size (KB) = 440044 -Test 028 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1263,15 +1511,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 163.298087 - 0: The maximum resident set size (KB) = 435084 + 0: The total amount of wall time = 152.104050 + 0: The maximum resident set size (KB) = 437020 -Test 029 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1285,15 +1533,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.955525 - 0: The maximum resident set size (KB) = 435200 + 0: The total amount of wall time = 149.327633 + 0: The maximum resident set size (KB) = 436936 -Test 030 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1306,48 +1554,48 @@ Checking test 031 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 198.837032 - 0: The maximum resident set size (KB) = 821668 - -Test 031 control_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8_lndp -Checking test 032 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 197.208832 + 0: The maximum resident set size (KB) = 1379624 + +Test 034 control_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_lndp +Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,61 +1613,61 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 352.805977 - 0: The maximum resident set size (KB) = 826100 + 0: The total amount of wall time = 355.675742 + 0: The maximum resident set size (KB) = 1389300 -Test 032 control_p8_lndp PASS +Test 035 control_p8_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_restart_p8 -Checking test 033 control_restart_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 114.595793 - 0: The maximum resident set size (KB) = 558536 - -Test 033 control_restart_p8 PASS Tries: 2 - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 107.804813 + 0: The maximum resident set size (KB) = 551652 + +Test 036 control_restart_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,48 +1676,48 @@ Checking test 034 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 195.653804 - 0: The maximum resident set size (KB) = 816260 - -Test 034 control_decomp_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 200.823680 + 0: The maximum resident set size (KB) = 1397684 + +Test 037 control_decomp_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1478,48 +1726,48 @@ Checking test 035 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 250.480267 - 0: The maximum resident set size (KB) = 894568 - -Test 035 control_2threads_p8 PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 198.613032 + 0: The maximum resident set size (KB) = 1458808 + +Test 038 control_2threads_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1532,141 +1780,217 @@ Checking test 036 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 261.619525 - 0: The maximum resident set size (KB) = 938028 - -Test 036 control_p8_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_control -Checking test 037 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 263.946143 + 0: The maximum resident set size (KB) = 1461512 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/merra2_thompson +Checking test 040 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 221.754803 + 0: The maximum resident set size (KB) = 1407520 + +Test 040 merra2_thompson PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_control +Checking test 041 regional_control results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.842914 - 0: The maximum resident set size (KB) = 541496 + 0: The total amount of wall time = 352.411563 + 0: The maximum resident set size (KB) = 577696 -Test 037 regional_control PASS +Test 041 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_restart +Checking test 042 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 = 220.264300 - 0: The maximum resident set size (KB) = 539096 + 0: The total amount of wall time = 172.728688 + 0: The maximum resident set size (KB) = 577396 -Test 038 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_control_2dwrtdecomp -Checking test 039 regional_control_2dwrtdecomp results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_decomp +Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 349.043135 - 0: The maximum resident set size (KB) = 541544 + 0: The total amount of wall time = 358.774286 + 0: The maximum resident set size (KB) = 579184 -Test 039 regional_control_2dwrtdecomp PASS +Test 043 regional_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_noquilt -Checking test 040 regional_noquilt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2threads +Checking test 044 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 210.514990 + 0: The maximum resident set size (KB) = 585328 + +Test 044 regional_2threads PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_noquilt +Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK 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 = 370.779820 - 0: The maximum resident set size (KB) = 548240 + 0: The total amount of wall time = 370.301657 + 0: The maximum resident set size (KB) = 573008 -Test 040 regional_noquilt PASS +Test 045 regional_noquilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_2threads -Checking test 041 regional_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 274.846152 - 0: The maximum resident set size (KB) = 543240 + 0: The total amount of wall time = 348.356086 + 0: The maximum resident set size (KB) = 576816 -Test 041 regional_2threads PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_2dwrtdecomp +Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 380.860303 - 0: The maximum resident set size (KB) = 539276 + 0: The total amount of wall time = 356.395806 + 0: The maximum resident set size (KB) = 574788 -Test 042 regional_netcdf_parallel PASS +Test 047 regional_2dwrtdecomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_3km -Checking test 043 regional_3km results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_wofs +Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1676,15 +2000,15 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 291.866902 - 0: The maximum resident set size (KB) = 570904 + 0: The total amount of wall time = 424.177864 + 0: The maximum resident set size (KB) = 263200 -Test 043 regional_3km PASS +Test 048 regional_wofs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_control -Checking test 044 rap_control results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1697,102 +2021,48 @@ Checking test 044 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 445.521590 - 0: The maximum resident set size (KB) = 804888 - -Test 044 rap_control PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_rrtmgp -Checking test 045 rap_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 510.824080 - 0: The maximum resident set size (KB) = 921236 - -Test 045 rap_rrtmgp PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 487.231431 + 0: The maximum resident set size (KB) = 807648 + +Test 049 rap_control PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb +Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1802,15 +2072,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 346.204155 - 0: The maximum resident set size (KB) = 873492 + 0: The total amount of wall time = 350.176687 + 0: The maximum resident set size (KB) = 888148 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_2threads -Checking test 047 rap_2threads results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_decomp +Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,94 +2093,48 @@ Checking test 047 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 552.111188 - 0: The maximum resident set size (KB) = 866188 - -Test 047 rap_2threads PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_restart -Checking test 048 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 250.061593 - 0: The maximum resident set size (KB) = 544196 - -Test 048 rap_restart PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 510.855674 + 0: The maximum resident set size (KB) = 807144 + +Test 051 rap_decomp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,246 +2147,554 @@ Checking test 049 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 441.157064 - 0: The maximum resident set size (KB) = 804872 - -Test 049 rap_sfcdiff PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 474.056468 + 0: The maximum resident set size (KB) = 877760 + +Test 052 rap_2threads PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 250.060678 - 0: The maximum resident set size (KB) = 543756 - -Test 050 rap_sfcdiff_restart PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hrrr_control -Checking test 051 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 252.231660 + 0: The maximum resident set size (KB) = 553252 + +Test 053 rap_restart PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.122535 - 0: The maximum resident set size (KB) = 802372 - -Test 051 hrrr_control PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1beta -Checking test 052 rrfs_v1beta results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 482.738459 + 0: The maximum resident set size (KB) = 807456 + +Test 054 rap_sfcdiff PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_decomp +Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 501.665369 + 0: The maximum resident set size (KB) = 806696 + +Test 055 rap_sfcdiff_decomp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_restart +Checking test 056 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 362.526357 + 0: The maximum resident set size (KB) = 541380 + +Test 056 rap_sfcdiff_restart PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control +Checking test 057 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 468.150928 + 0: The maximum resident set size (KB) = 804948 + +Test 057 hrrr_control PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp +Checking test 058 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 486.045760 + 0: The maximum resident set size (KB) = 804500 + +Test 058 hrrr_control_decomp PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads +Checking test 059 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 438.433729 + 0: The maximum resident set size (KB) = 871300 + +Test 059 hrrr_control_2threads PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart +Checking test 060 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 352.149335 + 0: The maximum resident set size (KB) = 540568 + +Test 060 hrrr_control_restart PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta +Checking test 061 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 457.101638 - 0: The maximum resident set size (KB) = 797592 - -Test 052 rrfs_v1beta PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1nssl -Checking test 053 rrfs_v1nssl results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 472.079004 + 0: The maximum resident set size (KB) = 800796 + +Test 061 rrfs_v1beta PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl +Checking test 062 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 497.619928 - 0: The maximum resident set size (KB) = 489736 + 0: The total amount of wall time = 573.772403 + 0: The maximum resident set size (KB) = 491416 -Test 053 rrfs_v1nssl PASS +Test 062 rrfs_v1nssl PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1nssl_nohailnoccn -Checking test 054 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1nssl_nohailnoccn +Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 524.329426 - 0: The maximum resident set size (KB) = 481192 + 0: The total amount of wall time = 555.028993 + 0: The maximum resident set size (KB) = 485848 -Test 054 rrfs_v1nssl_nohailnoccn PASS +Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm +Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2170,15 +2702,15 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 207.536342 - 0: The maximum resident set size (KB) = 614096 + 0: The total amount of wall time = 147.482352 + 0: The maximum resident set size (KB) = 617552 -Test 055 rrfs_conus13km_hrrr_warm PASS +Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_smoke_conus13km_hrrr_warm +Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2186,69 +2718,63 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 206.436491 - 0: The maximum resident set size (KB) = 616900 + 0: The total amount of wall time = 163.067505 + 0: The maximum resident set size (KB) = 627640 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmgt -Checking test 057 control_csawmgt results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm +Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 388.588180 - 0: The maximum resident set size (KB) = 501268 + 0: The total amount of wall time = 151.675511 + 0: The maximum resident set size (KB) = 620864 -Test 057 control_csawmgt PASS +Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_flake -Checking test 058 control_flake results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 242.462668 - 0: The maximum resident set size (KB) = 505784 + 0: The total amount of wall time = 105.238398 + 0: The maximum resident set size (KB) = 629956 -Test 058 control_flake PASS +Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_ras -Checking test 059 control_ras results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_2threads +Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 184.168659 - 0: The maximum resident set size (KB) = 469992 + 0: The total amount of wall time = 108.424739 + 0: The maximum resident set size (KB) = 632604 -Test 059 control_ras PASS +Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson -Checking test 060 control_thompson results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt +Checking test 069 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2258,15 +2784,15 @@ Checking test 060 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 247.626618 - 0: The maximum resident set size (KB) = 818080 + 0: The total amount of wall time = 393.044749 + 0: The maximum resident set size (KB) = 505692 -Test 060 control_thompson PASS +Test 069 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_no_aero -Checking test 061 control_thompson_no_aero results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras +Checking test 070 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2276,55 +2802,55 @@ Checking test 061 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 258.901593 - 0: The maximum resident set size (KB) = 813376 + 0: The total amount of wall time = 197.662813 + 0: The maximum resident set size (KB) = 470848 -Test 061 control_thompson_no_aero PASS +Test 070 control_ras PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wam -Checking test 062 control_wam results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam +Checking test 071 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.490633 - 0: The maximum resident set size (KB) = 182200 + 0: The total amount of wall time = 128.057192 + 0: The maximum resident set size (KB) = 187928 -Test 062 control_wam PASS +Test 071 control_wam PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_debug -Checking test 063 control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_hrrr_warm_debug +Checking test 072 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 = 148.764233 - 0: The maximum resident set size (KB) = 598996 + 0: The total amount of wall time = 754.741209 + 0: The maximum resident set size (KB) = 649708 -Test 063 control_debug PASS +Test 072 rrfs_conus13km_hrrr_warm_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_2threads_debug -Checking test 064 control_2threads_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_conus13km_radar_tten_warm_debug +Checking test 073 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 = 255.871969 - 0: The maximum resident set size (KB) = 648152 + 0: The total amount of wall time = 777.773338 + 0: The maximum resident set size (KB) = 652268 -Test 064 control_2threads_debug PASS +Test 073 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_CubedSphereGrid_debug -Checking test 065 control_CubedSphereGrid_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_CubedSphereGrid_debug +Checking test 074 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2350,403 +2876,824 @@ Checking test 065 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 159.297153 - 0: The maximum resident set size (KB) = 599156 + 0: The total amount of wall time = 172.123969 + 0: The maximum resident set size (KB) = 601912 -Test 065 control_CubedSphereGrid_debug PASS +Test 074 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wrtGauss_netcdf_parallel_debug -Checking test 066 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wrtGauss_netcdf_parallel_debug +Checking test 075 control_wrtGauss_netcdf_parallel_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 = 181.745315 - 0: The maximum resident set size (KB) = 598932 + 0: The total amount of wall time = 193.363432 + 0: The maximum resident set size (KB) = 601152 -Test 066 control_wrtGauss_netcdf_parallel_debug PASS +Test 075 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_stochy_debug -Checking test 067 control_stochy_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_stochy_debug +Checking test 076 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 = 170.859715 - 0: The maximum resident set size (KB) = 603284 + 0: The total amount of wall time = 181.919608 + 0: The maximum resident set size (KB) = 607996 -Test 067 control_stochy_debug PASS +Test 076 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_lndp_debug -Checking test 068 control_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_lndp_debug +Checking test 077 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 = 153.106711 - 0: The maximum resident set size (KB) = 603020 + 0: The total amount of wall time = 161.882592 + 0: The maximum resident set size (KB) = 606232 -Test 068 control_lndp_debug PASS +Test 077 control_lndp_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmg_debug -Checking test 069 control_csawmg_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmg_debug +Checking test 078 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 = 243.410900 - 0: The maximum resident set size (KB) = 641264 + 0: The total amount of wall time = 262.193109 + 0: The maximum resident set size (KB) = 642496 -Test 069 control_csawmg_debug PASS +Test 078 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_csawmgt_debug -Checking test 070 control_csawmgt_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_csawmgt_debug +Checking test 079 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 = 238.902801 - 0: The maximum resident set size (KB) = 639888 + 0: The total amount of wall time = 249.989341 + 0: The maximum resident set size (KB) = 642760 -Test 070 control_csawmgt_debug PASS +Test 079 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_ras_debug -Checking test 071 control_ras_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_ras_debug +Checking test 080 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 = 154.852063 - 0: The maximum resident set size (KB) = 610544 + 0: The total amount of wall time = 163.897659 + 0: The maximum resident set size (KB) = 613796 -Test 071 control_ras_debug PASS +Test 080 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_diag_debug -Checking test 072 control_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_diag_debug +Checking test 081 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 = 157.534084 - 0: The maximum resident set size (KB) = 657184 + 0: The total amount of wall time = 165.627882 + 0: The maximum resident set size (KB) = 660540 -Test 072 control_diag_debug PASS +Test 081 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_debug_p8 -Checking test 073 control_debug_p8 results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_debug_p8 +Checking test 082 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.333417 - 0: The maximum resident set size (KB) = 985780 + 0: The total amount of wall time = 202.236683 + 0: The maximum resident set size (KB) = 1422832 -Test 073 control_debug_p8 PASS +Test 082 control_debug_p8 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_debug -Checking test 074 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_debug +Checking test 083 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 = 177.501883 - 0: The maximum resident set size (KB) = 960072 + 0: The total amount of wall time = 1038.343765 + 0: The maximum resident set size (KB) = 606740 -Test 074 control_thompson_debug PASS +Test 083 regional_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_no_aero_debug -Checking test 075 control_thompson_no_aero_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug +Checking test 084 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 = 171.074274 - 0: The maximum resident set size (KB) = 954780 + 0: The total amount of wall time = 290.569527 + 0: The maximum resident set size (KB) = 972272 -Test 075 control_thompson_no_aero_debug PASS +Test 084 rap_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_extdiag_debug -Checking test 076 control_thompson_extdiag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug +Checking test 085 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 = 184.987665 - 0: The maximum resident set size (KB) = 988580 + 0: The total amount of wall time = 287.186846 + 0: The maximum resident set size (KB) = 967056 -Test 076 control_thompson_extdiag_debug PASS +Test 085 hrrr_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_thompson_progcld_thompson_debug -Checking test 077 control_thompson_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_drag_suite_debug +Checking test 086 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 = 177.531237 - 0: The maximum resident set size (KB) = 959884 - -Test 077 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/regional_debug -Checking test 078 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 = 257.522443 - 0: The maximum resident set size (KB) = 566048 + 0: The total amount of wall time = 288.535682 + 0: The maximum resident set size (KB) = 972008 -Test 078 regional_debug PASS +Test 086 rap_unified_drag_suite_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_control_debug -Checking test 079 rap_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_diag_debug +Checking test 087 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 = 278.227247 - 0: The maximum resident set size (KB) = 965524 + 0: The total amount of wall time = 305.730512 + 0: The maximum resident set size (KB) = 1056360 -Test 079 rap_control_debug PASS +Test 087 rap_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_unified_drag_suite_debug -Checking test 080 rap_unified_drag_suite_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_cires_ugwp_debug +Checking test 088 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 = 278.229321 - 0: The maximum resident set size (KB) = 965708 + 0: The total amount of wall time = 296.693583 + 0: The maximum resident set size (KB) = 971364 -Test 080 rap_unified_drag_suite_debug PASS +Test 088 rap_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_diag_debug -Checking test 081 rap_diag_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_unified_ugwp_debug +Checking test 089 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 = 293.429614 - 0: The maximum resident set size (KB) = 1048156 + 0: The total amount of wall time = 294.336374 + 0: The maximum resident set size (KB) = 973596 -Test 081 rap_diag_debug PASS +Test 089 rap_unified_ugwp_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_cires_ugwp_debug -Checking test 082 rap_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_lndp_debug +Checking test 090 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 = 284.246328 - 0: The maximum resident set size (KB) = 963896 + 0: The total amount of wall time = 292.105830 + 0: The maximum resident set size (KB) = 972944 -Test 082 rap_cires_ugwp_debug PASS +Test 090 rap_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_unified_ugwp_debug -Checking test 083 rap_unified_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_flake_debug +Checking test 091 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 = 284.195613 - 0: The maximum resident set size (KB) = 965352 + 0: The total amount of wall time = 286.113166 + 0: The maximum resident set size (KB) = 972096 + +Test 091 rap_flake_debug PASS Tries: 2 -Test 083 rap_unified_ugwp_debug PASS +Test 092 rap_progcld_thompson_debug FAIL -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_lndp_debug -Checking test 084 rap_lndp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_debug +Checking test 093 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 = 281.231977 - 0: The maximum resident set size (KB) = 966120 + 0: The total amount of wall time = 281.365816 + 0: The maximum resident set size (KB) = 970708 -Test 084 rap_lndp_debug PASS +Test 093 rap_noah_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_flake_debug -Checking test 085 rap_flake_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_sfcdiff_debug +Checking test 094 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 = 278.312735 - 0: The maximum resident set size (KB) = 965744 + 0: The total amount of wall time = 287.234416 + 0: The maximum resident set size (KB) = 971972 -Test 085 rap_flake_debug PASS +Test 094 rap_sfcdiff_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_progcld_thompson_debug -Checking test 086 rap_progcld_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 095 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 = 278.459210 - 0: The maximum resident set size (KB) = 964960 + 0: The total amount of wall time = 470.193936 + 0: The maximum resident set size (KB) = 971348 -Test 086 rap_progcld_thompson_debug PASS +Test 095 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_noah_debug -Checking test 087 rap_noah_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rrfs_v1beta_debug +Checking test 096 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.051045 - 0: The maximum resident set size (KB) = 963564 + 0: The total amount of wall time = 282.435834 + 0: The maximum resident set size (KB) = 968076 -Test 087 rap_noah_debug PASS +Test 096 rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_rrtmgp_debug -Checking test 088 rap_rrtmgp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_wam_debug +Checking test 097 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK - 0: The total amount of wall time = 476.119525 - 0: The maximum resident set size (KB) = 1086480 + 0: The total amount of wall time = 296.087957 + 0: The maximum resident set size (KB) = 219180 -Test 088 rap_rrtmgp_debug PASS +Test 097 control_wam_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_sfcdiff_debug -Checking test 089 rap_sfcdiff_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + + 0: The total amount of wall time = 307.619068 + 0: The maximum resident set size (KB) = 788452 + +Test 098 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn32_phy32 +Checking test 099 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 383.169168 + 0: The maximum resident set size (KB) = 690732 + +Test 099 rap_control_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_dyn32_phy32 +Checking test 100 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 208.912954 + 0: The maximum resident set size (KB) = 689180 + +Test 100 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_2threads_dyn32_phy32 +Checking test 101 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 374.409374 + 0: The maximum resident set size (KB) = 740340 + +Test 101 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_2threads_dyn32_phy32 +Checking test 102 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 197.561012 + 0: The maximum resident set size (KB) = 742844 + +Test 102 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_decomp_dyn32_phy32 +Checking test 103 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 217.728540 + 0: The maximum resident set size (KB) = 688072 + +Test 103 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_restart_dyn32_phy32 +Checking test 104 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 295.086784 + 0: The maximum resident set size (KB) = 524968 + +Test 104 rap_restart_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_restart_dyn32_phy32 +Checking test 105 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 105.960686 + 0: The maximum resident set size (KB) = 516484 + +Test 105 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32 +Checking test 106 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 268.302443 + 0: The maximum resident set size (KB) = 713784 + +Test 106 rap_control_dyn64_phy32 PASS Tries: 2 + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_debug_dyn32_phy32 +Checking test 107 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 = 278.405712 - 0: The maximum resident set size (KB) = 965196 + 0: The total amount of wall time = 284.668619 + 0: The maximum resident set size (KB) = 856896 -Test 089 rap_sfcdiff_debug PASS +Test 107 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hrrr_control_debug_dyn32_phy32 +Checking test 108 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 = 464.647319 - 0: The maximum resident set size (KB) = 963600 + 0: The total amount of wall time = 280.625994 + 0: The maximum resident set size (KB) = 855072 -Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 108 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/rrfs_v1beta_debug -Checking test 091 rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/rap_control_dyn64_phy32_debug +Checking test 109 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.298483 - 0: The maximum resident set size (KB) = 964352 + 0: The total amount of wall time = 293.359177 + 0: The maximum resident set size (KB) = 880408 -Test 091 rrfs_v1beta_debug PASS +Test 109 rap_control_dyn64_phy32_debug PASS Tries: 2 -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_wam_debug -Checking test 092 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm +Checking test 110 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 290.412302 - 0: The maximum resident set size (KB) = 212688 + 0: The total amount of wall time = 272.827406 + 0: The maximum resident set size (KB) = 682612 -Test 092 control_wam_debug PASS +Test 110 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_thompson_gfdlsf -Checking test 094 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_thompson_gfdlsf +Checking test 111 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1814.978487 - 0: The maximum resident set size (KB) = 1019792 + 0: The total amount of wall time = 299.087577 + 0: The maximum resident set size (KB) = 1036596 -Test 094 hafs_regional_atm_thompson_gfdlsf PASS Tries: 2 +Test 111 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_ocn -Checking test 095 hafs_regional_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn +Checking test 112 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2754,59 +3701,63 @@ Checking test 095 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 = 426.976011 - 0: The maximum resident set size (KB) = 688608 + 0: The total amount of wall time = 438.740053 + 0: The maximum resident set size (KB) = 712128 -Test 095 hafs_regional_atm_ocn PASS +Test 112 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_wav -Checking test 096 hafs_regional_atm_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_wav +Checking test 113 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 874.702633 - 0: The maximum resident set size (KB) = 679232 + 0: The total amount of wall time = 932.136626 + 0: The maximum resident set size (KB) = 747372 -Test 096 hafs_regional_atm_wav PASS +Test 113 hafs_regional_atm_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_atm_ocn_wav -Checking test 097 hafs_regional_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_atm_ocn_wav +Checking test 114 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 2408.897592 - 0: The maximum resident set size (KB) = 697888 + 0: The total amount of wall time = 1033.833288 + 0: The maximum resident set size (KB) = 764012 -Test 097 hafs_regional_atm_ocn_wav PASS Tries: 2 +Test 114 hafs_regional_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_1nest_atm -Checking test 098 hafs_regional_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_1nest_atm +Checking test 115 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 = 545.442823 - 0: The maximum resident set size (KB) = 262972 + 0: The total amount of wall time = 384.165369 + 0: The maximum resident set size (KB) = 275916 -Test 098 hafs_regional_1nest_atm PASS +Test 115 hafs_regional_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_telescopic_2nests_atm -Checking test 099 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_telescopic_2nests_atm +Checking test 116 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2814,77 +3765,84 @@ Checking test 099 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 = 565.384459 - 0: The maximum resident set size (KB) = 260996 + 0: The total amount of wall time = 435.760968 + 0: The maximum resident set size (KB) = 282336 -Test 099 hafs_regional_telescopic_2nests_atm PASS +Test 116 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_1nest_atm -Checking test 100 hafs_global_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_1nest_atm +Checking test 117 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 = 1721.653168 - 0: The maximum resident set size (KB) = 164212 + 0: The total amount of wall time = 173.580236 + 0: The maximum resident set size (KB) = 177824 -Test 100 hafs_global_1nest_atm PASS Tries: 2 +Test 117 hafs_global_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_multiple_4nests_atm -Checking test 101 hafs_global_multiple_4nests_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_multiple_4nests_atm +Checking test 118 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 2131.130821 - 0: The maximum resident set size (KB) = 232776 + 0: The total amount of wall time = 505.880499 + 0: The maximum resident set size (KB) = 209868 -Test 101 hafs_global_multiple_4nests_atm PASS Tries: 2 +Test 118 hafs_global_multiple_4nests_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_specified_moving_1nest_atm -Checking test 102 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_specified_moving_1nest_atm +Checking test 119 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 322.146905 - 0: The maximum resident set size (KB) = 268452 + 0: The total amount of wall time = 237.305121 + 0: The maximum resident set size (KB) = 288444 -Test 102 hafs_regional_specified_moving_1nest_atm PASS +Test 119 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm -Checking test 103 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm +Checking test 120 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 = 320.882289 - 0: The maximum resident set size (KB) = 268052 + 0: The total amount of wall time = 226.177511 + 0: The maximum resident set size (KB) = 287124 -Test 103 hafs_regional_storm_following_1nest_atm PASS +Test 120 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm_ocn -Checking test 104 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn +Checking test 121 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2892,263 +3850,414 @@ Checking test 104 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 = 1810.696660 - 0: The maximum resident set size (KB) = 295404 + 0: The total amount of wall time = 261.955513 + 0: The maximum resident set size (KB) = 325092 -Test 104 hafs_regional_storm_following_1nest_atm_ocn PASS Tries: 2 +Test 121 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_global_storm_following_1nest_atm +Checking test 122 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 - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 2275.453674 - 0: The maximum resident set size (KB) = 312464 + 0: The total amount of wall time = 71.743742 + 0: The maximum resident set size (KB) = 192844 + +Test 122 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + + 0: The total amount of wall time = 775.234228 + 0: The maximum resident set size (KB) = 353732 -Test 105 hafs_regional_storm_following_1nest_atm_ocn_wav PASS Tries: 2 +Test 123 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_global_storm_following_1nest_atm -Checking test 106 hafs_global_storm_following_1nest_atm results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 129.688659 - 0: The maximum resident set size (KB) = 183100 + 0: The total amount of wall time = 744.257165 + 0: The maximum resident set size (KB) = 368372 -Test 106 hafs_global_storm_following_1nest_atm PASS Tries: 2 +Test 124 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_docn -Checking test 107 hafs_regional_docn results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn +Checking test 125 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 383.351690 - 0: The maximum resident set size (KB) = 693652 + 0: The total amount of wall time = 386.974894 + 0: The maximum resident set size (KB) = 723968 -Test 107 hafs_regional_docn PASS +Test 125 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_docn_oisst -Checking test 108 hafs_regional_docn_oisst results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_docn_oisst +Checking test 126 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 1832.242539 - 0: The maximum resident set size (KB) = 683924 + 0: The total amount of wall time = 391.347095 + 0: The maximum resident set size (KB) = 710268 -Test 108 hafs_regional_docn_oisst PASS Tries: 2 +Test 126 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/hafs_regional_datm_cdeps -Checking test 109 hafs_regional_datm_cdeps results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/hafs_regional_datm_cdeps +Checking test 127 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 = 2512.468266 - 0: The maximum resident set size (KB) = 807316 + 0: The total amount of wall time = 1169.053987 + 0: The maximum resident set size (KB) = 808968 -Test 109 hafs_regional_datm_cdeps PASS Tries: 2 +Test 127 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_control_cfsr -Checking test 110 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_cfsr +Checking test 128 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 148.802764 - 0: The maximum resident set size (KB) = 665428 + 0: The total amount of wall time = 166.453730 + 0: The maximum resident set size (KB) = 721072 -Test 110 datm_cdeps_control_cfsr PASS +Test 128 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_restart_cfsr -Checking test 111 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_restart_cfsr +Checking test 129 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 = 84.717534 - 0: The maximum resident set size (KB) = 684368 + 0: The total amount of wall time = 95.947139 + 0: The maximum resident set size (KB) = 716032 + +Test 129 datm_cdeps_restart_cfsr PASS + -Test 111 datm_cdeps_restart_cfsr PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_control_gefs +Checking test 130 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 = 159.743803 + 0: The maximum resident set size (KB) = 601048 +Test 130 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_control_gefs -Checking test 112 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_iau_gefs +Checking test 131 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 144.153915 - 0: The maximum resident set size (KB) = 565188 + 0: The total amount of wall time = 163.238110 + 0: The maximum resident set size (KB) = 601004 -Test 112 datm_cdeps_control_gefs PASS +Test 131 datm_cdeps_iau_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_iau_gefs -Checking test 113 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_stochy_gefs +Checking test 132 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 148.054538 - 0: The maximum resident set size (KB) = 565036 + 0: The total amount of wall time = 161.774148 + 0: The maximum resident set size (KB) = 601048 -Test 113 datm_cdeps_iau_gefs PASS +Test 132 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_stochy_gefs -Checking test 114 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_ciceC_cfsr +Checking test 133 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 145.184038 - 0: The maximum resident set size (KB) = 569172 + 0: The total amount of wall time = 167.037541 + 0: The maximum resident set size (KB) = 721140 -Test 114 datm_cdeps_stochy_gefs PASS +Test 133 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_bulk_cfsr -Checking test 115 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_cfsr +Checking test 134 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 = 147.358439 - 0: The maximum resident set size (KB) = 684308 + 0: The total amount of wall time = 165.115945 + 0: The maximum resident set size (KB) = 721164 -Test 115 datm_cdeps_bulk_cfsr PASS +Test 134 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_bulk_gefs -Checking test 116 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_bulk_gefs +Checking test 135 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 143.083778 - 0: The maximum resident set size (KB) = 569356 + 0: The total amount of wall time = 158.222040 + 0: The maximum resident set size (KB) = 601952 -Test 116 datm_cdeps_bulk_gefs PASS +Test 135 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_mx025_cfsr -Checking test 117 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_cfsr +Checking test 136 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK 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 = 1766.864624 - 0: The maximum resident set size (KB) = 481572 + 0: The total amount of wall time = 431.632027 + 0: The maximum resident set size (KB) = 497260 -Test 117 datm_cdeps_mx025_cfsr PASS +Test 136 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_mx025_gefs -Checking test 118 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_mx025_gefs +Checking test 137 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 1774.511088 - 0: The maximum resident set size (KB) = 449656 + 0: The total amount of wall time = 408.466324 + 0: The maximum resident set size (KB) = 476772 -Test 118 datm_cdeps_mx025_gefs PASS Tries: 2 +Test 137 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_multiple_files_cfsr -Checking test 119 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_multiple_files_cfsr +Checking test 138 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 = 147.173625 - 0: The maximum resident set size (KB) = 684504 + 0: The total amount of wall time = 165.902689 + 0: The maximum resident set size (KB) = 720996 -Test 119 datm_cdeps_multiple_files_cfsr PASS +Test 138 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_3072x1536_cfsr -Checking test 120 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_3072x1536_cfsr +Checking test 139 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.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 = 200.369999 - 0: The maximum resident set size (KB) = 1836636 + 0: The total amount of wall time = 255.082484 + 0: The maximum resident set size (KB) = 1948360 -Test 120 datm_cdeps_3072x1536_cfsr PASS +Test 139 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_gfs -Checking test 121 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_gfs +Checking test 140 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 = 202.056418 - 0: The maximum resident set size (KB) = 1836644 + 0: The total amount of wall time = 254.068460 + 0: The maximum resident set size (KB) = 1948276 -Test 121 datm_cdeps_gfs PASS +Test 140 datm_cdeps_gfs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/datm_cdeps_debug_cfsr -Checking test 122 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_debug_cfsr +Checking test 141 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.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 = 364.322220 - 0: The maximum resident set size (KB) = 689652 + 0: The total amount of wall time = 374.584871 + 0: The maximum resident set size (KB) = 714832 + +Test 141 datm_cdeps_debug_cfsr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3 +Checking test 142 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 14.116383 + 0: The maximum resident set size (KB) = 145876 -Test 122 datm_cdeps_debug_cfsr PASS +Test 142 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_atmwav -Checking test 123 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/datm_cdeps_lnd_gswp3_rst +Checking test 143 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 22.627641 + 0: The maximum resident set size (KB) = 153908 + +Test 143 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_p8_atmlnd_sbs +Checking test 144 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 233.321711 + 0: The maximum resident set size (KB) = 1425160 + +Test 144 control_p8_atmlnd_sbs PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/control_atmwav +Checking test 145 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3157,102 +4266,151 @@ Checking test 123 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 119.998621 - 0: The maximum resident set size (KB) = 445192 + 0: The total amount of wall time = 94.726500 + 0: The maximum resident set size (KB) = 450724 -Test 123 control_atmwav PASS Tries: 2 +Test 145 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_c384gdas_wav -Checking test 124 control_c384gdas_wav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8 +Checking test 146 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 244.531048 + 0: The maximum resident set size (KB) = 1461416 + +Test 146 atmaero_control_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad +Checking test 147 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF03 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF03 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.030000.restart.aoc_9km .........OK - Comparing 20210322.030000.restart.gnh_10m .........OK - Comparing 20210322.030000.restart.gsh_15m .........OK - - 0: The total amount of wall time = 2862.940538 - 0: The maximum resident set size (KB) = 960160 - -Test 124 control_c384gdas_wav PASS - - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atm_aerosols -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43298/control_atm_aerosols -Checking test 125 control_atm_aerosols results .... + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 299.230987 + 0: The maximum resident set size (KB) = 1481800 + +Test 147 atmaero_control_p8_rad PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/atmaero_control_p8_rad_micro +Checking test 148 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3261,73 +4419,155 @@ Checking test 125 control_atm_aerosols results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1768.854675 - 0: The maximum resident set size (KB) = 817992 - -Test 125 control_atm_aerosols PASS + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 307.054533 + 0: The maximum resident set size (KB) = 1503892 + +Test 148 atmaero_control_p8_rad_micro PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_22463/regional_atmaq +Checking test 149 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 636.231552 + 0: The maximum resident set size (KB) = 1087232 + +Test 149 regional_atmaq PASS FAILED TESTS: -Test hafs_regional_atm 093 failed in run_test failed +Test cpld_debug_p8 015 failed in run_test failed +Test rap_progcld_thompson_debug 092 failed in run_test failed REGRESSION TEST FAILED -Wed May 11 06:03:43 EDT 2022 -Elapsed time: 08h:02m:25s. Have a nice day! - -Wed May 11 06:32:42 EDT 2022 +Tue Feb 28 18:43:02 EST 2023 +Elapsed time: 06h:09m:03s. Have a nice day! +Tue Feb 28 19:56:54 EST 2023 Start Regression test -Compile 001 elapsed time 553 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_ -gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 716 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 002 elapsed time 608 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/cpld_debug_p8 +Checking test 001 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 583.282275 + 0: The maximum resident set size (KB) = 1625816 + +Test 001 cpld_debug_p8 PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lustre/f2/scratch/Zachary.Shrader/FV3_RT/rt_14293/rap_progcld_thompson_debug +Checking test 002 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/Brian.Curtis/FV3_RT/rt_35565/hafs_regional_atm -Checking test 001 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK + 0: The total amount of wall time = 285.729743 + 0: The maximum resident set size (KB) = 972060 - 0: The total amount of wall time = 294.683398 - 0: The maximum resident set size (KB) = 664184 +Test 002 rap_progcld_thompson_debug PASS -Test 001 hafs_regional_atm PASS REGRESSION TEST WAS SUCCESSFUL -Wed May 11 06:52:38 EDT 2022 -Elapsed time: 00h:19m:57s. Have a nice day! +Tue Feb 28 20:24:42 EST 2023 +Elapsed time: 00h:27m:49s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 8b94bee56c..e96473c051 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,163 +1,68 @@ -Mon May 16 16:46:18 UTC 2022 +Tue Feb 28 17:18:21 UTC 2023 Start Regression test -Compile 001 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,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 300 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 101 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 218 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 115 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 115 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control -Checking test 001 control results .... +Compile 001 elapsed time 180 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 182 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 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 100 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 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 386 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 310 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 256 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 222 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 141 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 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_c48 +Checking test 001 control_c48 results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 814.397935 - 0: The maximum resident set size (KB) = 482728 - -Test 001 control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_restart -Checking test 002 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 380.686156 - 0: The maximum resident set size (KB) = 183032 - -Test 002 control_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_c48 -Checking test 003 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 674.784965 -0: The maximum resident set size (KB) = 696760 - -Test 003 control_c48 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_stochy -Checking test 004 control_stochy results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 681.995352 +0: The maximum resident set size (KB) = 703460 + +Test 001 control_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_stochy +Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -167,33 +72,15 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 613.015807 - 0: The maximum resident set size (KB) = 481620 - -Test 004 control_stochy PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_flake -Checking test 005 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 1436.672495 - 0: The maximum resident set size (KB) = 524264 + 0: The total amount of wall time = 650.806372 + 0: The maximum resident set size (KB) = 477796 -Test 005 control_flake PASS +Test 002 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson -Checking test 006 control_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_ras +Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -203,51 +90,15 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 996.436004 - 0: The maximum resident set size (KB) = 845872 + 0: The total amount of wall time = 823.581703 + 0: The maximum resident set size (KB) = 487412 -Test 006 control_thompson PASS +Test 003 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson_no_aero -Checking test 007 control_thompson_no_aero results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 994.638357 - 0: The maximum resident set size (KB) = 833300 - -Test 007 control_thompson_no_aero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_ras -Checking test 008 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 814.587835 - 0: The maximum resident set size (KB) = 489560 - -Test 008 control_ras PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_p8 -Checking test 009 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_p8 +Checking test 004 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -260,48 +111,48 @@ Checking test 009 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 873.654033 - 0: The maximum resident set size (KB) = 830340 - -Test 009 control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_control -Checking test 010 rap_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 883.743504 + 0: The maximum resident set size (KB) = 1236324 + +Test 004 control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control +Checking test 005 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -314,48 +165,48 @@ Checking test 010 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1401.431442 - 0: The maximum resident set size (KB) = 831832 - -Test 010 rap_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_2threads -Checking test 011 rap_2threads results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1505.343195 + 0: The maximum resident set size (KB) = 827564 + +Test 005 rap_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_decomp +Checking test 006 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -368,94 +219,48 @@ Checking test 011 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1478.955922 - 0: The maximum resident set size (KB) = 895560 - -Test 011 rap_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_restart -Checking test 012 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 676.996526 - 0: The maximum resident set size (KB) = 542636 - -Test 012 rap_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_sfcdiff -Checking test 013 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1497.239260 + 0: The maximum resident set size (KB) = 826780 + +Test 006 rap_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads +Checking test 007 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -468,201 +273,509 @@ Checking test 013 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1385.709205 - 0: The maximum resident set size (KB) = 831712 - -Test 013 rap_sfcdiff PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_sfcdiff_restart -Checking test 014 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1395.296250 + 0: The maximum resident set size (KB) = 899828 + +Test 007 rap_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart +Checking test 008 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 681.721467 - 0: The maximum resident set size (KB) = 545884 - -Test 014 rap_sfcdiff_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/hrrr_control -Checking test 015 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 723.548459 + 0: The maximum resident set size (KB) = 545176 + +Test 008 rap_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff +Checking test 009 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1401.580422 - 0: The maximum resident set size (KB) = 830860 - -Test 015 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rrfs_v1beta + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1468.993275 + 0: The maximum resident set size (KB) = 825568 + +Test 009 rap_sfcdiff PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_decomp +Checking test 010 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1418.171232 + 0: The maximum resident set size (KB) = 825952 + +Test 010 rap_sfcdiff_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_sfcdiff_restart +Checking test 011 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1073.372238 + 0: The maximum resident set size (KB) = 554372 + +Test 011 rap_sfcdiff_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control +Checking test 012 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1453.890472 + 0: The maximum resident set size (KB) = 831164 + +Test 012 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads +Checking test 013 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1362.051701 + 0: The maximum resident set size (KB) = 893208 + +Test 013 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp +Checking test 014 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1419.127555 + 0: The maximum resident set size (KB) = 828608 + +Test 014 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart +Checking test 015 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1061.841752 + 0: The maximum resident set size (KB) = 548908 + +Test 015 hrrr_control_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1400.696358 - 0: The maximum resident set size (KB) = 828884 + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1448.064702 + 0: The maximum resident set size (KB) = 825300 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -671,15 +784,15 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1536.202992 - 0: The maximum resident set size (KB) = 642720 + 0: The total amount of wall time = 769.900404 + 0: The maximum resident set size (KB) = 636516 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rrfs_conus13km_radar_tten_warm -Checking test 018 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_smoke_conus13km_hrrr_warm +Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -687,15 +800,15 @@ Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1553.185717 - 0: The maximum resident set size (KB) = 642064 + 0: The total amount of wall time = 789.567918 + 0: The maximum resident set size (KB) = 651592 -Test 018 rrfs_conus13km_radar_tten_warm PASS +Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rrfs_smoke_conus13km_hrrr_warm -Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm +Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -703,237 +816,755 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1561.633748 - 0: The maximum resident set size (KB) = 652492 + 0: The total amount of wall time = 755.956341 + 0: The maximum resident set size (KB) = 638848 -Test 019 rrfs_smoke_conus13km_hrrr_warm PASS +Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_debug -Checking test 020 control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rrfs_conus13km_radar_tten_warm_2threads +Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 98.239991 - 0: The maximum resident set size (KB) = 478088 + 0: The total amount of wall time = 885.814415 + 0: The maximum resident set size (KB) = 637104 -Test 020 control_debug PASS +Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 125.089479 - 0: The maximum resident set size (KB) = 531564 + 0: The total amount of wall time = 128.243754 + 0: The maximum resident set size (KB) = 534476 Test 021 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/regional_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 127.390019 - 0: The maximum resident set size (KB) = 552876 + 0: The total amount of wall time = 700.252699 + 0: The maximum resident set size (KB) = 594120 Test 022 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 164.534027 - 0: The maximum resident set size (KB) = 854340 + 0: The total amount of wall time = 172.706799 + 0: The maximum resident set size (KB) = 844760 Test 023 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_diag_debug -Checking test 024 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 202.527109 - 0: The maximum resident set size (KB) = 930880 + 0: The total amount of wall time = 170.575272 + 0: The maximum resident set size (KB) = 840912 -Test 024 rap_diag_debug PASS +Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 265.893637 - 0: The maximum resident set size (KB) = 845552 + 0: The total amount of wall time = 215.055794 + 0: The maximum resident set size (KB) = 926236 -Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 025 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rap_progcld_thompson_debug -Checking test 026 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 166.330213 - 0: The maximum resident set size (KB) = 850960 + 0: The total amount of wall time = 270.294493 + 0: The maximum resident set size (KB) = 847904 -Test 026 rap_progcld_thompson_debug PASS +Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/rrfs_v1beta_debug -Checking test 027 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 163.970102 - 0: The maximum resident set size (KB) = 842908 + 0: The total amount of wall time = 178.101190 + 0: The maximum resident set size (KB) = 845300 -Test 027 rrfs_v1beta_debug PASS +Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson_debug -Checking test 028 control_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 114.838109 - 0: The maximum resident set size (KB) = 837456 + 0: The total amount of wall time = 177.743407 + 0: The maximum resident set size (KB) = 842864 -Test 028 control_thompson_debug PASS +Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson_no_aero_debug -Checking test 029 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 109.368831 - 0: The maximum resident set size (KB) = 834024 + 0: The total amount of wall time = 103.041127 + 0: The maximum resident set size (KB) = 484492 -Test 029 control_thompson_no_aero_debug PASS +Test 029 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson_extdiag_debug -Checking test 030 control_thompson_extdiag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 131.547310 - 0: The maximum resident set size (KB) = 871420 + 0: The total amount of wall time = 117.235254 + 0: The maximum resident set size (KB) = 480624 -Test 030 control_thompson_extdiag_debug PASS +Test 030 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_thompson_progcld_thompson_debug -Checking test 031 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 111.229506 - 0: The maximum resident set size (KB) = 841896 + 0: The total amount of wall time = 118.628295 + 0: The maximum resident set size (KB) = 1236320 + +Test 031 control_debug_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 575.808646 + 0: The maximum resident set size (KB) = 653820 + +Test 032 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 551.560096 + 0: The maximum resident set size (KB) = 655992 + +Test 033 rrfs_conus13km_radar_tten_warm_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/control_wam_debug +Checking test 034 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -Test 031 control_thompson_progcld_thompson_debug PASS + 0: The total amount of wall time = 184.147770 + 0: The maximum resident set size (KB) = 193420 +Test 034 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_ras_debug -Checking test 032 control_ras_debug results .... + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn32_phy32 +Checking test 035 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1419.930772 + 0: The maximum resident set size (KB) = 685984 + +Test 035 rap_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_dyn32_phy32 +Checking test 036 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 731.249018 + 0: The maximum resident set size (KB) = 688044 + +Test 036 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_2threads_dyn32_phy32 +Checking test 037 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1319.444562 + 0: The maximum resident set size (KB) = 730604 + +Test 037 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_2threads_dyn32_phy32 +Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 668.123702 + 0: The maximum resident set size (KB) = 728524 + +Test 038 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_decomp_dyn32_phy32 +Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 721.478766 + 0: The maximum resident set size (KB) = 682736 + +Test 039 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_restart_dyn32_phy32 +Checking test 040 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1065.043011 + 0: The maximum resident set size (KB) = 512088 + +Test 040 rap_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/hrrr_control_restart_dyn32_phy32 +Checking test 041 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 364.269706 + 0: The maximum resident set size (KB) = 512352 + +Test 041 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/rap_control_dyn64_phy32 +Checking test 042 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1071.739973 + 0: The maximum resident set size (KB) = 709080 + +Test 042 rap_control_dyn64_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 100.046455 - 0: The maximum resident set size (KB) = 487260 + 0: The total amount of wall time = 174.725396 + 0: The maximum resident set size (KB) = 709280 -Test 032 control_ras_debug PASS +Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_stochy_debug -Checking test 033 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 116.904354 - 0: The maximum resident set size (KB) = 480144 + 0: The total amount of wall time = 170.059599 + 0: The maximum resident set size (KB) = 708380 -Test 033 control_stochy_debug PASS +Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_debug_p8 -Checking test 034 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/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 = 111.394142 - 0: The maximum resident set size (KB) = 830132 + 0: The total amount of wall time = 204.468927 + 0: The maximum resident set size (KB) = 725104 -Test 034 control_debug_p8 PASS +Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/control_wam_debug -Checking test 035 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_p8 +Checking test 046 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 179.758914 - 0: The maximum resident set size (KB) = 190844 + 0: The total amount of wall time = 1754.270977 + 0: The maximum resident set size (KB) = 1430092 -Test 035 control_wam_debug PASS +Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/cpld_control_c96_noaero_p8 -Checking test 036 cpld_control_c96_noaero_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_control_nowave_noaero_p8 +Checking test 047 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -958,118 +1589,121 @@ Checking test 036 cpld_control_c96_noaero_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 1116.684147 - 0: The maximum resident set size (KB) = 861964 - -Test 036 cpld_control_c96_noaero_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/cpld_debug_noaero_p8 -Checking test 037 cpld_debug_noaero_p8 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 573.144659 - 0: The maximum resident set size (KB) = 871412 - -Test 037 cpld_debug_noaero_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10259/datm_cdeps_control_cfsr -Checking test 038 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK + 0: The total amount of wall time = 1207.285492 + 0: The maximum resident set size (KB) = 1334824 + +Test 047 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/cpld_debug_p8 +Checking test 048 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 889.194595 + 0: The maximum resident set size (KB) = 1446572 + +Test 048 cpld_debug_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29574/datm_cdeps_control_cfsr +Checking test 049 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 164.774040 - 0: The maximum resident set size (KB) = 628520 + 0: The total amount of wall time = 175.226684 + 0: The maximum resident set size (KB) = 663140 -Test 038 datm_cdeps_control_cfsr PASS +Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 16 17:54:43 UTC 2022 -Elapsed time: 01h:08m:25s. Have a nice day! +Tue Feb 28 20:16:54 UTC 2023 +Elapsed time: 02h:58m:36s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 8eb7a1f303..9690785037 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,26 +1,39 @@ -Mon May 16 18:09:52 UTC 2022 +Tue Feb 28 17:02:57 UTC 2023 Start Regression test -Compile 001 elapsed time 567 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 214 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 320 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 351 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 005 elapsed time 325 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 179 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 176 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 175 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 558 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 523 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 186 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 101 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 507 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 332 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +Compile 001 elapsed time 613 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 596 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 558 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 215 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 209 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 498 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 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 474 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 476 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,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 450 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 432 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 203 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 174 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 435 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 442 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 175 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 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 557 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 183 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 622 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 539 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 022 elapsed time 184 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 105 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 52 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 471 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 523 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 454 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 169 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -45,55 +58,66 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 353.564981 - 0: The maximum resident set size (KB) = 1132576 + 0: The total amount of wall time = 303.532610 + 0: The maximum resident set size (KB) = 3146468 -Test 001 cpld_control_p8 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -106,55 +130,125 @@ Checking test 002 cpld_2threads_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 223.457946 + 0: The maximum resident set size (KB) = 1730508 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 432.929166 - 0: The maximum resident set size (KB) = 1708204 + 0: The total amount of wall time = 335.680410 + 0: The maximum resident set size (KB) = 3176712 -Test 002 cpld_2threads_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -167,55 +261,114 @@ Checking test 003 cpld_decomp_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 192.921637 + 0: The maximum resident set size (KB) = 3049552 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 351.385447 - 0: The maximum resident set size (KB) = 1128544 + 0: The total amount of wall time = 353.531541 + 0: The maximum resident set size (KB) = 3504052 -Test 003 cpld_decomp_p8 PASS +Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -228,108 +381,416 @@ Checking test 004 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 337.312641 + 0: The maximum resident set size (KB) = 3163776 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 290.640503 - 0: The maximum resident set size (KB) = 1045948 + 0: The total amount of wall time = 279.787983 + 0: The maximum resident set size (KB) = 3020704 -Test 004 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_bmark_p8 -Checking test 005 cpld_bmark_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 335.774463 + 0: The maximum resident set size (KB) = 3177544 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c192_p8 +Checking test 009 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 578.791677 + 0: The maximum resident set size (KB) = 3252664 + +Test 009 cpld_control_c192_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c192_p8 +Checking test 010 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 400.279222 + 0: The maximum resident set size (KB) = 3151064 + +Test 010 cpld_restart_c192_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_bmark_p8 +Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1059.150266 - 0: The maximum resident set size (KB) = 2839836 + 0: The total amount of wall time = 694.111111 + 0: The maximum resident set size (KB) = 4041660 -Test 005 cpld_bmark_p8 PASS +Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_bmark_p8 +Checking test 012 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 431.622391 + 0: The maximum resident set size (KB) = 3968248 + +Test 012 cpld_restart_bmark_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -354,52 +815,65 @@ Checking test 006 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 345.226360 - 0: The maximum resident set size (KB) = 1144392 + 0: The total amount of wall time = 259.351943 + 0: The maximum resident set size (KB) = 1718876 -Test 006 cpld_control_c96_p8 PASS +Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -412,270 +886,296 @@ Checking test 007 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 189.446231 - 0: The maximum resident set size (KB) = 1108784 - -Test 007 cpld_restart_c96_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_control_c192_p8 -Checking test 008 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 1460.930911 - 0: The maximum resident set size (KB) = 1582560 - -Test 008 cpld_control_c192_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 966.373336 - 0: The maximum resident set size (KB) = 1814584 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_control_c384_p8 -Checking test 010 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1173.095757 - 0: The maximum resident set size (KB) = 2825548 - -Test 010 cpld_control_c384_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_restart_c384_p8 -Checking test 011 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 658.104421 - 0: The maximum resident set size (KB) = 2807412 - -Test 011 cpld_restart_c384_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/cpld_debug_p8 -Checking test 012 cpld_debug_p8 results .... + 0: The total amount of wall time = 255.805177 + 0: The maximum resident set size (KB) = 1766636 + +Test 014 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 658.148590 + 0: The maximum resident set size (KB) = 3243720 + +Test 015 cpld_debug_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 402.269255 + 0: The maximum resident set size (KB) = 1741528 + +Test 016 cpld_debug_noaero_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 266.006258 + 0: The maximum resident set size (KB) = 1760240 + +Test 017 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 583.314755 + 0: The maximum resident set size (KB) = 2806780 + +Test 018 cpld_control_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -688,316 +1188,108 @@ Checking test 012 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1036.479952 - 0: The maximum resident set size (KB) = 1269608 - -Test 012 cpld_debug_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 134.159405 - 0: The maximum resident set size (KB) = 467024 - -Test 013 control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 136.541688 - 0: The maximum resident set size (KB) = 464540 - -Test 014 control_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_2dwrtdecomp -Checking test 015 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 126.111730 - 0: The maximum resident set size (KB) = 463528 - -Test 015 control_2dwrtdecomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_2threads -Checking test 016 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 153.836112 - 0: The maximum resident set size (KB) = 515160 - -Test 016 control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_restart -Checking test 017 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 66.308479 - 0: The maximum resident set size (KB) = 210412 - -Test 017 control_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_fhzero -Checking test 018 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 122.237023 - 0: The maximum resident set size (KB) = 468632 - -Test 018 control_fhzero PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 155.823186 + 0: The maximum resident set size (KB) = 2796916 + +Test 019 cpld_warmstart_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 81.003502 + 0: The maximum resident set size (KB) = 2248572 + +Test 020 cpld_restart_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1023,15 +1315,29 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 124.626362 - 0: The maximum resident set size (KB) = 466028 + 0: The total amount of wall time = 128.517604 + 0: The maximum resident set size (KB) = 624612 + +Test 021 control_CubedSphereGrid PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 128.805804 + 0: The maximum resident set size (KB) = 629692 -Test 019 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1041,16 +1347,16 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 124.793205 - 0: The maximum resident set size (KB) = 468624 + 0: The total amount of wall time = 132.544540 + 0: The maximum resident set size (KB) = 627356 -Test 020 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -1059,61 +1365,61 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.274662 - 0: The maximum resident set size (KB) = 467784 + 0: The total amount of wall time = 135.205680 + 0: The maximum resident set size (KB) = 628992 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 325.260400 -0: The maximum resident set size (KB) = 659368 - -Test 022 control_c48 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_c192 -Checking test 023 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 368.759295 +0: The maximum resident set size (KB) = 803952 + +Test 025 control_c48 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1123,15 +1429,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 478.001495 - 0: The maximum resident set size (KB) = 563992 + 0: The total amount of wall time = 524.527985 + 0: The maximum resident set size (KB) = 759524 -Test 023 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1141,15 +1447,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 650.519616 - 0: The maximum resident set size (KB) = 836064 + 0: The total amount of wall time = 539.089063 + 0: The maximum resident set size (KB) = 1254748 -Test 024 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1158,48 +1464,48 @@ Checking test 025 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 592.439034 - 0: The maximum resident set size (KB) = 991728 - -Test 025 control_c384gdas PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_stochy -Checking test 026 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 467.793097 + 0: The maximum resident set size (KB) = 1368604 + +Test 028 control_c384gdas PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,29 +1515,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.283411 - 0: The maximum resident set size (KB) = 471600 + 0: The total amount of wall time = 86.129680 + 0: The maximum resident set size (KB) = 629680 -Test 026 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_restart +Checking test 030 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 = 44.507198 - 0: The maximum resident set size (KB) = 250200 + 0: The total amount of wall time = 47.192091 + 0: The maximum resident set size (KB) = 482984 -Test 027 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1241,15 +1547,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.091400 - 0: The maximum resident set size (KB) = 471464 + 0: The total amount of wall time = 80.431965 + 0: The maximum resident set size (KB) = 630616 -Test 028 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1263,15 +1569,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.919254 - 0: The maximum resident set size (KB) = 465164 + 0: The total amount of wall time = 133.889333 + 0: The maximum resident set size (KB) = 627540 -Test 029 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1285,15 +1591,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.462403 - 0: The maximum resident set size (KB) = 470992 + 0: The total amount of wall time = 133.523047 + 0: The maximum resident set size (KB) = 625384 -Test 030 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1306,48 +1612,48 @@ Checking test 031 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 169.579376 - 0: The maximum resident set size (KB) = 852988 - -Test 031 control_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_p8_lndp -Checking test 032 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 166.701506 + 0: The maximum resident set size (KB) = 1605472 + +Test 034 control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_lndp +Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,61 +1671,61 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 323.694373 - 0: The maximum resident set size (KB) = 857040 + 0: The total amount of wall time = 310.023083 + 0: The maximum resident set size (KB) = 1601464 -Test 032 control_p8_lndp PASS +Test 035 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_restart_p8 -Checking test 033 control_restart_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 91.430612 - 0: The maximum resident set size (KB) = 596008 - -Test 033 control_restart_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 87.477865 + 0: The maximum resident set size (KB) = 876128 + +Test 036 control_restart_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,48 +1734,48 @@ Checking test 034 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.189527 - 0: The maximum resident set size (KB) = 850204 - -Test 034 control_decomp_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 171.411649 + 0: The maximum resident set size (KB) = 1589096 + +Test 037 control_decomp_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1478,48 +1784,48 @@ Checking test 035 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 199.408919 - 0: The maximum resident set size (KB) = 930944 - -Test 035 control_2threads_p8 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 161.928273 + 0: The maximum resident set size (KB) = 1683492 + +Test 038 control_2threads_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1532,141 +1838,217 @@ Checking test 036 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 197.123582 - 0: The maximum resident set size (KB) = 974364 - -Test 036 control_p8_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_control -Checking test 037 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 223.900188 + 0: The maximum resident set size (KB) = 1673148 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/merra2_thompson +Checking test 040 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 189.371784 + 0: The maximum resident set size (KB) = 1610608 + +Test 040 merra2_thompson PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_control +Checking test 041 regional_control results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 297.028026 + 0: The maximum resident set size (KB) = 866480 + +Test 041 regional_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_restart +Checking test 042 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 = 335.209326 - 0: The maximum resident set size (KB) = 584376 + 0: The total amount of wall time = 150.810841 + 0: The maximum resident set size (KB) = 862644 -Test 037 regional_control PASS +Test 042 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_decomp +Checking test 043 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.600038 - 0: The maximum resident set size (KB) = 583756 + 0: The total amount of wall time = 313.217090 + 0: The maximum resident set size (KB) = 865532 -Test 038 regional_restart PASS +Test 043 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_control_2dwrtdecomp -Checking test 039 regional_control_2dwrtdecomp results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2threads +Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 330.124009 - 0: The maximum resident set size (KB) = 582176 + 0: The total amount of wall time = 181.549186 + 0: The maximum resident set size (KB) = 841956 -Test 039 regional_control_2dwrtdecomp PASS +Test 044 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_noquilt -Checking test 040 regional_noquilt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_noquilt +Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK 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 = 345.453129 - 0: The maximum resident set size (KB) = 594228 + 0: The total amount of wall time = 318.045214 + 0: The maximum resident set size (KB) = 855320 -Test 040 regional_noquilt PASS +Test 045 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_2threads -Checking test 041 regional_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 238.310818 - 0: The maximum resident set size (KB) = 582376 + 0: The total amount of wall time = 291.965836 + 0: The maximum resident set size (KB) = 858420 -Test 041 regional_2threads PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_2dwrtdecomp +Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 327.459491 - 0: The maximum resident set size (KB) = 584856 + 0: The total amount of wall time = 296.428766 + 0: The maximum resident set size (KB) = 869008 -Test 042 regional_netcdf_parallel PASS +Test 047 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_3km -Checking test 043 regional_3km results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_wofs +Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1676,15 +2058,15 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 261.190828 - 0: The maximum resident set size (KB) = 622992 + 0: The total amount of wall time = 376.187980 + 0: The maximum resident set size (KB) = 628372 -Test 043 regional_3km PASS +Test 048 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_control -Checking test 044 rap_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1697,102 +2079,48 @@ Checking test 044 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.536144 - 0: The maximum resident set size (KB) = 842796 - -Test 044 rap_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_rrtmgp -Checking test 045 rap_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 466.476866 - 0: The maximum resident set size (KB) = 959296 - -Test 045 rap_rrtmgp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 458.680010 + 0: The maximum resident set size (KB) = 1056996 + +Test 049 rap_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb +Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1802,15 +2130,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 311.689219 - 0: The maximum resident set size (KB) = 934788 + 0: The total amount of wall time = 279.940854 + 0: The maximum resident set size (KB) = 1178228 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_2threads -Checking test 047 rap_2threads results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_decomp +Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,94 +2151,48 @@ Checking test 047 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 510.831483 - 0: The maximum resident set size (KB) = 905080 - -Test 047 rap_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_restart -Checking test 048 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 221.686117 - 0: The maximum resident set size (KB) = 597820 - -Test 048 rap_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 478.742838 + 0: The maximum resident set size (KB) = 1007332 + +Test 051 rap_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,262 +2205,554 @@ Checking test 049 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 446.654563 - 0: The maximum resident set size (KB) = 840752 - -Test 049 rap_sfcdiff PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 443.971590 + 0: The maximum resident set size (KB) = 1134416 + +Test 052 rap_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 223.108236 - 0: The maximum resident set size (KB) = 595512 - -Test 050 rap_sfcdiff_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hrrr_control -Checking test 051 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 233.228514 + 0: The maximum resident set size (KB) = 966608 + +Test 053 rap_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 435.333757 - 0: The maximum resident set size (KB) = 838688 - -Test 051 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_v1beta -Checking test 052 rrfs_v1beta results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 452.850412 + 0: The maximum resident set size (KB) = 1062268 + +Test 054 rap_sfcdiff PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_decomp +Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 429.128528 - 0: The maximum resident set size (KB) = 836964 - -Test 052 rrfs_v1beta PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_v1nssl -Checking test 053 rrfs_v1nssl results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 476.642848 + 0: The maximum resident set size (KB) = 1003632 + +Test 055 rap_sfcdiff_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_restart +Checking test 056 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 341.477942 + 0: The maximum resident set size (KB) = 992952 + +Test 056 rap_sfcdiff_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control +Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 475.194014 - 0: The maximum resident set size (KB) = 527524 - -Test 053 rrfs_v1nssl PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_v1nssl_nohailnoccn -Checking test 054 rrfs_v1nssl_nohailnoccn results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 435.484871 + 0: The maximum resident set size (KB) = 1059276 + +Test 057 hrrr_control PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp +Checking test 058 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 454.204363 + 0: The maximum resident set size (KB) = 1004020 + +Test 058 hrrr_control_decomp PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads +Checking test 059 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 416.065655 + 0: The maximum resident set size (KB) = 1137532 + +Test 059 hrrr_control_2threads PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart +Checking test 060 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 329.340291 + 0: The maximum resident set size (KB) = 987348 + +Test 060 hrrr_control_restart PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta +Checking test 061 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 447.941615 + 0: The maximum resident set size (KB) = 1054504 + +Test 061 rrfs_v1beta PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl +Checking test 062 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 464.363395 - 0: The maximum resident set size (KB) = 515376 + 0: The total amount of wall time = 525.429126 + 0: The maximum resident set size (KB) = 694884 -Test 054 rrfs_v1nssl_nohailnoccn PASS +Test 062 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1nssl_nohailnoccn +Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 180.731697 - 0: The maximum resident set size (KB) = 670496 + 0: The total amount of wall time = 510.339246 + 0: The maximum resident set size (KB) = 755824 -Test 055 rrfs_conus13km_hrrr_warm PASS +Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm +Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2186,15 +2760,15 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 183.562177 - 0: The maximum resident set size (KB) = 672032 + 0: The total amount of wall time = 121.972982 + 0: The maximum resident set size (KB) = 931444 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_smoke_conus13km_hrrr_warm -Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_smoke_conus13km_hrrr_warm +Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2202,69 +2776,63 @@ Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 195.898147 - 0: The maximum resident set size (KB) = 683676 + 0: The total amount of wall time = 137.903093 + 0: The maximum resident set size (KB) = 960956 -Test 057 rrfs_smoke_conus13km_hrrr_warm PASS +Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_csawmg -Checking test 058 control_csawmg results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm +Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 332.022943 - 0: The maximum resident set size (KB) = 536284 + 0: The total amount of wall time = 123.755983 + 0: The maximum resident set size (KB) = 937324 -Test 058 control_csawmg PASS +Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_csawmgt -Checking test 059 control_csawmgt results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 326.637034 - 0: The maximum resident set size (KB) = 532788 + 0: The total amount of wall time = 76.751193 + 0: The maximum resident set size (KB) = 844052 -Test 059 control_csawmgt PASS +Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_flake -Checking test 060 control_flake results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_2threads +Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 231.428013 - 0: The maximum resident set size (KB) = 534936 + 0: The total amount of wall time = 77.644382 + 0: The maximum resident set size (KB) = 881516 -Test 060 control_flake PASS +Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_ras -Checking test 061 control_ras results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg +Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2274,15 +2842,15 @@ Checking test 061 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.042140 - 0: The maximum resident set size (KB) = 496800 + 0: The total amount of wall time = 342.230164 + 0: The maximum resident set size (KB) = 726060 -Test 061 control_ras PASS +Test 069 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson -Checking test 062 control_thompson results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt +Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2292,15 +2860,15 @@ Checking test 062 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.124403 - 0: The maximum resident set size (KB) = 848448 + 0: The total amount of wall time = 336.602875 + 0: The maximum resident set size (KB) = 725840 -Test 062 control_thompson PASS +Test 070 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson_no_aero -Checking test 063 control_thompson_no_aero results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras +Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2310,55 +2878,55 @@ Checking test 063 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 227.026507 - 0: The maximum resident set size (KB) = 847896 + 0: The total amount of wall time = 179.094952 + 0: The maximum resident set size (KB) = 719896 -Test 063 control_thompson_no_aero PASS +Test 071 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_wam -Checking test 064 control_wam results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam +Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 108.154214 - 0: The maximum resident set size (KB) = 233024 + 0: The total amount of wall time = 111.305442 + 0: The maximum resident set size (KB) = 641296 -Test 064 control_wam PASS +Test 072 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_debug -Checking test 065 control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_hrrr_warm_debug +Checking test 073 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 = 141.923863 - 0: The maximum resident set size (KB) = 637340 + 0: The total amount of wall time = 727.417687 + 0: The maximum resident set size (KB) = 963564 -Test 065 control_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_2threads_debug -Checking test 066 control_2threads_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_conus13km_radar_tten_warm_debug +Checking test 074 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 = 212.605449 - 0: The maximum resident set size (KB) = 678376 + 0: The total amount of wall time = 736.921042 + 0: The maximum resident set size (KB) = 969652 -Test 066 control_2threads_debug PASS +Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_CubedSphereGrid_debug +Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2384,416 +2952,836 @@ Checking test 067 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 157.560704 - 0: The maximum resident set size (KB) = 635632 + 0: The total amount of wall time = 160.941303 + 0: The maximum resident set size (KB) = 800328 -Test 067 control_CubedSphereGrid_debug PASS +Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wrtGauss_netcdf_parallel_debug +Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.365257 - 0: The maximum resident set size (KB) = 627708 + 0: The total amount of wall time = 149.474400 + 0: The maximum resident set size (KB) = 795408 -Test 068 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_stochy_debug -Checking test 069 control_stochy_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_stochy_debug +Checking test 077 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 = 164.299429 - 0: The maximum resident set size (KB) = 640192 + 0: The total amount of wall time = 171.343334 + 0: The maximum resident set size (KB) = 799240 -Test 069 control_stochy_debug PASS +Test 077 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_lndp_debug -Checking test 070 control_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_lndp_debug +Checking test 078 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 = 145.051043 - 0: The maximum resident set size (KB) = 641832 + 0: The total amount of wall time = 153.416677 + 0: The maximum resident set size (KB) = 803484 -Test 070 control_lndp_debug PASS +Test 078 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_csawmg_debug -Checking test 071 control_csawmg_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmg_debug +Checking test 079 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 = 221.053707 - 0: The maximum resident set size (KB) = 673316 + 0: The total amount of wall time = 233.226177 + 0: The maximum resident set size (KB) = 845876 -Test 071 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_csawmgt_debug -Checking test 072 control_csawmgt_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_csawmgt_debug +Checking test 080 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 = 223.761195 - 0: The maximum resident set size (KB) = 673764 + 0: The total amount of wall time = 226.489479 + 0: The maximum resident set size (KB) = 846696 -Test 072 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_ras_debug -Checking test 073 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_ras_debug +Checking test 081 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 = 148.725703 - 0: The maximum resident set size (KB) = 644276 + 0: The total amount of wall time = 152.751459 + 0: The maximum resident set size (KB) = 804440 -Test 073 control_ras_debug PASS +Test 081 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_diag_debug -Checking test 074 control_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_diag_debug +Checking test 082 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 = 151.767240 - 0: The maximum resident set size (KB) = 689432 + 0: The total amount of wall time = 158.758391 + 0: The maximum resident set size (KB) = 850860 -Test 074 control_diag_debug PASS +Test 082 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_debug_p8 -Checking test 075 control_debug_p8 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_debug_p8 +Checking test 083 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 = 158.030883 - 0: The maximum resident set size (KB) = 1020144 + 0: The total amount of wall time = 170.439452 + 0: The maximum resident set size (KB) = 1620428 -Test 075 control_debug_p8 PASS +Test 083 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson_debug -Checking test 076 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_debug +Checking test 084 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 = 167.169720 - 0: The maximum resident set size (KB) = 993544 + 0: The total amount of wall time = 963.965165 + 0: The maximum resident set size (KB) = 889908 -Test 076 control_thompson_debug PASS +Test 084 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson_no_aero_debug -Checking test 077 control_thompson_no_aero_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug +Checking test 085 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 = 163.127294 - 0: The maximum resident set size (KB) = 991308 + 0: The total amount of wall time = 272.059222 + 0: The maximum resident set size (KB) = 1175528 -Test 077 control_thompson_no_aero_debug PASS +Test 085 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson_extdiag_debug -Checking test 078 control_thompson_extdiag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug +Checking test 086 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 = 181.183684 - 0: The maximum resident set size (KB) = 1021672 + 0: The total amount of wall time = 263.957280 + 0: The maximum resident set size (KB) = 1170748 -Test 078 control_thompson_extdiag_debug PASS +Test 086 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_thompson_progcld_thompson_debug -Checking test 079 control_thompson_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_drag_suite_debug +Checking test 087 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 = 170.296975 - 0: The maximum resident set size (KB) = 994712 - -Test 079 control_thompson_progcld_thompson_debug PASS - + 0: The total amount of wall time = 275.552055 + 0: The maximum resident set size (KB) = 1179344 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/regional_debug -Checking test 080 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +Test 087 rap_unified_drag_suite_debug PASS - 0: The total amount of wall time = 234.214483 - 0: The maximum resident set size (KB) = 608144 -Test 080 regional_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_control_debug -Checking test 081 rap_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_diag_debug +Checking test 088 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 = 260.619161 - 0: The maximum resident set size (KB) = 1003020 + 0: The total amount of wall time = 290.170591 + 0: The maximum resident set size (KB) = 1260900 -Test 081 rap_control_debug PASS +Test 088 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_unified_drag_suite_debug -Checking test 082 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_cires_ugwp_debug +Checking test 089 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 = 263.413441 - 0: The maximum resident set size (KB) = 1000796 + 0: The total amount of wall time = 277.711636 + 0: The maximum resident set size (KB) = 1172120 -Test 082 rap_unified_drag_suite_debug PASS +Test 089 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_diag_debug -Checking test 083 rap_diag_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_unified_ugwp_debug +Checking test 090 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 = 275.636467 - 0: The maximum resident set size (KB) = 1082916 + 0: The total amount of wall time = 279.430808 + 0: The maximum resident set size (KB) = 1178612 -Test 083 rap_diag_debug PASS +Test 090 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_cires_ugwp_debug -Checking test 084 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_lndp_debug +Checking test 091 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 = 266.849202 - 0: The maximum resident set size (KB) = 1002332 + 0: The total amount of wall time = 275.513816 + 0: The maximum resident set size (KB) = 1173160 -Test 084 rap_cires_ugwp_debug PASS +Test 091 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_unified_ugwp_debug -Checking test 085 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_flake_debug +Checking test 092 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 = 264.112249 - 0: The maximum resident set size (KB) = 998776 + 0: The total amount of wall time = 270.099881 + 0: The maximum resident set size (KB) = 1176812 -Test 085 rap_unified_ugwp_debug PASS +Test 092 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_lndp_debug -Checking test 086 rap_lndp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_progcld_thompson_debug +Checking test 093 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 = 262.836085 - 0: The maximum resident set size (KB) = 1000760 + 0: The total amount of wall time = 274.125742 + 0: The maximum resident set size (KB) = 1176272 -Test 086 rap_lndp_debug PASS +Test 093 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_flake_debug -Checking test 087 rap_flake_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_debug +Checking test 094 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 = 265.987920 - 0: The maximum resident set size (KB) = 999148 + 0: The total amount of wall time = 264.875707 + 0: The maximum resident set size (KB) = 1171972 -Test 087 rap_flake_debug PASS +Test 094 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_progcld_thompson_debug -Checking test 088 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_sfcdiff_debug +Checking test 095 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 = 259.729513 - 0: The maximum resident set size (KB) = 1004452 + 0: The total amount of wall time = 271.463868 + 0: The maximum resident set size (KB) = 1180260 -Test 088 rap_progcld_thompson_debug PASS +Test 095 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_noah_debug -Checking test 089 rap_noah_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 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 = 254.584557 - 0: The maximum resident set size (KB) = 1003888 + 0: The total amount of wall time = 442.692483 + 0: The maximum resident set size (KB) = 1175832 -Test 089 rap_noah_debug PASS +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_rrtmgp_debug -Checking test 090 rap_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rrfs_v1beta_debug +Checking test 097 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 = 444.909584 - 0: The maximum resident set size (KB) = 1126264 + 0: The total amount of wall time = 268.094781 + 0: The maximum resident set size (KB) = 1171192 -Test 090 rap_rrtmgp_debug PASS +Test 097 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_sfcdiff_debug -Checking test 091 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_wam_debug +Checking test 098 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 279.561730 + 0: The maximum resident set size (KB) = 525680 + +Test 098 control_wam_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 262.987909 - 0: The maximum resident set size (KB) = 1005748 + 0: The total amount of wall time = 261.199387 + 0: The maximum resident set size (KB) = 1072608 -Test 091 rap_sfcdiff_debug PASS +Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 370.374055 + 0: The maximum resident set size (KB) = 1003476 + +Test 100 rap_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 193.586504 + 0: The maximum resident set size (KB) = 960436 + +Test 101 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 356.480606 + 0: The maximum resident set size (KB) = 1021688 + +Test 102 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_2threads_dyn32_phy32 +Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 190.814922 + 0: The maximum resident set size (KB) = 1006908 + +Test 103 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_decomp_dyn32_phy32 +Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 205.019588 + 0: The maximum resident set size (KB) = 897968 + +Test 104 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_restart_dyn32_phy32 +Checking test 105 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 278.705853 + 0: The maximum resident set size (KB) = 952632 + +Test 105 rap_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_restart_dyn32_phy32 +Checking test 106 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 101.810706 + 0: The maximum resident set size (KB) = 863852 + +Test 106 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 241.067980 + 0: The maximum resident set size (KB) = 964288 + +Test 107 rap_control_dyn64_phy32 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_debug_dyn32_phy32 +Checking test 108 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 = 431.964046 - 0: The maximum resident set size (KB) = 1001032 + 0: The total amount of wall time = 268.016967 + 0: The maximum resident set size (KB) = 1060984 -Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/rrfs_v1beta_debug -Checking test 093 rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hrrr_control_debug_dyn32_phy32 +Checking test 109 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 = 261.819731 - 0: The maximum resident set size (KB) = 995504 + 0: The total amount of wall time = 265.961954 + 0: The maximum resident set size (KB) = 1054376 -Test 093 rrfs_v1beta_debug PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_wam_debug -Checking test 094 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/rap_control_dyn64_phy32_debug +Checking test 110 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 = 272.622652 - 0: The maximum resident set size (KB) = 260156 + 0: The total amount of wall time = 276.704372 + 0: The maximum resident set size (KB) = 1095088 -Test 094 control_wam_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_atm -Checking test 095 hafs_regional_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm +Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 303.918800 - 0: The maximum resident set size (KB) = 713184 + 0: The total amount of wall time = 239.190384 + 0: The maximum resident set size (KB) = 1051376 -Test 095 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_atm_thompson_gfdlsf -Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_thompson_gfdlsf +Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 349.479434 - 0: The maximum resident set size (KB) = 1076836 + 0: The total amount of wall time = 315.063461 + 0: The maximum resident set size (KB) = 1419488 -Test 096 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_atm_ocn -Checking test 097 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn +Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2801,387 +3789,563 @@ Checking test 097 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 = 368.314076 - 0: The maximum resident set size (KB) = 758368 + 0: The total amount of wall time = 372.015072 + 0: The maximum resident set size (KB) = 1216240 -Test 097 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_atm_wav -Checking test 098 hafs_regional_atm_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_wav +Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 846.104530 - 0: The maximum resident set size (KB) = 749724 + 0: The total amount of wall time = 739.168637 + 0: The maximum resident set size (KB) = 1245864 -Test 098 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_atm_ocn_wav -Checking test 099 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_atm_ocn_wav +Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 930.393622 - 0: The maximum resident set size (KB) = 766904 + 0: The total amount of wall time = 843.181916 + 0: The maximum resident set size (KB) = 1269780 -Test 099 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_1nest_atm -Checking test 100 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_1nest_atm +Checking test 116 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 = 445.516584 - 0: The maximum resident set size (KB) = 316948 + 0: The total amount of wall time = 322.061205 + 0: The maximum resident set size (KB) = 511644 -Test 100 hafs_regional_1nest_atm PASS +Test 116 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_telescopic_2nests_atm -Checking test 101 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_telescopic_2nests_atm +Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 467.348201 - 0: The maximum resident set size (KB) = 327392 + 0: The total amount of wall time = 364.016520 + 0: The maximum resident set size (KB) = 513984 -Test 101 hafs_regional_telescopic_2nests_atm PASS +Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_global_1nest_atm -Checking test 102 hafs_global_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_1nest_atm +Checking test 118 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 = 205.305577 - 0: The maximum resident set size (KB) = 206432 + 0: The total amount of wall time = 147.002701 + 0: The maximum resident set size (KB) = 351468 -Test 102 hafs_global_1nest_atm PASS +Test 118 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_global_multiple_4nests_atm -Checking test 103 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_multiple_4nests_atm +Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 564.877475 - 0: The maximum resident set size (KB) = 278052 + 0: The total amount of wall time = 417.880903 + 0: The maximum resident set size (KB) = 423792 -Test 103 hafs_global_multiple_4nests_atm PASS +Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_specified_moving_1nest_atm -Checking test 104 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_specified_moving_1nest_atm +Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 266.200618 - 0: The maximum resident set size (KB) = 326436 + 0: The total amount of wall time = 201.398210 + 0: The maximum resident set size (KB) = 514844 -Test 104 hafs_regional_specified_moving_1nest_atm PASS +Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm +Checking test 121 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 - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 259.901830 - 0: The maximum resident set size (KB) = 351128 + 0: The total amount of wall time = 190.949707 + 0: The maximum resident set size (KB) = 512836 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 748.275661 - 0: The maximum resident set size (KB) = 375604 + 0: The total amount of wall time = 222.907201 + 0: The maximum resident set size (KB) = 558600 + +Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_global_storm_following_1nest_atm +Checking test 123 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 = 58.504047 + 0: The maximum resident set size (KB) = 363388 + +Test 123 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + + 0: The total amount of wall time = 756.361156 + 0: The maximum resident set size (KB) = 579140 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 81.312573 - 0: The maximum resident set size (KB) = 225920 + 0: The total amount of wall time = 512.576004 + 0: The maximum resident set size (KB) = 608200 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn +Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 375.143894 - 0: The maximum resident set size (KB) = 777348 + 0: The total amount of wall time = 356.795848 + 0: The maximum resident set size (KB) = 1230456 -Test 108 hafs_regional_docn PASS +Test 126 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_docn_oisst +Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 367.410138 - 0: The maximum resident set size (KB) = 752656 + 0: The total amount of wall time = 357.676320 + 0: The maximum resident set size (KB) = 1216224 -Test 109 hafs_regional_docn_oisst PASS +Test 127 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/hafs_regional_datm_cdeps +Checking test 128 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 = 936.994901 - 0: The maximum resident set size (KB) = 851088 + 0: The total amount of wall time = 934.084581 + 0: The maximum resident set size (KB) = 1037720 -Test 110 hafs_regional_datm_cdeps PASS +Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_cfsr +Checking test 129 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 141.052302 - 0: The maximum resident set size (KB) = 717892 + 0: The total amount of wall time = 155.534501 + 0: The maximum resident set size (KB) = 1059016 -Test 111 datm_cdeps_control_cfsr PASS +Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_restart_cfsr +Checking test 130 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 = 82.742157 - 0: The maximum resident set size (KB) = 720136 + 0: The total amount of wall time = 92.160678 + 0: The maximum resident set size (KB) = 1012356 + +Test 130 datm_cdeps_restart_cfsr PASS + -Test 112 datm_cdeps_restart_cfsr PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_control_gefs +Checking test 131 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 = 149.200787 + 0: The maximum resident set size (KB) = 959532 +Test 131 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_iau_gefs +Checking test 132 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 137.880741 - 0: The maximum resident set size (KB) = 618928 + 0: The total amount of wall time = 150.172667 + 0: The maximum resident set size (KB) = 961272 -Test 113 datm_cdeps_control_gefs PASS +Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_stochy_gefs +Checking test 133 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 139.879103 - 0: The maximum resident set size (KB) = 620808 + 0: The total amount of wall time = 151.067317 + 0: The maximum resident set size (KB) = 966008 -Test 114 datm_cdeps_iau_gefs PASS +Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_ciceC_cfsr +Checking test 134 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 139.318361 - 0: The maximum resident set size (KB) = 618848 + 0: The total amount of wall time = 154.297641 + 0: The maximum resident set size (KB) = 1057136 -Test 115 datm_cdeps_stochy_gefs PASS +Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_cfsr +Checking test 135 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 = 141.429059 - 0: The maximum resident set size (KB) = 720176 + 0: The total amount of wall time = 154.210284 + 0: The maximum resident set size (KB) = 1063588 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_bulk_gefs +Checking test 136 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 139.574967 - 0: The maximum resident set size (KB) = 621724 + 0: The total amount of wall time = 147.553282 + 0: The maximum resident set size (KB) = 972344 -Test 117 datm_cdeps_bulk_gefs PASS +Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_cfsr +Checking test 137 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK 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 = 300.100074 - 0: The maximum resident set size (KB) = 562720 + 0: The total amount of wall time = 393.271699 + 0: The maximum resident set size (KB) = 875740 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_mx025_gefs +Checking test 138 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 298.759608 - 0: The maximum resident set size (KB) = 532884 + 0: The total amount of wall time = 386.415003 + 0: The maximum resident set size (KB) = 930992 -Test 119 datm_cdeps_mx025_gefs PASS +Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_multiple_files_cfsr +Checking test 139 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 = 139.494973 - 0: The maximum resident set size (KB) = 740144 + 0: The total amount of wall time = 155.224696 + 0: The maximum resident set size (KB) = 1073400 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_3072x1536_cfsr +Checking test 140 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.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 = 191.696769 - 0: The maximum resident set size (KB) = 1892272 + 0: The total amount of wall time = 214.641850 + 0: The maximum resident set size (KB) = 2360004 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_gfs +Checking test 141 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 = 191.616994 - 0: The maximum resident set size (KB) = 1831908 + 0: The total amount of wall time = 214.094151 + 0: The maximum resident set size (KB) = 2359220 -Test 122 datm_cdeps_gfs PASS +Test 141 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_debug_cfsr +Checking test 142 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.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 = 439.989681 - 0: The maximum resident set size (KB) = 726556 + 0: The total amount of wall time = 446.529468 + 0: The maximum resident set size (KB) = 985972 + +Test 142 datm_cdeps_debug_cfsr PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3 +Checking test 143 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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.615823 + 0: The maximum resident set size (KB) = 261404 -Test 123 datm_cdeps_debug_cfsr PASS +Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/datm_cdeps_lnd_gswp3_rst +Checking test 144 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 11.820213 + 0: The maximum resident set size (KB) = 261552 + +Test 144 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_p8_atmlnd_sbs +Checking test 145 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 202.084218 + 0: The maximum resident set size (KB) = 1610364 + +Test 145 control_p8_atmlnd_sbs PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/control_atmwav +Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3190,102 +4354,151 @@ Checking test 124 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 82.290724 - 0: The maximum resident set size (KB) = 492316 + 0: The total amount of wall time = 86.746107 + 0: The maximum resident set size (KB) = 655732 -Test 124 control_atmwav PASS +Test 146 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_c384gdas_wav -Checking test 125 control_c384gdas_wav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8 +Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 223.180121 + 0: The maximum resident set size (KB) = 2976228 + +Test 147 atmaero_control_p8 PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad +Checking test 148 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF03 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF03 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.030000.restart.aoc_9km .........OK - Comparing 20210322.030000.restart.gnh_10m .........OK - Comparing 20210322.030000.restart.gsh_15m .........OK - - 0: The total amount of wall time = 695.634734 - 0: The maximum resident set size (KB) = 1054688 - -Test 125 control_c384gdas_wav PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_3284/control_atm_aerosols -Checking test 126 control_atm_aerosols results .... + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 277.653717 + 0: The maximum resident set size (KB) = 3047784 + +Test 148 atmaero_control_p8_rad PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/atmaero_control_p8_rad_micro +Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3294,49 +4507,90 @@ Checking test 126 control_atm_aerosols results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 283.502286 - 0: The maximum resident set size (KB) = 913532 - -Test 126 control_atm_aerosols PASS + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 283.070166 + 0: The maximum resident set size (KB) = 3053260 + +Test 149 atmaero_control_p8_rad_micro PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq +Checking test 150 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 612.555099 + 0: The maximum resident set size (KB) = 1569120 + +Test 150 regional_atmaq PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_13958/regional_atmaq_debug +Checking test 151 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1297.142707 + 0: The maximum resident set size (KB) = 1511320 + +Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon May 16 19:34:15 UTC 2022 -Elapsed time: 01h:24m:23s. Have a nice day! +Tue Feb 28 20:34:36 UTC 2023 +Elapsed time: 03h:31m:41s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 9c201ad4e3..86342b184c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,39 @@ -Wed May 11 23:05:59 GMT 2022 +Tue Feb 28 17:38:59 UTC 2023 Start Regression test -Compile 001 elapsed time 1649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 266 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1272 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1375 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 -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 1240 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 007 elapsed time 243 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 227 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 260 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1564 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1562 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 279 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1562 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 1279 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +Compile 001 elapsed time 1965 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2078 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1696 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 323 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 487 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1351 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 007 elapsed time 1545 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 008 elapsed time 1602 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 -DSIMDMULTIARCH=ON +Compile 009 elapsed time 1588 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 010 elapsed time 1520 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 -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1412 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 321 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 277 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 1422 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 1445 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 016 elapsed time 376 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 391 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 1711 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 -DSIMDMULTIARCH=ON +Compile 019 elapsed time 463 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 2172 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 021 elapsed time 1750 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 -DSIMDMULTIARCH=ON +Compile 022 elapsed time 342 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 023 elapsed time 265 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 134 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 025 elapsed time 1544 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 026 elapsed time 1678 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 027 elapsed time 1513 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 028 elapsed time 1432 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 029 elapsed time 264 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -45,55 +58,197 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 431.774795 + 0: The maximum resident set size (KB) = 1743032 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 318.037536 + 0: The maximum resident set size (KB) = 1636620 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 474.203026 - 0: The maximum resident set size (KB) = 1160068 + 0: The total amount of wall time = 504.053213 + 0: The maximum resident set size (KB) = 1782872 -Test 001 cpld_control_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -106,55 +261,114 @@ Checking test 002 cpld_2threads_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 335.938256 + 0: The maximum resident set size (KB) = 1491620 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1358.823460 - 0: The maximum resident set size (KB) = 1752632 + 0: The total amount of wall time = 535.746888 + 0: The maximum resident set size (KB) = 1984516 -Test 002 cpld_2threads_p8 PASS +Test 005 cpld_2threads_p8 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_mpi_p8 -Checking test 003 cpld_mpi_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -167,55 +381,114 @@ Checking test 003 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 500.866634 + 0: The maximum resident set size (KB) = 1763992 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 409.398213 - 0: The maximum resident set size (KB) = 1276944 + 0: The total amount of wall time = 423.557383 + 0: The maximum resident set size (KB) = 1742156 -Test 003 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_control_c96_p8 -Checking test 004 cpld_control_c96_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -241,51 +514,65 @@ Checking test 004 cpld_control_c96_p8 results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 398.709849 - 0: The maximum resident set size (KB) = 1268560 + 0: The total amount of wall time = 501.779270 + 0: The maximum resident set size (KB) = 1793476 -Test 004 cpld_control_c96_p8 PASS +Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_restart_c96_p8 -Checking test 005 cpld_restart_c96_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8 +Checking test 009 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -298,52 +585,367 @@ Checking test 005 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 359.155086 + 0: The maximum resident set size (KB) = 1618956 + +Test 009 cpld_control_noaero_p8 PASS - 0: The total amount of wall time = 270.957153 - 0: The maximum resident set size (KB) = 1237608 -Test 005 cpld_restart_c96_p8 PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_nowave_noaero_p8 +Checking test 010 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 364.893880 + 0: The maximum resident set size (KB) = 1671780 + +Test 010 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_p8 +Checking test 011 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 874.680895 + 0: The maximum resident set size (KB) = 1825448 + +Test 011 cpld_debug_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_debug_noaero_p8 +Checking test 012 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 545.969188 + 0: The maximum resident set size (KB) = 1624392 + +Test 012 cpld_debug_noaero_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_noaero_p8_agrid +Checking test 013 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 397.193562 + 0: The maximum resident set size (KB) = 1690224 + +Test 013 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_control_c48 +Checking test 014 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 803.460077 + 0: The maximum resident set size (KB) = 2766724 +Test 014 cpld_control_c48 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/cpld_debug_p8 -Checking test 006 cpld_debug_p8 results .... + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_warmstart_c48 +Checking test 015 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -356,316 +958,108 @@ Checking test 006 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1070.535949 - 0: The maximum resident set size (KB) = 1349988 - -Test 006 cpld_debug_p8 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control -Checking test 007 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 185.081112 - 0: The maximum resident set size (KB) = 471176 - -Test 007 control PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_decomp -Checking test 008 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 189.080492 - 0: The maximum resident set size (KB) = 469004 - -Test 008 control_decomp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_2dwrtdecomp -Checking test 009 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 174.188155 - 0: The maximum resident set size (KB) = 470972 - -Test 009 control_2dwrtdecomp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_2threads -Checking test 010 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 714.548713 - 0: The maximum resident set size (KB) = 525924 - -Test 010 control_2threads PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_restart -Checking test 011 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 98.390077 - 0: The maximum resident set size (KB) = 215176 - -Test 011 control_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_fhzero -Checking test 012 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 173.280138 - 0: The maximum resident set size (KB) = 471480 - -Test 012 control_fhzero PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_CubedSphereGrid -Checking test 013 control_CubedSphereGrid results .... + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 220.844544 + 0: The maximum resident set size (KB) = 2770616 + +Test 015 cpld_warmstart_c48 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/cpld_restart_c48 +Checking test 016 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 122.964854 + 0: The maximum resident set size (KB) = 2217076 + +Test 016 cpld_restart_c48 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid +Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -691,15 +1085,29 @@ Checking test 013 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 176.017027 - 0: The maximum resident set size (KB) = 471340 + 0: The total amount of wall time = 189.503147 + 0: The maximum resident set size (KB) = 573588 -Test 013 control_CubedSphereGrid PASS +Test 017 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_latlon -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_latlon -Checking test 014 control_latlon results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_parallel +Checking test 018 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 216.685967 + 0: The maximum resident set size (KB) = 575604 + +Test 018 control_CubedSphereGrid_parallel PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -709,79 +1117,79 @@ Checking test 014 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.125995 - 0: The maximum resident set size (KB) = 468772 + 0: The total amount of wall time = 213.024166 + 0: The maximum resident set size (KB) = 570840 -Test 014 control_latlon PASS +Test 019 control_latlon PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_wrtGauss_netcdf_parallel -Checking test 015 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.245250 - 0: The maximum resident set size (KB) = 471828 + 0: The total amount of wall time = 216.364850 + 0: The maximum resident set size (KB) = 576224 -Test 015 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_c48 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_c48 -Checking test 016 control_c48 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 558.694879 -0: The maximum resident set size (KB) = 669108 - -Test 016 control_c48 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_c192 -Checking test 017 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 599.177870 +0: The maximum resident set size (KB) = 789236 + +Test 021 control_c48 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -791,15 +1199,15 @@ Checking test 017 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 689.012410 - 0: The maximum resident set size (KB) = 570064 + 0: The total amount of wall time = 756.445161 + 0: The maximum resident set size (KB) = 682428 -Test 017 control_c192 PASS +Test 022 control_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_c384 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_c384 -Checking test 018 control_c384 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -809,15 +1217,15 @@ Checking test 018 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 877.223972 - 0: The maximum resident set size (KB) = 697968 + 0: The total amount of wall time = 998.686842 + 0: The maximum resident set size (KB) = 1054588 -Test 018 control_c384 PASS +Test 023 control_c384 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_c384gdas -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_c384gdas -Checking test 019 control_c384gdas results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -826,48 +1234,48 @@ Checking test 019 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 822.677673 - 0: The maximum resident set size (KB) = 796116 - -Test 019 control_c384gdas PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_stochy -Checking test 020 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 903.463839 + 0: The maximum resident set size (KB) = 1193508 + +Test 024 control_c384gdas PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy +Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -877,29 +1285,29 @@ Checking test 020 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 123.642616 - 0: The maximum resident set size (KB) = 475380 + 0: The total amount of wall time = 137.717364 + 0: The maximum resident set size (KB) = 584396 -Test 020 control_stochy PASS +Test 025 control_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_stochy -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_stochy_restart -Checking test 021 control_stochy_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_restart +Checking test 026 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 = 67.147897 - 0: The maximum resident set size (KB) = 237464 + 0: The total amount of wall time = 84.096101 + 0: The maximum resident set size (KB) = 394996 -Test 021 control_stochy_restart PASS +Test 026 control_stochy_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_lndp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_lndp -Checking test 022 control_lndp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp +Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -909,15 +1317,15 @@ Checking test 022 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 108.741865 - 0: The maximum resident set size (KB) = 474304 + 0: The total amount of wall time = 160.298421 + 0: The maximum resident set size (KB) = 579584 -Test 022 control_lndp PASS +Test 027 control_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_iovr4 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_iovr4 -Checking test 023 control_iovr4 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr4 +Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -931,15 +1339,15 @@ Checking test 023 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.656206 - 0: The maximum resident set size (KB) = 469704 + 0: The total amount of wall time = 251.862662 + 0: The maximum resident set size (KB) = 572692 -Test 023 control_iovr4 PASS +Test 028 control_iovr4 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_iovr5 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_iovr5 -Checking test 024 control_iovr5 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_iovr5 +Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -953,15 +1361,15 @@ Checking test 024 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 187.768106 - 0: The maximum resident set size (KB) = 471576 + 0: The total amount of wall time = 228.105799 + 0: The maximum resident set size (KB) = 574976 -Test 024 control_iovr5 PASS +Test 029 control_iovr5 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_p8 -Checking test 025 control_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8 +Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -974,48 +1382,48 @@ Checking test 025 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 236.127303 - 0: The maximum resident set size (KB) = 857056 - -Test 025 control_p8 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8_lndp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_p8_lndp -Checking test 026 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 256.510338 + 0: The maximum resident set size (KB) = 1540904 + +Test 030 control_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_lndp +Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1033,61 +1441,111 @@ Checking test 026 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 453.694542 - 0: The maximum resident set size (KB) = 854248 + 0: The total amount of wall time = 489.170252 + 0: The maximum resident set size (KB) = 1539368 -Test 026 control_p8_lndp PASS +Test 031 control_p8_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_restart_p8 -Checking test 027 control_restart_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_restart_p8 +Checking test 032 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 145.773027 + 0: The maximum resident set size (KB) = 780924 + +Test 032 control_restart_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_decomp_p8 +Checking test 033 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 128.244290 - 0: The maximum resident set size (KB) = 600596 - -Test 027 control_restart_p8 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_decomp_p8 -Checking test 028 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 282.931002 + 0: The maximum resident set size (KB) = 1525280 + +Test 033 control_decomp_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_2threads_p8 +Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1096,98 +1554,102 @@ Checking test 028 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 240.376467 - 0: The maximum resident set size (KB) = 852208 - -Test 028 control_decomp_p8 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_2threads_p8 -Checking test 029 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 278.175836 + 0: The maximum resident set size (KB) = 1622652 + +Test 034 control_2threads_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_rrtmgp +Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 902.203345 - 0: The maximum resident set size (KB) = 930468 - -Test 029 control_2threads_p8 PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_p8_rrtmgp -Checking test 030 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 362.885808 + 0: The maximum resident set size (KB) = 1604688 + +Test 035 control_p8_rrtmgp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/merra2_thompson +Checking test 036 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1200,123 +1662,145 @@ Checking test 030 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 275.737637 - 0: The maximum resident set size (KB) = 972332 - -Test 030 control_p8_rrtmgp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_control -Checking test 031 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 328.087671 + 0: The maximum resident set size (KB) = 1551316 + +Test 036 merra2_thompson PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 475.549276 - 0: The maximum resident set size (KB) = 581732 + 0: The total amount of wall time = 466.144387 + 0: The maximum resident set size (KB) = 787524 -Test 031 regional_control PASS +Test 037 regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_restart -Checking test 032 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_restart +Checking test 038 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 = 292.020923 - 0: The maximum resident set size (KB) = 580612 + 0: The total amount of wall time = 231.398565 + 0: The maximum resident set size (KB) = 779232 -Test 032 regional_restart PASS +Test 038 regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_control_2dwrtdecomp -Checking test 033 regional_control_2dwrtdecomp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_decomp +Checking test 039 regional_decomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 476.258109 + 0: The maximum resident set size (KB) = 782592 - 0: The total amount of wall time = 476.206465 - 0: The maximum resident set size (KB) = 580976 +Test 039 regional_decomp PASS -Test 033 regional_control_2dwrtdecomp PASS +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2threads +Checking test 040 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 332.754174 + 0: The maximum resident set size (KB) = 770880 -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_noquilt -Checking test 034 regional_noquilt results .... +Test 040 regional_2threads PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_noquilt +Checking test 041 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK 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 = 501.464564 - 0: The maximum resident set size (KB) = 587184 + 0: The total amount of wall time = 484.774013 + 0: The maximum resident set size (KB) = 778800 -Test 034 regional_noquilt PASS +Test 041 regional_noquilt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_netcdf_parallel -Checking test 035 regional_netcdf_parallel results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 469.722800 - 0: The maximum resident set size (KB) = 580832 + 0: The total amount of wall time = 454.923486 + 0: The maximum resident set size (KB) = 782600 -Test 035 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_3km -Checking test 036 regional_3km results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_2dwrtdecomp +Checking test 043 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1326,69 +1810,33 @@ Checking test 036 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 389.494830 - 0: The maximum resident set size (KB) = 624828 + 0: The total amount of wall time = 461.721440 + 0: The maximum resident set size (KB) = 788212 -Test 036 regional_3km PASS +Test 043 regional_2dwrtdecomp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_control -Checking test 037 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 614.518372 - 0: The maximum resident set size (KB) = 846652 - -Test 037 rap_control PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_rrtmgp -Checking test 038 rap_rrtmgp results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_wofs +Checking test 044 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 560.823434 + 0: The maximum resident set size (KB) = 522168 + +Test 044 regional_wofs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control +Checking test 045 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1401,48 +1849,48 @@ Checking test 038 rap_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 666.316751 - 0: The maximum resident set size (KB) = 957816 - -Test 038 rap_rrtmgp PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_spp_sppt_shum_skeb -Checking test 039 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 668.325817 + 0: The maximum resident set size (KB) = 953932 + +Test 045 rap_control PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1452,61 +1900,69 @@ Checking test 039 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 1406.227760 - 0: The maximum resident set size (KB) = 923764 + 0: The total amount of wall time = 485.401405 + 0: The maximum resident set size (KB) = 1086088 -Test 039 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_restart -Checking test 040 rap_restart results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_decomp +Checking test 047 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 302.532357 - 0: The maximum resident set size (KB) = 588856 - -Test 040 rap_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_sfcdiff -Checking test 041 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 682.570016 + 0: The maximum resident set size (KB) = 953912 + +Test 047 rap_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads +Checking test 048 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1519,246 +1975,554 @@ Checking test 041 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 636.914418 - 0: The maximum resident set size (KB) = 842096 - -Test 041 rap_sfcdiff PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_sfcdiff_restart -Checking test 042 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 659.998948 + 0: The maximum resident set size (KB) = 1018912 + +Test 048 rap_2threads PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart +Checking test 049 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 302.957359 - 0: The maximum resident set size (KB) = 587000 - -Test 042 rap_sfcdiff_restart PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hrrr_control -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hrrr_control -Checking test 043 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 352.231710 + 0: The maximum resident set size (KB) = 831036 + +Test 049 rap_restart PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff +Checking test 050 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 668.941325 + 0: The maximum resident set size (KB) = 961568 + +Test 050 rap_sfcdiff PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_decomp +Checking test 051 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 734.152615 + 0: The maximum resident set size (KB) = 936820 + +Test 051 rap_sfcdiff_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_restart +Checking test 052 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 477.751498 + 0: The maximum resident set size (KB) = 831884 + +Test 052 rap_sfcdiff_restart PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control +Checking test 053 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 636.852208 + 0: The maximum resident set size (KB) = 947472 + +Test 053 hrrr_control PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp +Checking test 054 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 723.257586 + 0: The maximum resident set size (KB) = 936432 + +Test 054 hrrr_control_decomp PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads +Checking test 055 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 603.082892 - 0: The maximum resident set size (KB) = 841928 - -Test 043 hrrr_control PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_v1beta -Checking test 044 rrfs_v1beta results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 594.052394 + 0: The maximum resident set size (KB) = 1028720 + +Test 055 hrrr_control_2threads PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart +Checking test 056 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 471.446331 + 0: The maximum resident set size (KB) = 833580 + +Test 056 hrrr_control_restart PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta +Checking test 057 rrfs_v1beta results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 621.053609 - 0: The maximum resident set size (KB) = 837300 - -Test 044 rrfs_v1beta PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_v1nssl -Checking test 045 rrfs_v1nssl results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 663.019627 + 0: The maximum resident set size (KB) = 955452 + +Test 057 rrfs_v1beta PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl +Checking test 058 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 670.208217 - 0: The maximum resident set size (KB) = 523764 + 0: The total amount of wall time = 789.081199 + 0: The maximum resident set size (KB) = 636396 -Test 045 rrfs_v1nssl PASS +Test 058 rrfs_v1nssl PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_v1nssl_nohailnoccn -Checking test 046 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1nssl_nohailnoccn +Checking test 059 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 668.133391 - 0: The maximum resident set size (KB) = 516784 + 0: The total amount of wall time = 801.464009 + 0: The maximum resident set size (KB) = 634248 -Test 046 rrfs_v1nssl_nohailnoccn PASS +Test 059 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_conus13km_hrrr_warm -Checking test 047 rrfs_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm +Checking test 060 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1766,15 +2530,15 @@ Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 281.694081 - 0: The maximum resident set size (KB) = 662768 + 0: The total amount of wall time = 180.907639 + 0: The maximum resident set size (KB) = 854224 -Test 047 rrfs_conus13km_hrrr_warm PASS +Test 060 rrfs_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_conus13km_radar_tten_warm -Checking test 048 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_smoke_conus13km_hrrr_warm +Checking test 061 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1782,15 +2546,15 @@ Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 259.641997 - 0: The maximum resident set size (KB) = 667700 + 0: The total amount of wall time = 233.698292 + 0: The maximum resident set size (KB) = 888220 -Test 048 rrfs_conus13km_radar_tten_warm PASS +Test 061 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_smoke_conus13km_hrrr_warm -Checking test 049 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm +Checking test 062 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1798,69 +2562,47 @@ Checking test 049 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 277.978149 - 0: The maximum resident set size (KB) = 685632 - -Test 049 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_csawmg -Checking test 050 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 449.026040 - 0: The maximum resident set size (KB) = 537672 + 0: The total amount of wall time = 202.659616 + 0: The maximum resident set size (KB) = 854120 -Test 050 control_csawmg PASS +Test 062 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_csawmgt -Checking test 051 control_csawmgt results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_2threads +Checking test 063 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 440.748324 - 0: The maximum resident set size (KB) = 537264 + 0: The total amount of wall time = 167.972680 + 0: The maximum resident set size (KB) = 824668 -Test 051 control_csawmgt PASS +Test 063 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_flake -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_flake -Checking test 052 control_flake results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_2threads +Checking test 064 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 323.836052 - 0: The maximum resident set size (KB) = 541624 + 0: The total amount of wall time = 146.921844 + 0: The maximum resident set size (KB) = 832004 -Test 052 control_flake PASS +Test 064 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_ras -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_ras -Checking test 053 control_ras results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg +Checking test 065 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1870,15 +2612,15 @@ Checking test 053 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.296154 - 0: The maximum resident set size (KB) = 496324 + 0: The total amount of wall time = 553.728292 + 0: The maximum resident set size (KB) = 665268 -Test 053 control_ras PASS +Test 065 control_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson -Checking test 054 control_thompson results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt +Checking test 066 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1888,15 +2630,15 @@ Checking test 054 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 326.631085 - 0: The maximum resident set size (KB) = 852956 + 0: The total amount of wall time = 529.706853 + 0: The maximum resident set size (KB) = 668652 -Test 054 control_thompson PASS +Test 066 control_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson_no_aero -Checking test 055 control_thompson_no_aero results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras +Checking test 067 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1906,55 +2648,55 @@ Checking test 055 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 310.403172 - 0: The maximum resident set size (KB) = 841728 + 0: The total amount of wall time = 286.300878 + 0: The maximum resident set size (KB) = 632896 -Test 055 control_thompson_no_aero PASS +Test 067 control_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_wam -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_wam -Checking test 056 control_wam results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam +Checking test 068 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 146.982214 - 0: The maximum resident set size (KB) = 234360 + 0: The total amount of wall time = 168.671571 + 0: The maximum resident set size (KB) = 477952 -Test 056 control_wam PASS +Test 068 control_wam PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_debug -Checking test 057 control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_hrrr_warm_debug +Checking test 069 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 = 187.993248 - 0: The maximum resident set size (KB) = 629040 + 0: The total amount of wall time = 959.854558 + 0: The maximum resident set size (KB) = 882064 -Test 057 control_debug PASS +Test 069 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_2threads_debug -Checking test 058 control_2threads_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_conus13km_radar_tten_warm_debug +Checking test 070 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 = 373.502336 - 0: The maximum resident set size (KB) = 686340 + 0: The total amount of wall time = 976.967147 + 0: The maximum resident set size (KB) = 881628 -Test 058 control_2threads_debug PASS +Test 070 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_CubedSphereGrid_debug -Checking test 059 control_CubedSphereGrid_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_CubedSphereGrid_debug +Checking test 071 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1980,687 +2722,1239 @@ Checking test 059 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 207.741825 - 0: The maximum resident set size (KB) = 628924 + 0: The total amount of wall time = 228.629305 + 0: The maximum resident set size (KB) = 731840 -Test 059 control_CubedSphereGrid_debug PASS +Test 071 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_wrtGauss_netcdf_parallel_debug -Checking test 060 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wrtGauss_netcdf_parallel_debug +Checking test 072 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.174775 - 0: The maximum resident set size (KB) = 630528 + 0: The total amount of wall time = 217.581469 + 0: The maximum resident set size (KB) = 729844 -Test 060 control_wrtGauss_netcdf_parallel_debug PASS +Test 072 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_stochy_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_stochy_debug -Checking test 061 control_stochy_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_stochy_debug +Checking test 073 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 = 219.313980 - 0: The maximum resident set size (KB) = 634928 + 0: The total amount of wall time = 241.633699 + 0: The maximum resident set size (KB) = 741464 -Test 061 control_stochy_debug PASS +Test 073 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_lndp_debug -Checking test 062 control_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_lndp_debug +Checking test 074 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 = 194.283066 - 0: The maximum resident set size (KB) = 630784 + 0: The total amount of wall time = 210.963739 + 0: The maximum resident set size (KB) = 739960 -Test 062 control_lndp_debug PASS +Test 074 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_csawmg_debug -Checking test 063 control_csawmg_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmg_debug +Checking test 075 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 = 305.219848 - 0: The maximum resident set size (KB) = 671776 + 0: The total amount of wall time = 316.098123 + 0: The maximum resident set size (KB) = 782192 -Test 063 control_csawmg_debug PASS +Test 075 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_csawmgt_debug -Checking test 064 control_csawmgt_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_csawmgt_debug +Checking test 076 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 = 299.082059 - 0: The maximum resident set size (KB) = 669456 + 0: The total amount of wall time = 312.253733 + 0: The maximum resident set size (KB) = 784228 -Test 064 control_csawmgt_debug PASS +Test 076 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_ras_debug -Checking test 065 control_ras_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_ras_debug +Checking test 077 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 = 199.075277 - 0: The maximum resident set size (KB) = 637192 + 0: The total amount of wall time = 220.924339 + 0: The maximum resident set size (KB) = 747764 -Test 065 control_ras_debug PASS +Test 077 control_ras_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_diag_debug -Checking test 066 control_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_diag_debug +Checking test 078 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 = 204.116731 - 0: The maximum resident set size (KB) = 684304 + 0: The total amount of wall time = 224.934121 + 0: The maximum resident set size (KB) = 793688 -Test 066 control_diag_debug PASS +Test 078 control_diag_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_debug_p8 -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_debug_p8 -Checking test 067 control_debug_p8 results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_debug_p8 +Checking test 079 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 = 217.084668 - 0: The maximum resident set size (KB) = 1024552 + 0: The total amount of wall time = 227.570929 + 0: The maximum resident set size (KB) = 1558376 -Test 067 control_debug_p8 PASS +Test 079 control_debug_p8 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson_debug -Checking test 068 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_debug +Checking test 080 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 = 224.973025 - 0: The maximum resident set size (KB) = 992928 + 0: The total amount of wall time = 1304.037599 + 0: The maximum resident set size (KB) = 801568 -Test 068 control_thompson_debug PASS +Test 080 regional_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson_no_aero_debug -Checking test 069 control_thompson_no_aero_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug +Checking test 081 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 = 215.868510 - 0: The maximum resident set size (KB) = 984676 + 0: The total amount of wall time = 366.319261 + 0: The maximum resident set size (KB) = 1118216 -Test 069 control_thompson_no_aero_debug PASS +Test 081 rap_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson_extdiag_debug -Checking test 070 control_thompson_extdiag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug +Checking test 082 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 = 238.197435 - 0: The maximum resident set size (KB) = 1016944 + 0: The total amount of wall time = 358.143672 + 0: The maximum resident set size (KB) = 1112364 -Test 070 control_thompson_extdiag_debug PASS +Test 082 hrrr_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_thompson_progcld_thompson_debug -Checking test 071 control_thompson_progcld_thompson_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_drag_suite_debug +Checking test 083 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 = 227.293615 - 0: The maximum resident set size (KB) = 992712 - -Test 071 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/regional_debug -Checking test 072 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 = 365.343307 + 0: The maximum resident set size (KB) = 1115880 - 0: The total amount of wall time = 321.956261 - 0: The maximum resident set size (KB) = 606192 +Test 083 rap_unified_drag_suite_debug PASS -Test 072 regional_debug PASS - -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_control_debug -Checking test 073 rap_control_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_diag_debug +Checking test 084 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 = 352.419681 - 0: The maximum resident set size (KB) = 995364 + 0: The total amount of wall time = 394.686603 + 0: The maximum resident set size (KB) = 1196540 -Test 073 rap_control_debug PASS +Test 084 rap_diag_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_unified_drag_suite_debug -Checking test 074 rap_unified_drag_suite_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_cires_ugwp_debug +Checking test 085 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 = 353.040699 - 0: The maximum resident set size (KB) = 996372 + 0: The total amount of wall time = 373.159692 + 0: The maximum resident set size (KB) = 1118012 -Test 074 rap_unified_drag_suite_debug PASS +Test 085 rap_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_diag_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_diag_debug -Checking test 075 rap_diag_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_unified_ugwp_debug +Checking test 086 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 = 372.690897 - 0: The maximum resident set size (KB) = 1080524 + 0: The total amount of wall time = 374.843648 + 0: The maximum resident set size (KB) = 1117316 -Test 075 rap_diag_debug PASS +Test 086 rap_unified_ugwp_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_cires_ugwp_debug -Checking test 076 rap_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_lndp_debug +Checking test 087 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 = 356.234053 - 0: The maximum resident set size (KB) = 996912 + 0: The total amount of wall time = 370.304469 + 0: The maximum resident set size (KB) = 1112576 -Test 076 rap_cires_ugwp_debug PASS +Test 087 rap_lndp_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_unified_ugwp_debug -Checking test 077 rap_unified_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_flake_debug +Checking test 088 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 = 358.682254 - 0: The maximum resident set size (KB) = 992820 + 0: The total amount of wall time = 364.179938 + 0: The maximum resident set size (KB) = 1114232 -Test 077 rap_unified_ugwp_debug PASS +Test 088 rap_flake_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_lndp_debug -Checking test 078 rap_lndp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_progcld_thompson_debug +Checking test 089 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 = 355.651874 - 0: The maximum resident set size (KB) = 994172 + 0: The total amount of wall time = 369.326338 + 0: The maximum resident set size (KB) = 1116136 -Test 078 rap_lndp_debug PASS +Test 089 rap_progcld_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_flake_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_flake_debug -Checking test 079 rap_flake_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_debug +Checking test 090 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 = 351.706359 - 0: The maximum resident set size (KB) = 996884 + 0: The total amount of wall time = 367.157022 + 0: The maximum resident set size (KB) = 1116916 -Test 079 rap_flake_debug PASS +Test 090 rap_noah_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_progcld_thompson_debug -Checking test 080 rap_progcld_thompson_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_sfcdiff_debug +Checking test 091 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 = 352.619560 - 0: The maximum resident set size (KB) = 994576 + 0: The total amount of wall time = 368.639076 + 0: The maximum resident set size (KB) = 1113224 -Test 080 rap_progcld_thompson_debug PASS +Test 091 rap_sfcdiff_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_noah_debug -Checking test 081 rap_noah_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 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 = 345.792982 - 0: The maximum resident set size (KB) = 995380 + 0: The total amount of wall time = 600.182782 + 0: The maximum resident set size (KB) = 1108736 -Test 081 rap_noah_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_rrtmgp_debug -Checking test 082 rap_rrtmgp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rrfs_v1beta_debug +Checking test 093 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 = 611.921026 - 0: The maximum resident set size (KB) = 1115096 + 0: The total amount of wall time = 368.616592 + 0: The maximum resident set size (KB) = 1108840 -Test 082 rap_rrtmgp_debug PASS +Test 093 rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_sfcdiff_debug -Checking test 083 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_wam_debug +Checking test 094 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 446.651218 + 0: The maximum resident set size (KB) = 440396 + +Test 094 control_wam_debug PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 354.095295 - 0: The maximum resident set size (KB) = 995184 + 0: The total amount of wall time = 436.047842 + 0: The maximum resident set size (KB) = 986160 -Test 083 rap_sfcdiff_debug PASS +Test 095 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 084 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn32_phy32 +Checking test 096 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 588.632120 + 0: The maximum resident set size (KB) = 851900 + +Test 096 rap_control_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_dyn32_phy32 +Checking test 097 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 315.639099 + 0: The maximum resident set size (KB) = 826936 + +Test 097 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_2threads_dyn32_phy32 +Checking test 098 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 560.852380 + 0: The maximum resident set size (KB) = 890812 + +Test 098 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_2threads_dyn32_phy32 +Checking test 099 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 321.712936 + 0: The maximum resident set size (KB) = 888392 + +Test 099 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_decomp_dyn32_phy32 +Checking test 100 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 341.067872 + 0: The maximum resident set size (KB) = 820756 + +Test 100 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_restart_dyn32_phy32 +Checking test 101 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 394.776986 + 0: The maximum resident set size (KB) = 805632 + +Test 101 rap_restart_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_restart_dyn32_phy32 +Checking test 102 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 164.594750 + 0: The maximum resident set size (KB) = 762352 + +Test 102 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32 +Checking test 103 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 374.260906 + 0: The maximum resident set size (KB) = 861852 + +Test 103 rap_control_dyn64_phy32 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_debug_dyn32_phy32 +Checking test 104 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 = 601.792052 - 0: The maximum resident set size (KB) = 999000 + 0: The total amount of wall time = 380.879030 + 0: The maximum resident set size (KB) = 997680 -Test 084 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 104 rap_control_debug_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/rrfs_v1beta_debug -Checking test 085 rrfs_v1beta_debug results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hrrr_control_debug_dyn32_phy32 +Checking test 105 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 = 357.071658 - 0: The maximum resident set size (KB) = 994192 + 0: The total amount of wall time = 417.729497 + 0: The maximum resident set size (KB) = 1003588 -Test 085 rrfs_v1beta_debug PASS +Test 105 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_wam_debug -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_wam_debug -Checking test 086 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/rap_control_dyn64_phy32_debug +Checking test 106 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 = 368.399048 - 0: The maximum resident set size (KB) = 260168 + 0: The total amount of wall time = 485.385520 + 0: The maximum resident set size (KB) = 1039668 -Test 086 control_wam_debug PASS +Test 106 rap_control_dyn64_phy32_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_atm -Checking test 087 hafs_regional_atm results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm +Checking test 107 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 1186.030738 - 0: The maximum resident set size (KB) = 718940 + 0: The total amount of wall time = 451.263492 + 0: The maximum resident set size (KB) = 1219868 -Test 087 hafs_regional_atm PASS +Test 107 hafs_regional_atm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_atm_thompson_gfdlsf -Checking test 088 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_thompson_gfdlsf +Checking test 108 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 1296.915054 - 0: The maximum resident set size (KB) = 1072880 + 0: The total amount of wall time = 612.850875 + 0: The maximum resident set size (KB) = 1542836 -Test 088 hafs_regional_atm_thompson_gfdlsf PASS +Test 108 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_atm_ocn -Checking test 089 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn +Checking test 109 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK 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 = 485.023530 - 0: The maximum resident set size (KB) = 748864 + 0: The total amount of wall time = 554.786065 + 0: The maximum resident set size (KB) = 1288280 -Test 089 hafs_regional_atm_ocn PASS +Test 109 hafs_regional_atm_ocn PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_atm_wav -Checking test 090 hafs_regional_atm_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_wav +Checking test 110 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1181.004743 - 0: The maximum resident set size (KB) = 739580 + 0: The total amount of wall time = 956.275061 + 0: The maximum resident set size (KB) = 1319664 -Test 090 hafs_regional_atm_wav PASS +Test 110 hafs_regional_atm_wav PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_atm_ocn_wav -Checking test 091 hafs_regional_atm_ocn_wav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_atm_ocn_wav +Checking test 111 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 1258.081933 - 0: The maximum resident set size (KB) = 762008 + 0: The total amount of wall time = 1063.752364 + 0: The maximum resident set size (KB) = 1336856 -Test 091 hafs_regional_atm_ocn_wav PASS +Test 111 hafs_regional_atm_ocn_wav PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_docn -Checking test 092 hafs_regional_docn results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn +Checking test 112 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 475.912750 - 0: The maximum resident set size (KB) = 772016 + 0: The total amount of wall time = 533.064773 + 0: The maximum resident set size (KB) = 1310420 -Test 092 hafs_regional_docn PASS +Test 112 hafs_regional_docn PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_docn_oisst -Checking test 093 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_docn_oisst +Checking test 113 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 489.682034 - 0: The maximum resident set size (KB) = 741352 + 0: The total amount of wall time = 531.570938 + 0: The maximum resident set size (KB) = 1288724 -Test 093 hafs_regional_docn_oisst PASS +Test 113 hafs_regional_docn_oisst PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/hafs_regional_datm_cdeps -Checking test 094 hafs_regional_datm_cdeps results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/hafs_regional_datm_cdeps +Checking test 114 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 = 1249.493413 - 0: The maximum resident set size (KB) = 845820 + 0: The total amount of wall time = 1306.922889 + 0: The maximum resident set size (KB) = 980988 -Test 094 hafs_regional_datm_cdeps PASS +Test 114 hafs_regional_datm_cdeps PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_control_cfsr -Checking test 095 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_cfsr +Checking test 115 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 196.059741 - 0: The maximum resident set size (KB) = 726196 + 0: The total amount of wall time = 257.725741 + 0: The maximum resident set size (KB) = 966628 -Test 095 datm_cdeps_control_cfsr PASS +Test 115 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_restart_cfsr -Checking test 096 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_restart_cfsr +Checking test 116 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 = 115.192745 - 0: The maximum resident set size (KB) = 726016 + 0: The total amount of wall time = 163.348982 + 0: The maximum resident set size (KB) = 939580 + +Test 116 datm_cdeps_restart_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_control_gefs +Checking test 117 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 = 242.164381 + 0: The maximum resident set size (KB) = 867452 -Test 096 datm_cdeps_restart_cfsr PASS +Test 117 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_control_gefs -Checking test 097 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_iau_gefs +Checking test 118 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 193.692989 - 0: The maximum resident set size (KB) = 625896 + 0: The total amount of wall time = 254.681078 + 0: The maximum resident set size (KB) = 855248 -Test 097 datm_cdeps_control_gefs PASS +Test 118 datm_cdeps_iau_gefs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_iau_gefs -Checking test 098 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_stochy_gefs +Checking test 119 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 200.890076 - 0: The maximum resident set size (KB) = 625884 + 0: The total amount of wall time = 249.545982 + 0: The maximum resident set size (KB) = 859828 -Test 098 datm_cdeps_iau_gefs PASS +Test 119 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_stochy_gefs -Checking test 099 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_ciceC_cfsr +Checking test 120 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 193.496351 - 0: The maximum resident set size (KB) = 622720 + 0: The total amount of wall time = 251.351074 + 0: The maximum resident set size (KB) = 968280 -Test 099 datm_cdeps_stochy_gefs PASS +Test 120 datm_cdeps_ciceC_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_bulk_cfsr -Checking test 100 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_cfsr +Checking test 121 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 = 202.543522 - 0: The maximum resident set size (KB) = 726404 + 0: The total amount of wall time = 250.921747 + 0: The maximum resident set size (KB) = 956220 -Test 100 datm_cdeps_bulk_cfsr PASS +Test 121 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_bulk_gefs -Checking test 101 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_bulk_gefs +Checking test 122 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 191.882679 - 0: The maximum resident set size (KB) = 626208 + 0: The total amount of wall time = 227.499567 + 0: The maximum resident set size (KB) = 865316 -Test 101 datm_cdeps_bulk_gefs PASS +Test 122 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_mx025_cfsr -Checking test 102 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_cfsr +Checking test 123 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK 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 = 410.967248 - 0: The maximum resident set size (KB) = 550656 + 0: The total amount of wall time = 695.240123 + 0: The maximum resident set size (KB) = 765612 -Test 102 datm_cdeps_mx025_cfsr PASS +Test 123 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_mx025_gefs -Checking test 103 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_mx025_gefs +Checking test 124 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 414.036645 - 0: The maximum resident set size (KB) = 524496 + 0: The total amount of wall time = 748.115276 + 0: The maximum resident set size (KB) = 741048 -Test 103 datm_cdeps_mx025_gefs PASS +Test 124 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_multiple_files_cfsr -Checking test 104 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_multiple_files_cfsr +Checking test 125 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 = 193.192178 - 0: The maximum resident set size (KB) = 724520 + 0: The total amount of wall time = 255.325649 + 0: The maximum resident set size (KB) = 965844 -Test 104 datm_cdeps_multiple_files_cfsr PASS +Test 125 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_3072x1536_cfsr -Checking test 105 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 +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_3072x1536_cfsr +Checking test 126 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - - 0: The total amount of wall time = 266.301751 - 0: The maximum resident set size (KB) = 1835940 - -Test 105 datm_cdeps_3072x1536_cfsr PASS - -....OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 266.301751 - 0: The maximum resident set size (KB) = 1835940 + 0: The total amount of wall time = 361.487880 + 0: The maximum resident set size (KB) = 2251696 -Test 105 datm_cdeps_3072x1536_cfsr PASS +Test 126 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_gfs -Checking test 106 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_gfs +Checking test 127 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 = 266.781634 - 0: The maximum resident set size (KB) = 1840364 + 0: The total amount of wall time = 415.113978 + 0: The maximum resident set size (KB) = 2253716 -Test 106 datm_cdeps_gfs PASS +Test 127 datm_cdeps_gfs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/datm_cdeps_debug_cfsr -Checking test 107 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_debug_cfsr +Checking test 128 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.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 = 575.208550 - 0: The maximum resident set size (KB) = 734292 + 0: The total amount of wall time = 619.456631 + 0: The maximum resident set size (KB) = 940160 + +Test 128 datm_cdeps_debug_cfsr PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3 +Checking test 129 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 41.897433 + 0: The maximum resident set size (KB) = 242984 -Test 107 datm_cdeps_debug_cfsr PASS +Test 129 datm_cdeps_lnd_gswp3 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_atmwav -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_atmwav -Checking test 108 control_atmwav results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/datm_cdeps_lnd_gswp3_rst +Checking test 130 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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 = 45.364609 + 0: The maximum resident set size (KB) = 256364 + +Test 130 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_p8_atmlnd_sbs +Checking test 131 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 310.326644 + 0: The maximum resident set size (KB) = 1587588 + +Test 131 control_p8_atmlnd_sbs PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/control_atmwav +Checking test 132 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2669,49 +3963,151 @@ Checking test 108 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 113.994652 - 0: The maximum resident set size (KB) = 490564 + 0: The total amount of wall time = 128.402573 + 0: The maximum resident set size (KB) = 597424 -Test 108 control_atmwav PASS +Test 132 control_atmwav PASS -baseline dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_BASELINE/Samuel.Trahan/FV3_RT/REGRESSION_TEST_INTEL/control_atm_aerosols -working dir = /lfs4/HFIP/hfv3gfs/Samuel.Trahan/RT_RUNDIRS/Samuel.Trahan/FV3_RT/rt_22026/control_atm_aerosols -Checking test 109 control_atm_aerosols results .... +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8 +Checking test 133 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 323.006092 + 0: The maximum resident set size (KB) = 1635068 + +Test 133 atmaero_control_p8 PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad +Checking test 134 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 387.012991 + 0: The maximum resident set size (KB) = 1668800 + +Test 134 atmaero_control_p8_rad PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/atmaero_control_p8_rad_micro +Checking test 135 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2720,49 +4116,69 @@ Checking test 109 control_atm_aerosols results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 405.301543 - 0: The maximum resident set size (KB) = 916872 - -Test 109 control_atm_aerosols PASS + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 388.319959 + 0: The maximum resident set size (KB) = 1689836 + +Test 135 atmaero_control_p8_rad_micro PASS + + +baseline dir = /mnt/lfs4/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /lfs4/HFIP/hfv3gfs/role.epic/RT_RUNDIRS/role.epic/FV3_RT/rt_266784/regional_atmaq +Checking test 136 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 941.390764 + 0: The maximum resident set size (KB) = 1427088 + +Test 136 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Thu May 12 03:59:35 GMT 2022 -Elapsed time: 04h:53m:37s. Have a nice day! +Tue Feb 28 20:34:11 UTC 2023 +Elapsed time: 02h:55m:13s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 1309336f27..a4ab06d6c9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,39 @@ -Tue May 10 21:01:50 CDT 2022 +Tue Feb 28 19:41:25 CST 2023 Start Regression test -Compile 001 elapsed time 605 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 203 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 339 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 215 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 188 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 525 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 553 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 109 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 586 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 336 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... +Compile 001 elapsed time 790 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 789 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 700 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 266 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 249 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 677 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 629 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 620 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 625 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,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 602 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 492 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 222 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 222 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 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 609 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 240 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 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 698 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 476 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 818 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 757 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 022 elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 220 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 190 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 597 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 617 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 548 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 503 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 210 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8_mixedmode +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -45,55 +58,66 @@ Checking test 001 cpld_control_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 360.112453 - 0: The maximum resident set size (KB) = 1139264 + 0: The total amount of wall time = 311.799948 + 0: The maximum resident set size (KB) = 3146248 -Test 001 cpld_control_p8 PASS +Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_gfsv17 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_gfsv17 +Checking test 002 cpld_control_gfsv17 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -106,55 +130,125 @@ Checking test 002 cpld_2threads_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 237.690299 + 0: The maximum resident set size (KB) = 1731136 + +Test 002 cpld_control_gfsv17 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_p8 +Checking test 003 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 449.436515 - 0: The maximum resident set size (KB) = 1713636 + 0: The total amount of wall time = 352.971491 + 0: The maximum resident set size (KB) = 3180744 -Test 002 cpld_2threads_p8 PASS +Test 003 cpld_control_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_p8 +Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -167,55 +261,114 @@ Checking test 003 cpld_decomp_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 204.396024 + 0: The maximum resident set size (KB) = 3047856 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_2threads_p8 +Checking test 005 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 358.694551 - 0: The maximum resident set size (KB) = 1129696 + 0: The total amount of wall time = 411.404099 + 0: The maximum resident set size (KB) = 3512908 -Test 003 cpld_decomp_p8 PASS +Test 005 cpld_2threads_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_decomp_p8 +Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -228,108 +381,416 @@ Checking test 004 cpld_mpi_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 345.691980 + 0: The maximum resident set size (KB) = 3168076 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_mpi_p8 +Checking test 007 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 309.180497 - 0: The maximum resident set size (KB) = 1049340 + 0: The total amount of wall time = 287.673042 + 0: The maximum resident set size (KB) = 3028952 -Test 004 cpld_mpi_p8 PASS +Test 007 cpld_mpi_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_bmark_p8 -Checking test 005 cpld_bmark_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_ciceC_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_ciceC_p8 +Checking test 008 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 353.392292 + 0: The maximum resident set size (KB) = 3175116 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c192_p8 +Checking test 009 cpld_control_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 659.734343 + 0: The maximum resident set size (KB) = 3247956 + +Test 009 cpld_control_c192_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c192_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c192_p8 +Checking test 010 cpld_restart_c192_p8 results .... + Comparing sfcf030.tile1.nc .........OK + Comparing sfcf030.tile2.nc .........OK + Comparing sfcf030.tile3.nc .........OK + Comparing sfcf030.tile4.nc .........OK + Comparing sfcf030.tile5.nc .........OK + Comparing sfcf030.tile6.nc .........OK + Comparing atmf030.tile1.nc .........OK + Comparing atmf030.tile2.nc .........OK + Comparing atmf030.tile3.nc .........OK + Comparing atmf030.tile4.nc .........OK + Comparing atmf030.tile5.nc .........OK + Comparing atmf030.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_1200z.nc4 .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + Comparing 20210323.120000.out_grd.ww3 .........OK + Comparing 20210323.120000.out_pnt.ww3 .........OK + + 0: The total amount of wall time = 459.673238 + 0: The maximum resident set size (KB) = 3146672 + +Test 010 cpld_restart_c192_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_bmark_p8 +Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 1155.271417 - 0: The maximum resident set size (KB) = 2838220 + 0: The total amount of wall time = 876.457276 + 0: The maximum resident set size (KB) = 4040260 -Test 005 cpld_bmark_p8 PASS +Test 011 cpld_bmark_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_bmark_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_bmark_p8 +Checking test 012 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 543.608448 + 0: The maximum resident set size (KB) = 3959036 + +Test 012 cpld_restart_bmark_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8 +Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK Comparing sfcf021.tile3.nc .........OK @@ -354,52 +815,65 @@ Checking test 006 cpld_control_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 354.381095 - 0: The maximum resident set size (KB) = 1150512 + 0: The total amount of wall time = 261.273395 + 0: The maximum resident set size (KB) = 1720856 -Test 006 cpld_control_c96_p8 PASS +Test 013 cpld_control_noaero_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c96_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_nowave_noaero_p8 +Checking test 014 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -412,270 +886,296 @@ Checking test 007 cpld_restart_c96_p8 results .... Comparing atmf024.tile4.nc .........OK Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK 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 = 210.307403 - 0: The maximum resident set size (KB) = 1110604 - -Test 007 cpld_restart_c96_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c192_p8 -Checking test 008 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 1144.165904 - 0: The maximum resident set size (KB) = 1298640 - -Test 008 cpld_control_c192_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - - 0: The total amount of wall time = 933.924983 - 0: The maximum resident set size (KB) = 1461264 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_control_c384_p8 -Checking test 010 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1285.734906 - 0: The maximum resident set size (KB) = 2828564 - -Test 010 cpld_control_c384_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_restart_c384_p8 -Checking test 011 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 710.340404 - 0: The maximum resident set size (KB) = 2806748 - -Test 011 cpld_restart_c384_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/cpld_debug_p8 -Checking test 012 cpld_debug_p8 results .... + 0: The total amount of wall time = 263.239836 + 0: The maximum resident set size (KB) = 1762528 + +Test 014 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 692.027600 + 0: The maximum resident set size (KB) = 3243104 + +Test 015 cpld_debug_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_debug_noaero_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_debug_noaero_p8 +Checking test 016 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/20210322.090000.coupler.res .........OK + Comparing RESTART/20210322.090000.fv_core.res.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.090000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-22-32400.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Comparing 20210322.090000.out_pnt.ww3 .........OK + Comparing 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 434.819697 + 0: The maximum resident set size (KB) = 1752392 + +Test 016 cpld_debug_noaero_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_noaero_p8_agrid +Checking test 017 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 271.557475 + 0: The maximum resident set size (KB) = 1762212 + +Test 017 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_control_c48 +Checking test 018 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + 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 = 497.901712 + 0: The maximum resident set size (KB) = 2796524 + +Test 018 cpld_control_c48 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_warmstart_c48 +Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -688,316 +1188,108 @@ Checking test 012 cpld_debug_p8 results .... Comparing atmf006.tile4.nc .........OK Comparing atmf006.tile5.nc .........OK Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - - 0: The total amount of wall time = 1084.604331 - 0: The maximum resident set size (KB) = 1269556 - -Test 012 cpld_debug_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 128.371628 - 0: The maximum resident set size (KB) = 468024 - -Test 013 control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 143.444291 - 0: The maximum resident set size (KB) = 465808 - -Test 014 control_decomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2dwrtdecomp -Checking test 015 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - - 0: The total amount of wall time = 127.973972 - 0: The maximum resident set size (KB) = 465776 - -Test 015 control_2dwrtdecomp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads -Checking test 016 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 155.367036 - 0: The maximum resident set size (KB) = 516040 - -Test 016 control_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_restart -Checking test 017 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 71.893709 - 0: The maximum resident set size (KB) = 210344 - -Test 017 control_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_fhzero -Checking test 018 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 129.306671 - 0: The maximum resident set size (KB) = 466616 - -Test 018 control_fhzero PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 140.023396 + 0: The maximum resident set size (KB) = 2803408 + +Test 019 cpld_warmstart_c48 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/cpld_warmstart_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/cpld_restart_c48 +Checking test 020 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + 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 = 72.254655 + 0: The maximum resident set size (KB) = 2250832 + +Test 020 cpld_restart_c48 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1023,15 +1315,29 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.659075 - 0: The maximum resident set size (KB) = 467832 + 0: The total amount of wall time = 131.736134 + 0: The maximum resident set size (KB) = 628156 -Test 019 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_latlon -Checking test 020 control_latlon results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_parallel +Checking test 022 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + + 0: The total amount of wall time = 128.373172 + 0: The maximum resident set size (KB) = 629824 + +Test 022 control_CubedSphereGrid_parallel PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_latlon +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_latlon +Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1041,79 +1347,79 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.272318 - 0: The maximum resident set size (KB) = 465812 + 0: The total amount of wall time = 134.024717 + 0: The maximum resident set size (KB) = 632768 -Test 020 control_latlon PASS +Test 023 control_latlon PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel +Checking test 024 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.581351 - 0: The maximum resident set size (KB) = 466996 + 0: The total amount of wall time = 135.778505 + 0: The maximum resident set size (KB) = 627596 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 024 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c48 -Checking test 022 control_c48 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c48 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c48 +Checking test 025 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 326.553068 -0: The maximum resident set size (KB) = 654612 - -Test 022 control_c48 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c192 -Checking test 023 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 347.756121 +0: The maximum resident set size (KB) = 815552 + +Test 025 control_c48 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c192 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c192 +Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1123,15 +1429,15 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 490.798587 - 0: The maximum resident set size (KB) = 566044 + 0: The total amount of wall time = 525.405908 + 0: The maximum resident set size (KB) = 758376 -Test 023 control_c192 PASS +Test 026 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384 -Checking test 024 control_c384 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384 +Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1141,15 +1447,15 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 673.234538 - 0: The maximum resident set size (KB) = 830508 + 0: The total amount of wall time = 614.442326 + 0: The maximum resident set size (KB) = 1233084 -Test 024 control_c384 PASS +Test 027 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384gdas -Checking test 025 control_c384gdas results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_c384gdas +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_c384gdas +Checking test 028 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1158,48 +1464,48 @@ Checking test 025 control_c384gdas results .... Comparing GFSFLX.GrbF06 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 596.996503 - 0: The maximum resident set size (KB) = 955980 - -Test 025 control_c384gdas PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy -Checking test 026 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 521.905020 + 0: The maximum resident set size (KB) = 1331700 + +Test 028 control_c384gdas PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy +Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,29 +1515,29 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.671075 - 0: The maximum resident set size (KB) = 468848 + 0: The total amount of wall time = 87.090957 + 0: The maximum resident set size (KB) = 629520 -Test 026 control_stochy PASS +Test 029 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy_restart -Checking test 027 control_stochy_restart results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_restart +Checking test 030 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 = 48.575694 - 0: The maximum resident set size (KB) = 255852 + 0: The total amount of wall time = 47.430441 + 0: The maximum resident set size (KB) = 490644 -Test 027 control_stochy_restart PASS +Test 030 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp +Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1241,15 +1547,15 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.288944 - 0: The maximum resident set size (KB) = 468716 + 0: The total amount of wall time = 81.418162 + 0: The maximum resident set size (KB) = 629604 -Test 028 control_lndp PASS +Test 031 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_iovr4 -Checking test 029 control_iovr4 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr4 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr4 +Checking test 032 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1263,15 +1569,15 @@ Checking test 029 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 130.064004 - 0: The maximum resident set size (KB) = 466200 + 0: The total amount of wall time = 133.958593 + 0: The maximum resident set size (KB) = 633376 -Test 029 control_iovr4 PASS +Test 032 control_iovr4 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_iovr5 -Checking test 030 control_iovr5 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_iovr5 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_iovr5 +Checking test 033 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1285,15 +1591,15 @@ Checking test 030 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.610044 - 0: The maximum resident set size (KB) = 466180 + 0: The total amount of wall time = 134.109636 + 0: The maximum resident set size (KB) = 627804 -Test 030 control_iovr5 PASS +Test 033 control_iovr5 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8 +Checking test 034 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1306,48 +1612,48 @@ Checking test 031 control_p8 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 174.829954 - 0: The maximum resident set size (KB) = 862992 - -Test 031 control_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8_lndp -Checking test 032 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 167.346608 + 0: The maximum resident set size (KB) = 1600764 + +Test 034 control_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_lndp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_lndp +Checking test 035 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,61 +1671,61 @@ Checking test 032 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 331.792939 - 0: The maximum resident set size (KB) = 859148 + 0: The total amount of wall time = 311.283791 + 0: The maximum resident set size (KB) = 1604088 -Test 032 control_p8_lndp PASS +Test 035 control_p8_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_restart_p8 -Checking test 033 control_restart_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_restart_p8 +Checking test 036 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 95.304982 - 0: The maximum resident set size (KB) = 606044 - -Test 033 control_restart_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 87.443489 + 0: The maximum resident set size (KB) = 876800 + +Test 036 control_restart_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_decomp_p8 +Checking test 037 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1428,48 +1734,48 @@ Checking test 034 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 180.293360 - 0: The maximum resident set size (KB) = 850424 - -Test 034 control_decomp_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 174.108635 + 0: The maximum resident set size (KB) = 1587508 + +Test 037 control_decomp_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_2threads_p8 +Checking test 038 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1478,48 +1784,48 @@ Checking test 035 control_2threads_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 198.099094 - 0: The maximum resident set size (KB) = 931796 - -Test 035 control_2threads_p8 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 181.707282 + 0: The maximum resident set size (KB) = 1682704 + +Test 038 control_2threads_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_rrtmgp +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_rrtmgp +Checking test 039 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1532,141 +1838,217 @@ Checking test 036 control_p8_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 202.557452 - 0: The maximum resident set size (KB) = 975752 - -Test 036 control_p8_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_control -Checking test 037 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 226.600765 + 0: The maximum resident set size (KB) = 1666672 + +Test 039 control_p8_rrtmgp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/merra2_thompson +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/merra2_thompson +Checking test 040 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 189.443605 + 0: The maximum resident set size (KB) = 1616516 + +Test 040 merra2_thompson PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_control +Checking test 041 regional_control results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK + Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 338.909489 - 0: The maximum resident set size (KB) = 587300 + 0: The total amount of wall time = 294.911836 + 0: The maximum resident set size (KB) = 865704 -Test 037 regional_control PASS +Test 041 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_restart +Checking test 042 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 = 190.447831 - 0: The maximum resident set size (KB) = 585644 + 0: The total amount of wall time = 150.206270 + 0: The maximum resident set size (KB) = 863860 -Test 038 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_control_2dwrtdecomp -Checking test 039 regional_control_2dwrtdecomp results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_decomp +Checking test 043 regional_decomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.902336 - 0: The maximum resident set size (KB) = 580596 + 0: The total amount of wall time = 315.220382 + 0: The maximum resident set size (KB) = 859520 -Test 039 regional_control_2dwrtdecomp PASS +Test 043 regional_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_noquilt -Checking test 040 regional_noquilt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2threads +Checking test 044 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + + 0: The total amount of wall time = 208.690364 + 0: The maximum resident set size (KB) = 842940 + +Test 044 regional_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_noquilt +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_noquilt +Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK 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 = 339.717079 - 0: The maximum resident set size (KB) = 599996 + 0: The total amount of wall time = 314.583965 + 0: The maximum resident set size (KB) = 858520 -Test 040 regional_noquilt PASS +Test 045 regional_noquilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_2threads -Checking test 041 regional_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_netcdf_parallel +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_netcdf_parallel +Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf006.nc .........OK - 0: The total amount of wall time = 249.972664 - 0: The maximum resident set size (KB) = 583536 + 0: The total amount of wall time = 291.890797 + 0: The maximum resident set size (KB) = 867864 -Test 041 regional_2threads PASS +Test 046 regional_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_2dwrtdecomp +Checking test 047 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 336.403156 - 0: The maximum resident set size (KB) = 581420 + 0: The total amount of wall time = 298.437297 + 0: The maximum resident set size (KB) = 864892 -Test 042 regional_netcdf_parallel PASS +Test 047 regional_2dwrtdecomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_3km -Checking test 043 regional_3km results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/fv3_regional_wofs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_wofs +Checking test 048 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1676,15 +2058,15 @@ Checking test 043 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 257.090796 - 0: The maximum resident set size (KB) = 625120 + 0: The total amount of wall time = 375.102845 + 0: The maximum resident set size (KB) = 623524 -Test 043 regional_3km PASS +Test 048 regional_wofs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_control -Checking test 044 rap_control results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control +Checking test 049 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1697,102 +2079,48 @@ Checking test 044 rap_control results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 450.038643 - 0: The maximum resident set size (KB) = 846724 - -Test 044 rap_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_rrtmgp -Checking test 045 rap_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 488.643964 - 0: The maximum resident set size (KB) = 962316 - -Test 045 rap_rrtmgp PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 461.350630 + 0: The maximum resident set size (KB) = 1065984 + +Test 049 rap_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb +Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1802,15 +2130,15 @@ Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 314.919147 - 0: The maximum resident set size (KB) = 938140 + 0: The total amount of wall time = 330.591694 + 0: The maximum resident set size (KB) = 1147316 -Test 046 regional_spp_sppt_shum_skeb PASS +Test 050 regional_spp_sppt_shum_skeb PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_2threads -Checking test 047 rap_2threads results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_decomp +Checking test 051 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1823,94 +2151,48 @@ Checking test 047 rap_2threads results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 499.209852 - 0: The maximum resident set size (KB) = 906480 - -Test 047 rap_2threads PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_restart -Checking test 048 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 247.358883 - 0: The maximum resident set size (KB) = 598200 - -Test 048 rap_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 479.976241 + 0: The maximum resident set size (KB) = 1012244 + +Test 051 rap_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads +Checking test 052 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1923,246 +2205,554 @@ Checking test 049 rap_sfcdiff results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 449.924145 - 0: The maximum resident set size (KB) = 842200 - -Test 049 rap_sfcdiff PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 480.376134 + 0: The maximum resident set size (KB) = 1138640 + +Test 052 rap_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart +Checking test 053 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 325.864923 - 0: The maximum resident set size (KB) = 593860 - -Test 050 rap_sfcdiff_restart PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hrrr_control -Checking test 051 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 232.729693 + 0: The maximum resident set size (KB) = 974976 + +Test 053 rap_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff +Checking test 054 rap_sfcdiff results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 435.847779 - 0: The maximum resident set size (KB) = 844960 - -Test 051 hrrr_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1beta -Checking test 052 rrfs_v1beta results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 454.833072 + 0: The maximum resident set size (KB) = 1062976 + +Test 054 rap_sfcdiff PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_decomp +Checking test 055 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 444.193082 - 0: The maximum resident set size (KB) = 841524 - -Test 052 rrfs_v1beta PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1nssl -Checking test 053 rrfs_v1nssl results .... + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 478.292525 + 0: The maximum resident set size (KB) = 1007520 + +Test 055 rap_sfcdiff_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_restart +Checking test 056 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 351.127888 + 0: The maximum resident set size (KB) = 997120 + +Test 056 rap_sfcdiff_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control +Checking test 057 hrrr_control results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 434.886174 + 0: The maximum resident set size (KB) = 1057188 + +Test 057 hrrr_control PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp +Checking test 058 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 458.211877 + 0: The maximum resident set size (KB) = 1006844 + +Test 058 hrrr_control_decomp PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads +Checking test 059 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 449.301408 + 0: The maximum resident set size (KB) = 1134040 + +Test 059 hrrr_control_2threads PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart +Checking test 060 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 333.865491 + 0: The maximum resident set size (KB) = 988204 + +Test 060 hrrr_control_restart PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta +Checking test 061 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 443.891960 + 0: The maximum resident set size (KB) = 1074776 + +Test 061 rrfs_v1beta PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl +Checking test 062 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 482.338658 - 0: The maximum resident set size (KB) = 530512 + 0: The total amount of wall time = 532.022044 + 0: The maximum resident set size (KB) = 705316 -Test 053 rrfs_v1nssl PASS +Test 062 rrfs_v1nssl PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1nssl_nohailnoccn -Checking test 054 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1nssl_nohailnoccn +Checking test 063 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 464.738569 - 0: The maximum resident set size (KB) = 518976 + 0: The total amount of wall time = 516.126819 + 0: The maximum resident set size (KB) = 762416 -Test 054 rrfs_v1nssl_nohailnoccn PASS +Test 063 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm +Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2170,15 +2760,15 @@ Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 199.258013 - 0: The maximum resident set size (KB) = 673936 + 0: The total amount of wall time = 122.895246 + 0: The maximum resident set size (KB) = 892252 -Test 055 rrfs_conus13km_hrrr_warm PASS +Test 064 rrfs_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_smoke_conus13km_hrrr_warm +Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2186,69 +2776,63 @@ Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 200.607273 - 0: The maximum resident set size (KB) = 676772 + 0: The total amount of wall time = 138.035420 + 0: The maximum resident set size (KB) = 958620 -Test 056 rrfs_conus13km_radar_tten_warm PASS +Test 065 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmg -Checking test 057 control_csawmg results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm +Checking test 066 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 333.096668 - 0: The maximum resident set size (KB) = 538156 + 0: The total amount of wall time = 123.548228 + 0: The maximum resident set size (KB) = 933580 -Test 057 control_csawmg PASS +Test 066 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmgt -Checking test 058 control_csawmgt results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_2threads +Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 327.372439 - 0: The maximum resident set size (KB) = 537252 + 0: The total amount of wall time = 82.872214 + 0: The maximum resident set size (KB) = 842580 -Test 058 control_csawmgt PASS +Test 067 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_flake -Checking test 059 control_flake results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_2threads +Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK - 0: The total amount of wall time = 236.250088 - 0: The maximum resident set size (KB) = 537516 + 0: The total amount of wall time = 83.331542 + 0: The maximum resident set size (KB) = 892488 -Test 059 control_flake PASS +Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_ras -Checking test 060 control_ras results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg +Checking test 069 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2258,15 +2842,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.379852 - 0: The maximum resident set size (KB) = 496260 + 0: The total amount of wall time = 348.219443 + 0: The maximum resident set size (KB) = 722580 -Test 060 control_ras PASS +Test 069 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson -Checking test 061 control_thompson results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt +Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2276,15 +2860,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 237.525011 - 0: The maximum resident set size (KB) = 855656 + 0: The total amount of wall time = 340.750793 + 0: The maximum resident set size (KB) = 730696 -Test 061 control_thompson PASS +Test 070 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras +Checking test 071 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2294,55 +2878,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 227.511699 - 0: The maximum resident set size (KB) = 848236 + 0: The total amount of wall time = 182.813207 + 0: The maximum resident set size (KB) = 724364 -Test 062 control_thompson_no_aero PASS +Test 071 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wam -Checking test 063 control_wam results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam +Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 110.198119 - 0: The maximum resident set size (KB) = 233700 + 0: The total amount of wall time = 112.141139 + 0: The maximum resident set size (KB) = 610812 -Test 063 control_wam PASS +Test 072 control_wam PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_debug -Checking test 064 control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_hrrr_warm_debug +Checking test 073 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 = 154.954920 - 0: The maximum resident set size (KB) = 633212 + 0: The total amount of wall time = 734.214634 + 0: The maximum resident set size (KB) = 955624 -Test 064 control_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_2threads_debug -Checking test 065 control_2threads_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_conus13km_radar_tten_warm_debug +Checking test 074 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 = 231.231953 - 0: The maximum resident set size (KB) = 680880 + 0: The total amount of wall time = 740.791537 + 0: The maximum resident set size (KB) = 966444 -Test 065 control_2threads_debug PASS +Test 074 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_CubedSphereGrid_debug +Checking test 075 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2368,416 +2952,836 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 173.539777 - 0: The maximum resident set size (KB) = 631784 + 0: The total amount of wall time = 170.381994 + 0: The maximum resident set size (KB) = 793284 -Test 066 control_CubedSphereGrid_debug PASS +Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wrtGauss_netcdf_parallel_debug +Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.444081 - 0: The maximum resident set size (KB) = 631096 + 0: The total amount of wall time = 162.741623 + 0: The maximum resident set size (KB) = 789428 -Test 067 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_stochy_debug -Checking test 068 control_stochy_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_stochy_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_stochy_debug +Checking test 077 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 = 176.591707 - 0: The maximum resident set size (KB) = 638312 + 0: The total amount of wall time = 177.662069 + 0: The maximum resident set size (KB) = 800788 -Test 068 control_stochy_debug PASS +Test 077 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_lndp_debug -Checking test 069 control_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_lndp_debug +Checking test 078 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 = 157.893091 - 0: The maximum resident set size (KB) = 635068 + 0: The total amount of wall time = 159.161256 + 0: The maximum resident set size (KB) = 793616 -Test 069 control_lndp_debug PASS +Test 078 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmg_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmg_debug +Checking test 079 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 = 238.443906 - 0: The maximum resident set size (KB) = 677896 + 0: The total amount of wall time = 239.534510 + 0: The maximum resident set size (KB) = 844288 -Test 070 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_csawmgt_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_csawmgt_debug +Checking test 080 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 = 240.290950 - 0: The maximum resident set size (KB) = 677960 + 0: The total amount of wall time = 244.647474 + 0: The maximum resident set size (KB) = 847188 -Test 071 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_ras_debug -Checking test 072 control_ras_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_ras_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_ras_debug +Checking test 081 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 = 164.717237 - 0: The maximum resident set size (KB) = 639696 + 0: The total amount of wall time = 163.824988 + 0: The maximum resident set size (KB) = 809656 -Test 072 control_ras_debug PASS +Test 081 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_diag_debug -Checking test 073 control_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_diag_debug +Checking test 082 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 = 167.533841 - 0: The maximum resident set size (KB) = 689080 + 0: The total amount of wall time = 168.925352 + 0: The maximum resident set size (KB) = 844680 -Test 073 control_diag_debug PASS +Test 082 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_debug_p8 -Checking test 074 control_debug_p8 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_debug_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_debug_p8 +Checking test 083 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 = 171.336653 - 0: The maximum resident set size (KB) = 1021364 + 0: The total amount of wall time = 180.130234 + 0: The maximum resident set size (KB) = 1634288 -Test 074 control_debug_p8 PASS +Test 083 control_debug_p8 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_debug -Checking test 075 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_debug +Checking test 084 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 = 228.309151 - 0: The maximum resident set size (KB) = 993304 + 0: The total amount of wall time = 996.885006 + 0: The maximum resident set size (KB) = 881720 -Test 075 control_thompson_debug PASS +Test 084 regional_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_no_aero_debug -Checking test 076 control_thompson_no_aero_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug +Checking test 085 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.842917 - 0: The maximum resident set size (KB) = 991056 + 0: The total amount of wall time = 287.911265 + 0: The maximum resident set size (KB) = 1171604 -Test 076 control_thompson_no_aero_debug PASS +Test 085 rap_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_extdiag_debug -Checking test 077 control_thompson_extdiag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug +Checking test 086 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 = 191.831766 - 0: The maximum resident set size (KB) = 1029948 + 0: The total amount of wall time = 276.813431 + 0: The maximum resident set size (KB) = 1165388 -Test 077 control_thompson_extdiag_debug PASS +Test 086 hrrr_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_thompson_progcld_thompson_debug -Checking test 078 control_thompson_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_drag_suite_debug +Checking test 087 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 = 182.433168 - 0: The maximum resident set size (KB) = 997840 - -Test 078 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/regional_debug -Checking test 079 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 = 288.786967 + 0: The maximum resident set size (KB) = 1174996 - 0: The total amount of wall time = 250.881601 - 0: The maximum resident set size (KB) = 605364 +Test 087 rap_unified_drag_suite_debug PASS -Test 079 regional_debug PASS - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_control_debug -Checking test 080 rap_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_diag_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_diag_debug +Checking test 088 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 = 271.852214 - 0: The maximum resident set size (KB) = 1004572 + 0: The total amount of wall time = 302.361374 + 0: The maximum resident set size (KB) = 1258760 -Test 080 rap_control_debug PASS +Test 088 rap_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_cires_ugwp_debug +Checking test 089 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 = 276.983048 - 0: The maximum resident set size (KB) = 1004776 + 0: The total amount of wall time = 299.890657 + 0: The maximum resident set size (KB) = 1172404 -Test 081 rap_unified_drag_suite_debug PASS +Test 089 rap_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_diag_debug -Checking test 082 rap_diag_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_unified_ugwp_debug +Checking test 090 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 = 296.137880 - 0: The maximum resident set size (KB) = 1087552 + 0: The total amount of wall time = 289.409472 + 0: The maximum resident set size (KB) = 1169484 -Test 082 rap_diag_debug PASS +Test 090 rap_unified_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_lndp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_lndp_debug +Checking test 091 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 = 273.831737 - 0: The maximum resident set size (KB) = 1009468 + 0: The total amount of wall time = 290.016584 + 0: The maximum resident set size (KB) = 1176608 -Test 083 rap_cires_ugwp_debug PASS +Test 091 rap_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_flake_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_flake_debug +Checking test 092 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 = 286.664499 - 0: The maximum resident set size (KB) = 1004820 + 0: The total amount of wall time = 292.593182 + 0: The maximum resident set size (KB) = 1180920 -Test 084 rap_unified_ugwp_debug PASS +Test 092 rap_flake_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_progcld_thompson_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_progcld_thompson_debug +Checking test 093 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.817660 - 0: The maximum resident set size (KB) = 1006836 + 0: The total amount of wall time = 285.535823 + 0: The maximum resident set size (KB) = 1174096 -Test 085 rap_lndp_debug PASS +Test 093 rap_progcld_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_flake_debug -Checking test 086 rap_flake_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_debug +Checking test 094 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 = 277.632921 - 0: The maximum resident set size (KB) = 1007912 + 0: The total amount of wall time = 281.731054 + 0: The maximum resident set size (KB) = 1169464 -Test 086 rap_flake_debug PASS +Test 094 rap_noah_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_sfcdiff_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_sfcdiff_debug +Checking test 095 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 = 273.710721 - 0: The maximum resident set size (KB) = 1006076 + 0: The total amount of wall time = 287.927311 + 0: The maximum resident set size (KB) = 1173392 -Test 087 rap_progcld_thompson_debug PASS +Test 095 rap_sfcdiff_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_noah_debug -Checking test 088 rap_noah_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 096 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 = 275.880506 - 0: The maximum resident set size (KB) = 1001316 + 0: The total amount of wall time = 475.170517 + 0: The maximum resident set size (KB) = 1170788 -Test 088 rap_noah_debug PASS +Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rrfs_v1beta_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rrfs_v1beta_debug +Checking test 097 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 = 470.288151 - 0: The maximum resident set size (KB) = 1126348 + 0: The total amount of wall time = 286.883822 + 0: The maximum resident set size (KB) = 1166664 -Test 089 rap_rrtmgp_debug PASS +Test 097 rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_wam_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_wam_debug +Checking test 098 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + + 0: The total amount of wall time = 293.200872 + 0: The maximum resident set size (KB) = 530120 + +Test 098 control_wam_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 275.831021 - 0: The maximum resident set size (KB) = 1006640 + 0: The total amount of wall time = 301.825671 + 0: The maximum resident set size (KB) = 1082332 -Test 090 rap_sfcdiff_debug PASS +Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 370.940849 + 0: The maximum resident set size (KB) = 1004908 + +Test 100 rap_control_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 194.265667 + 0: The maximum resident set size (KB) = 948828 + +Test 101 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 387.870305 + 0: The maximum resident set size (KB) = 1024204 + +Test 102 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_2threads_dyn32_phy32 +Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 208.276342 + 0: The maximum resident set size (KB) = 1011440 + +Test 103 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_decomp_dyn32_phy32 +Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 207.352139 + 0: The maximum resident set size (KB) = 898512 + +Test 104 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_restart_dyn32_phy32 +Checking test 105 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 281.040969 + 0: The maximum resident set size (KB) = 949456 + +Test 105 rap_restart_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_restart_dyn32_phy32 +Checking test 106 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 101.024038 + 0: The maximum resident set size (KB) = 855712 + +Test 106 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 240.739026 + 0: The maximum resident set size (KB) = 911436 + +Test 107 rap_control_dyn64_phy32 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_debug_dyn32_phy32 +Checking test 108 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 = 461.527798 - 0: The maximum resident set size (KB) = 998464 + 0: The total amount of wall time = 305.463079 + 0: The maximum resident set size (KB) = 1065128 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hrrr_control_debug_dyn32_phy32 +Checking test 109 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 = 288.867847 - 0: The maximum resident set size (KB) = 999148 + 0: The total amount of wall time = 287.761948 + 0: The maximum resident set size (KB) = 1003880 -Test 092 rrfs_v1beta_debug PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_wam_debug -Checking test 093 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/rap_control_debug_dyn64_phy32 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/rap_control_dyn64_phy32_debug +Checking test 110 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 = 299.984173 - 0: The maximum resident set size (KB) = 259724 + 0: The total amount of wall time = 286.065390 + 0: The maximum resident set size (KB) = 1095664 -Test 093 control_wam_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm -Checking test 094 hafs_regional_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm +Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 270.556202 - 0: The maximum resident set size (KB) = 711980 + 0: The total amount of wall time = 267.427668 + 0: The maximum resident set size (KB) = 1054928 -Test 094 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_thompson_gfdlsf -Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_thompson_gfdlsf +Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 369.193039 - 0: The maximum resident set size (KB) = 1074196 + 0: The total amount of wall time = 419.069403 + 0: The maximum resident set size (KB) = 1421804 -Test 095 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_ocn -Checking test 096 hafs_regional_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn +Checking test 113 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2785,137 +3789,148 @@ Checking test 096 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 = 358.192749 - 0: The maximum resident set size (KB) = 759516 + 0: The total amount of wall time = 380.972164 + 0: The maximum resident set size (KB) = 1226196 -Test 096 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_wav -Checking test 097 hafs_regional_atm_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_wav +Checking test 114 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 851.579853 - 0: The maximum resident set size (KB) = 748256 + 0: The total amount of wall time = 730.299560 + 0: The maximum resident set size (KB) = 1255464 -Test 097 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_atm_ocn_wav -Checking test 098 hafs_regional_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_atm_ocn_wav +Checking test 115 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 935.752512 - 0: The maximum resident set size (KB) = 767192 + 0: The total amount of wall time = 828.112615 + 0: The maximum resident set size (KB) = 1282036 -Test 098 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_1nest_atm -Checking test 099 hafs_regional_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_1nest_atm +Checking test 116 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 = 435.563979 - 0: The maximum resident set size (KB) = 314312 + 0: The total amount of wall time = 369.729119 + 0: The maximum resident set size (KB) = 509880 -Test 099 hafs_regional_1nest_atm PASS +Test 116 hafs_regional_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_telescopic_2nests_atm -Checking test 100 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_telescopic_2nests_atm +Checking test 117 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK + Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 462.494053 - 0: The maximum resident set size (KB) = 332768 + 0: The total amount of wall time = 419.436938 + 0: The maximum resident set size (KB) = 518384 -Test 100 hafs_regional_telescopic_2nests_atm PASS +Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_1nest_atm -Checking test 101 hafs_global_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_1nest_atm +Checking test 118 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.072966 - 0: The maximum resident set size (KB) = 207392 + 0: The total amount of wall time = 182.626152 + 0: The maximum resident set size (KB) = 352748 -Test 101 hafs_global_1nest_atm PASS +Test 118 hafs_global_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_multiple_4nests_atm -Checking test 102 hafs_global_multiple_4nests_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_multiple_4nests_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_multiple_4nests_atm +Checking test 119 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK Comparing atm.nest03.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK Comparing sfc.nest04.f006.nc .........OK Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc ............ALT CHECK......OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 557.125097 - 0: The maximum resident set size (KB) = 264020 + 0: The total amount of wall time = 482.400096 + 0: The maximum resident set size (KB) = 373972 -Test 102 hafs_global_multiple_4nests_atm PASS +Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_specified_moving_1nest_atm -Checking test 103 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_specified_moving_1nest_atm +Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 262.550170 - 0: The maximum resident set size (KB) = 321456 + 0: The total amount of wall time = 233.215130 + 0: The maximum resident set size (KB) = 523400 -Test 103 hafs_regional_specified_moving_1nest_atm PASS +Test 120 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm -Checking test 104 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm +Checking test 121 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 ............ALT CHECK......OK + Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 250.256713 - 0: The maximum resident set size (KB) = 318356 + 0: The total amount of wall time = 226.062982 + 0: The maximum resident set size (KB) = 523452 -Test 104 hafs_regional_storm_following_1nest_atm PASS +Test 121 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2923,263 +3938,414 @@ Checking test 105 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 = 258.501133 - 0: The maximum resident set size (KB) = 360436 + 0: The total amount of wall time = 292.757540 + 0: The maximum resident set size (KB) = 559692 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_global_storm_following_1nest_atm +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_global_storm_following_1nest_atm +Checking test 123 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 ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK + Comparing sfc.nest02.f006.nc .........OK + + 0: The total amount of wall time = 78.174596 + 0: The maximum resident set size (KB) = 364316 + +Test 123 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 743.062835 - 0: The maximum resident set size (KB) = 378148 + 0: The total amount of wall time = 807.242894 + 0: The maximum resident set size (KB) = 576172 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 82.705738 - 0: The maximum resident set size (KB) = 223496 + 0: The total amount of wall time = 583.825906 + 0: The maximum resident set size (KB) = 616388 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn +Checking test 126 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 355.504277 - 0: The maximum resident set size (KB) = 778336 + 0: The total amount of wall time = 359.776531 + 0: The maximum resident set size (KB) = 1236356 -Test 108 hafs_regional_docn PASS +Test 126 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_docn_oisst +Checking test 127 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK 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 = 360.160780 - 0: The maximum resident set size (KB) = 759976 + 0: The total amount of wall time = 361.097194 + 0: The maximum resident set size (KB) = 1216612 -Test 109 hafs_regional_docn_oisst PASS +Test 127 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/hafs_regional_datm_cdeps +Checking test 128 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 = 924.620416 - 0: The maximum resident set size (KB) = 854480 + 0: The total amount of wall time = 918.514684 + 0: The maximum resident set size (KB) = 1037496 -Test 110 hafs_regional_datm_cdeps PASS +Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_cfsr +Checking test 129 datm_cdeps_control_cfsr results .... + Comparing RESTART/20111002.000000.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 = 142.032939 - 0: The maximum resident set size (KB) = 741368 + 0: The total amount of wall time = 146.370355 + 0: The maximum resident set size (KB) = 1080772 -Test 111 datm_cdeps_control_cfsr PASS +Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_restart_cfsr +Checking test 130 datm_cdeps_restart_cfsr results .... + Comparing RESTART/20111002.000000.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 = 147.634471 - 0: The maximum resident set size (KB) = 721796 + 0: The total amount of wall time = 90.018507 + 0: The maximum resident set size (KB) = 1013860 + +Test 130 datm_cdeps_restart_cfsr PASS + -Test 112 datm_cdeps_restart_cfsr PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_control_gefs +Checking test 131 datm_cdeps_control_gefs results .... + Comparing RESTART/20111002.000000.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 = 143.784196 + 0: The maximum resident set size (KB) = 970248 +Test 131 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_iau_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_iau_gefs +Checking test 132 datm_cdeps_iau_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 139.673196 - 0: The maximum resident set size (KB) = 620100 + 0: The total amount of wall time = 145.349590 + 0: The maximum resident set size (KB) = 968972 -Test 113 datm_cdeps_control_gefs PASS +Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_stochy_gefs +Checking test 133 datm_cdeps_stochy_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 138.623284 - 0: The maximum resident set size (KB) = 618952 + 0: The total amount of wall time = 144.797839 + 0: The maximum resident set size (KB) = 963624 -Test 114 datm_cdeps_iau_gefs PASS +Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_ciceC_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_ciceC_cfsr +Checking test 134 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 142.092186 - 0: The maximum resident set size (KB) = 618824 + 0: The total amount of wall time = 149.575380 + 0: The maximum resident set size (KB) = 1075632 -Test 115 datm_cdeps_stochy_gefs PASS +Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_cfsr +Checking test 135 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/20111002.000000.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 = 141.346370 - 0: The maximum resident set size (KB) = 720356 + 0: The total amount of wall time = 149.726303 + 0: The maximum resident set size (KB) = 1061508 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_bulk_gefs +Checking test 136 datm_cdeps_bulk_gefs results .... + Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 137.248110 - 0: The maximum resident set size (KB) = 621020 + 0: The total amount of wall time = 142.550023 + 0: The maximum resident set size (KB) = 948104 -Test 117 datm_cdeps_bulk_gefs PASS +Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_cfsr +Checking test 137 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK 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 = 373.610785 - 0: The maximum resident set size (KB) = 565072 + 0: The total amount of wall time = 444.375994 + 0: The maximum resident set size (KB) = 878808 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_mx025_gefs +Checking test 138 datm_cdeps_mx025_gefs results .... + Comparing RESTART/20111001.120000.MOM.res.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_2.nc .........OK + Comparing RESTART/20111001.120000.MOM.res_3.nc .........OK Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.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 = 292.157032 - 0: The maximum resident set size (KB) = 531548 + 0: The total amount of wall time = 430.448361 + 0: The maximum resident set size (KB) = 929704 -Test 119 datm_cdeps_mx025_gefs PASS +Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_multiple_files_cfsr +Checking test 139 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 = 141.336338 - 0: The maximum resident set size (KB) = 722756 + 0: The total amount of wall time = 146.329466 + 0: The maximum resident set size (KB) = 1060592 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_3072x1536_cfsr +Checking test 140 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/20111002.000000.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 = 188.207654 - 0: The maximum resident set size (KB) = 1894788 + 0: The total amount of wall time = 198.126337 + 0: The maximum resident set size (KB) = 2373544 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_gfs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_gfs +Checking test 141 datm_cdeps_gfs results .... + Comparing RESTART/20210323.060000.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 = 189.519605 - 0: The maximum resident set size (KB) = 1835172 + 0: The total amount of wall time = 200.017285 + 0: The maximum resident set size (KB) = 2358032 -Test 122 datm_cdeps_gfs PASS +Test 141 datm_cdeps_gfs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_debug_cfsr +Checking test 142 datm_cdeps_debug_cfsr results .... + Comparing RESTART/20111001.060000.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 = 451.564065 - 0: The maximum resident set size (KB) = 729084 + 0: The total amount of wall time = 444.604368 + 0: The maximum resident set size (KB) = 1002616 + +Test 142 datm_cdeps_debug_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3 +Checking test 143 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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.969370 + 0: The maximum resident set size (KB) = 264024 -Test 123 datm_cdeps_debug_cfsr PASS +Test 143 datm_cdeps_lnd_gswp3 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_atmwav -Checking test 124 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/datm_cdeps_lnd_gswp3 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/datm_cdeps_lnd_gswp3_rst +Checking test 144 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 + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + 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.896981 + 0: The maximum resident set size (KB) = 252352 + +Test 144 datm_cdeps_lnd_gswp3_rst PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_p8_atmlnd_sbs +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_p8_atmlnd_sbs +Checking test 145 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + 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 = 202.821515 + 0: The maximum resident set size (KB) = 1626008 + +Test 145 control_p8_atmlnd_sbs PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/control_atmwav +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/control_atmwav +Checking test 146 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3188,102 +4354,151 @@ Checking test 124 control_atmwav results .... Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 84.303327 - 0: The maximum resident set size (KB) = 494592 + 0: The total amount of wall time = 86.450844 + 0: The maximum resident set size (KB) = 659896 -Test 124 control_atmwav PASS +Test 146 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_c384gdas_wav -Checking test 125 control_c384gdas_wav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8 +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8 +Checking test 147 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 225.312887 + 0: The maximum resident set size (KB) = 2972256 + +Test 147 atmaero_control_p8 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad +Checking test 148 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF03 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF03 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.030000.restart.aoc_9km .........OK - Comparing 20210322.030000.restart.gnh_10m .........OK - Comparing 20210322.030000.restart.gsh_15m .........OK - - 0: The total amount of wall time = 693.592469 - 0: The maximum resident set size (KB) = 1027636 - -Test 125 control_c384gdas_wav PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220511/INTEL/control_atm_aerosols -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_452576/control_atm_aerosols -Checking test 126 control_atm_aerosols results .... + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 280.343169 + 0: The maximum resident set size (KB) = 2972032 + +Test 148 atmaero_control_p8_rad PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/atmaero_control_p8_rad_micro +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/atmaero_control_p8_rad_micro +Checking test 149 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3292,49 +4507,90 @@ Checking test 126 control_atm_aerosols results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 289.788701 - 0: The maximum resident set size (KB) = 915420 - -Test 126 control_atm_aerosols PASS + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 283.966022 + 0: The maximum resident set size (KB) = 3056532 + +Test 149 atmaero_control_p8_rad_micro PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq +Checking test 150 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + + 0: The total amount of wall time = 583.717317 + 0: The maximum resident set size (KB) = 1571008 + +Test 150 regional_atmaq PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230227/INTEL/regional_atmaq_debug +working dir = /work/noaa/epic-ps/jongkim/rt-1604/stmp/jongkim/FV3_RT/rt_381182/regional_atmaq_debug +Checking test 151 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + + 0: The total amount of wall time = 1305.757210 + 0: The maximum resident set size (KB) = 1521408 + +Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue May 10 22:08:18 CDT 2022 -Elapsed time: 01h:06m:28s. Have a nice day! +Tue Feb 28 21:05:40 CST 2023 +Elapsed time: 01h:24m:16s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log new file mode 100644 index 0000000000..bec6a768f3 --- /dev/null +++ b/tests/RegressionTests_wcoss2.intel.log @@ -0,0 +1,3953 @@ +Fri Feb 24 14:53:45 UTC 2023 +Start Regression test + +Compile 001 elapsed time 574 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 1136 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 533 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 537 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 005 elapsed time 491 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 487 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 007 elapsed time 1077 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 999 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 009 elapsed time 966 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 717 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 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 012 elapsed time 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 253 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 676 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 017 elapsed time 216 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 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 638 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 530 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 599 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 565 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 428 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8_mixedmode +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8_mixedmode +Checking test 001 cpld_control_p8_mixedmode results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 348.506363 +The maximum resident set size (KB) = 2954236 + +Test 001 cpld_control_p8_mixedmode PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_p8 +Checking test 002 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 392.872121 +The maximum resident set size (KB) = 2981468 + +Test 002 cpld_control_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_p8 +Checking test 003 cpld_restart_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 235.432198 +The maximum resident set size (KB) = 2869940 + +Test 003 cpld_restart_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_2threads_p8 +Checking test 004 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 379.461646 +The maximum resident set size (KB) = 3284888 + +Test 004 cpld_2threads_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_decomp_p8 +Checking test 005 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 387.510023 +The maximum resident set size (KB) = 2980316 + +Test 005 cpld_decomp_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_mpi_p8 +Checking test 006 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 324.784566 +The maximum resident set size (KB) = 2911532 + +Test 006 cpld_mpi_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_ciceC_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_ciceC_p8 +Checking test 007 cpld_control_ciceC_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 391.874639 +The maximum resident set size (KB) = 2984608 + +Test 007 cpld_control_ciceC_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_bmark_p8 +Checking test 008 cpld_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 943.164109 +The maximum resident set size (KB) = 3919324 + +Test 008 cpld_bmark_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_bmark_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_bmark_p8 +Checking test 009 cpld_restart_bmark_p8 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK + Comparing RESTART/20130401.060000.coupler.res .........OK + Comparing RESTART/20130401.060000.fv_core.res.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20130401.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20130401.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20130401.060000.MOM.res.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_1.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_2.nc .........OK + Comparing RESTART/20130401.060000.MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + Comparing 20130401.060000.out_pnt.ww3 .........OK + Comparing 20130401.060000.out_grd.ww3 .........OK + +The total amount of wall time = 703.379559 +The maximum resident set size (KB) = 3885800 + +Test 009 cpld_restart_bmark_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8 +Checking test 010 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_pnt.ww3 .........OK + Comparing 20210323.060000.out_grd.ww3 .........OK + +The total amount of wall time = 297.898075 +The maximum resident set size (KB) = 1583048 + +Test 010 cpld_control_noaero_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c96_noaero_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_nowave_noaero_p8 +Checking test 011 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 309.473146 +The maximum resident set size (KB) = 1620988 + +Test 011 cpld_control_nowave_noaero_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_noaero_p8_agrid +Checking test 012 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 320.712967 +The maximum resident set size (KB) = 1622088 + +Test 012 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_control_c48 +Checking test 013 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + +The total amount of wall time = 436.185515 +The maximum resident set size (KB) = 2632260 + +Test 013 cpld_control_c48 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_warmstart_c48 +Checking test 014 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +The total amount of wall time = 126.589749 +The maximum resident set size (KB) = 2649544 + +Test 014 cpld_warmstart_c48 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/cpld_warmstart_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/cpld_restart_c48 +Checking test 015 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/20210323.120000.coupler.res .........OK + Comparing RESTART/20210323.120000.fv_core.res.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.120000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.120000.sfc_data.tile6.nc .........OK + Comparing RESTART/20210323.120000.MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK + +The total amount of wall time = 78.212273 +The maximum resident set size (KB) = 2067924 + +Test 015 cpld_restart_c48 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid +Checking test 016 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + +The total amount of wall time = 130.529446 +The maximum resident set size (KB) = 512936 + +Test 016 control_CubedSphereGrid PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_latlon +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_latlon +Checking test 017 control_latlon results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 134.230496 +The maximum resident set size (KB) = 516132 + +Test 017 control_latlon PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel +Checking test 018 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 137.025969 +The maximum resident set size (KB) = 519260 + +Test 018 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c48 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c48 +Checking test 019 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 326.990542 +The maximum resident set size (KB) = 677220 + +Test 019 control_c48 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c192 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c192 +Checking test 020 control_c192 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 532.978219 +The maximum resident set size (KB) = 615940 + +Test 020 control_c192 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384 +Checking test 021 control_c384 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 580.567241 +The maximum resident set size (KB) = 909716 + +Test 021 control_c384 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_c384gdas +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_c384gdas +Checking test 022 control_c384gdas results .... + Comparing sfcf000.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf006.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 513.394311 +The maximum resident set size (KB) = 1042680 + +Test 022 control_c384gdas PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy +Checking test 023 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 90.938998 +The maximum resident set size (KB) = 520788 + +Test 023 control_stochy PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_restart +Checking test 024 control_stochy_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 48.848325 +The maximum resident set size (KB) = 291324 + +Test 024 control_stochy_restart PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp +Checking test 025 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 84.908402 +The maximum resident set size (KB) = 519324 + +Test 025 control_lndp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr4 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr4 +Checking test 026 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 138.075287 +The maximum resident set size (KB) = 514440 + +Test 026 control_iovr4 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_iovr5 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_iovr5 +Checking test 027 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 136.297314 +The maximum resident set size (KB) = 520644 + +Test 027 control_iovr5 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8 +Checking test 028 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 188.423322 +The maximum resident set size (KB) = 1486656 + +Test 028 control_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_lndp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_lndp +Checking test 029 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +The total amount of wall time = 331.484570 +The maximum resident set size (KB) = 1484272 + +Test 029 control_p8_lndp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_restart_p8 +Checking test 030 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 101.385604 +The maximum resident set size (KB) = 657240 + +Test 030 control_restart_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_decomp_p8 +Checking test 031 control_decomp_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 189.461883 +The maximum resident set size (KB) = 1481952 + +Test 031 control_decomp_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_2threads_p8 +Checking test 032 control_2threads_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 166.692938 +The maximum resident set size (KB) = 1568508 + +Test 032 control_2threads_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_rrtmgp +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_rrtmgp +Checking test 033 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 239.195356 +The maximum resident set size (KB) = 1548980 + +Test 033 control_p8_rrtmgp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/merra2_thompson +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/merra2_thompson +Checking test 034 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 213.468377 +The maximum resident set size (KB) = 1496516 + +Test 034 merra2_thompson PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_control +Checking test 035 regional_control results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 292.994955 +The maximum resident set size (KB) = 655688 + +Test 035 regional_control PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_restart +Checking test 036 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 159.675499 +The maximum resident set size (KB) = 652420 + +Test 036 regional_restart PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_decomp +Checking test 037 regional_decomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 309.419803 +The maximum resident set size (KB) = 654992 + +Test 037 regional_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2threads +Checking test 038 regional_2threads results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 187.153408 +The maximum resident set size (KB) = 699912 + +Test 038 regional_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_noquilt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_noquilt +Checking test 039 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +The total amount of wall time = 318.328456 +The maximum resident set size (KB) = 644840 + +Test 039 regional_noquilt PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_netcdf_parallel +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_netcdf_parallel +Checking test 040 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + +The total amount of wall time = 289.296839 +The maximum resident set size (KB) = 651988 + +Test 040 regional_netcdf_parallel PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_2dwrtdecomp +Checking test 041 regional_2dwrtdecomp results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 294.026329 +The maximum resident set size (KB) = 656212 + +Test 041 regional_2dwrtdecomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/fv3_regional_wofs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_wofs +Checking test 042 regional_wofs results .... + Comparing dynf000.nc .........OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +The total amount of wall time = 365.235760 +The maximum resident set size (KB) = 342208 + +Test 042 regional_wofs PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control +Checking test 043 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 420.484575 +The maximum resident set size (KB) = 896368 + +Test 043 rap_control PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb +Checking test 044 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 288.959342 +The maximum resident set size (KB) = 986960 + +Test 044 regional_spp_sppt_shum_skeb PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_decomp +Checking test 045 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 435.383610 +The maximum resident set size (KB) = 892212 + +Test 045 rap_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads +Checking test 046 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 395.051439 +The maximum resident set size (KB) = 965452 + +Test 046 rap_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart +Checking test 047 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 214.437983 +The maximum resident set size (KB) = 645516 + +Test 047 rap_restart PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff +Checking test 048 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 419.217717 +The maximum resident set size (KB) = 892588 + +Test 048 rap_sfcdiff PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_decomp +Checking test 049 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 435.007269 +The maximum resident set size (KB) = 892908 + +Test 049 rap_sfcdiff_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 311.096038 +The maximum resident set size (KB) = 642616 + +Test 050 rap_sfcdiff_restart PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control +Checking test 051 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 404.180407 +The maximum resident set size (KB) = 893420 + +Test 051 hrrr_control PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp +Checking test 052 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 418.260633 +The maximum resident set size (KB) = 887852 + +Test 052 hrrr_control_decomp PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads +Checking test 053 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 372.350461 +The maximum resident set size (KB) = 959248 + +Test 053 hrrr_control_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart +Checking test 054 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 299.641003 +The maximum resident set size (KB) = 642844 + +Test 054 hrrr_control_restart PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta +Checking test 055 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 411.737464 +The maximum resident set size (KB) = 890292 + +Test 055 rrfs_v1beta PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl +Checking test 056 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 475.758958 +The maximum resident set size (KB) = 576576 + +Test 056 rrfs_v1nssl PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1nssl_nohailnoccn +Checking test 057 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + +The total amount of wall time = 464.796584 +The maximum resident set size (KB) = 567084 + +Test 057 rrfs_v1nssl_nohailnoccn PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm +Checking test 058 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 117.457498 +The maximum resident set size (KB) = 759316 + +Test 058 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_smoke_conus13km_hrrr_warm +Checking test 059 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 129.403030 +The maximum resident set size (KB) = 777960 + +Test 059 rrfs_smoke_conus13km_hrrr_warm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm +Checking test 060 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 116.553249 +The maximum resident set size (KB) = 767732 + +Test 060 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_2threads +Checking test 061 rrfs_conus13km_hrrr_warm_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 85.876096 +The maximum resident set size (KB) = 766924 + +Test 061 rrfs_conus13km_hrrr_warm_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_2threads +Checking test 062 rrfs_conus13km_radar_tten_warm_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +The total amount of wall time = 87.324215 +The maximum resident set size (KB) = 762824 + +Test 062 rrfs_conus13km_radar_tten_warm_2threads PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg +Checking test 063 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 350.054557 +The maximum resident set size (KB) = 587480 + +Test 063 control_csawmg PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt +Checking test 064 control_csawmgt results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 349.327890 +The maximum resident set size (KB) = 586884 + +Test 064 control_csawmgt PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras +Checking test 065 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +The total amount of wall time = 181.673363 +The maximum resident set size (KB) = 551104 + +Test 065 control_ras PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam +Checking test 066 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + +The total amount of wall time = 117.958047 +The maximum resident set size (KB) = 273516 + +Test 066 control_wam PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_hrrr_warm_debug +Checking test 067 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 784.787489 +The maximum resident set size (KB) = 796852 + +Test 067 rrfs_conus13km_hrrr_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_conus13km_radar_tten_warm_debug +Checking test 068 rrfs_conus13km_radar_tten_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 783.028696 +The maximum resident set size (KB) = 798032 + +Test 068 rrfs_conus13km_radar_tten_warm_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_CubedSphereGrid_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_CubedSphereGrid_debug +Checking test 069 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK + +The total amount of wall time = 170.970093 +The maximum resident set size (KB) = 680644 + +Test 069 control_CubedSphereGrid_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wrtGauss_netcdf_parallel_debug +Checking test 070 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 161.375564 +The maximum resident set size (KB) = 679464 + +Test 070 control_wrtGauss_netcdf_parallel_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_stochy_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_stochy_debug +Checking test 071 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 182.391657 +The maximum resident set size (KB) = 686120 + +Test 071 control_stochy_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_lndp_debug +Checking test 072 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 164.373352 +The maximum resident set size (KB) = 684384 + +Test 072 control_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmg_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmg_debug +Checking test 073 control_csawmg_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 262.027226 +The maximum resident set size (KB) = 724676 + +Test 073 control_csawmg_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_csawmgt_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_csawmgt_debug +Checking test 074 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 255.726316 +The maximum resident set size (KB) = 723156 + +Test 074 control_csawmgt_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_ras_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_ras_debug +Checking test 075 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 167.090916 +The maximum resident set size (KB) = 690700 + +Test 075 control_ras_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_diag_debug +Checking test 076 control_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 169.774202 +The maximum resident set size (KB) = 739948 + +Test 076 control_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_debug_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_debug_p8 +Checking test 077 control_debug_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 191.206275 +The maximum resident set size (KB) = 1510292 + +Test 077 control_debug_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_debug +Checking test 078 regional_debug results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + +The total amount of wall time = 1053.375686 +The maximum resident set size (KB) = 678144 + +Test 078 regional_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug +Checking test 079 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 302.571799 +The maximum resident set size (KB) = 1057536 + +Test 079 rap_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug +Checking test 080 hrrr_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 294.921620 +The maximum resident set size (KB) = 1051880 + +Test 080 hrrr_control_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_drag_suite_debug +Checking test 081 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 301.486376 +The maximum resident set size (KB) = 1056444 + +Test 081 rap_unified_drag_suite_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_diag_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_diag_debug +Checking test 082 rap_diag_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 314.629848 +The maximum resident set size (KB) = 1141376 + +Test 082 rap_diag_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_cires_ugwp_debug +Checking test 083 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 309.613853 +The maximum resident set size (KB) = 1055852 + +Test 083 rap_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_unified_ugwp_debug +Checking test 084 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 308.185712 +The maximum resident set size (KB) = 1060732 + +Test 084 rap_unified_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_lndp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_lndp_debug +Checking test 085 rap_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 304.715454 +The maximum resident set size (KB) = 1057248 + +Test 085 rap_lndp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_flake_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_flake_debug +Checking test 086 rap_flake_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 303.008234 +The maximum resident set size (KB) = 1057344 + +Test 086 rap_flake_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_progcld_thompson_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_progcld_thompson_debug +Checking test 087 rap_progcld_thompson_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 303.368129 +The maximum resident set size (KB) = 1056288 + +Test 087 rap_progcld_thompson_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_debug +Checking test 088 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 297.087220 +The maximum resident set size (KB) = 1056292 + +Test 088 rap_noah_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_sfcdiff_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_sfcdiff_debug +Checking test 089 rap_sfcdiff_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 301.636650 +The maximum resident set size (KB) = 1059312 + +Test 089 rap_sfcdiff_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 494.269892 +The maximum resident set size (KB) = 1054496 + +Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rrfs_v1beta_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rrfs_v1beta_debug +Checking test 091 rrfs_v1beta_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 298.933987 +The maximum resident set size (KB) = 1055020 + +Test 091 rrfs_v1beta_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_wam_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_wam_debug +Checking test 092 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK + +The total amount of wall time = 296.890737 +The maximum resident set size (KB) = 305324 + +Test 092 control_wam_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +The total amount of wall time = 269.696854 +The maximum resident set size (KB) = 879024 + +Test 093 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn32_phy32 +Checking test 094 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 344.474135 +The maximum resident set size (KB) = 778208 + +Test 094 rap_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_dyn32_phy32 +Checking test 095 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 184.630580 +The maximum resident set size (KB) = 773920 + +Test 095 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_2threads_dyn32_phy32 +Checking test 096 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 325.616808 +The maximum resident set size (KB) = 830220 + +Test 096 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_2threads_dyn32_phy32 +Checking test 097 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 175.138740 +The maximum resident set size (KB) = 831380 + +Test 097 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_decomp_dyn32_phy32 +Checking test 098 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 191.429567 +The maximum resident set size (KB) = 771384 + +Test 098 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_restart_dyn32_phy32 +Checking test 099 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 258.024909 +The maximum resident set size (KB) = 612140 + +Test 099 rap_restart_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_restart_dyn32_phy32 +Checking test 100 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 98.404595 +The maximum resident set size (KB) = 608280 + +Test 100 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32 +Checking test 101 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF09 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF09 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/20210322.180000.coupler.res .........OK + Comparing RESTART/20210322.180000.fv_core.res.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 233.106715 +The maximum resident set size (KB) = 798256 + +Test 101 rap_control_dyn64_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_debug_dyn32_phy32 +Checking test 102 rap_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 295.229051 +The maximum resident set size (KB) = 941620 + +Test 102 rap_control_debug_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hrrr_control_debug_dyn32_phy32 +Checking test 103 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 291.748935 +The maximum resident set size (KB) = 940536 + +Test 103 hrrr_control_debug_dyn32_phy32 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/rap_control_debug_dyn64_phy32 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/rap_control_dyn64_phy32_debug +Checking test 104 rap_control_dyn64_phy32_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +The total amount of wall time = 299.912682 +The maximum resident set size (KB) = 961236 + +Test 104 rap_control_dyn64_phy32_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm +Checking test 105 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + +The total amount of wall time = 268.830181 +The maximum resident set size (KB) = 824360 + +Test 105 hafs_regional_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_thompson_gfdlsf +Checking test 106 hafs_regional_atm_thompson_gfdlsf results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +The total amount of wall time = 356.697929 +The maximum resident set size (KB) = 1181624 + +Test 106 hafs_regional_atm_thompson_gfdlsf PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn +Checking test 107 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 402.005182 +The maximum resident set size (KB) = 853572 + +Test 107 hafs_regional_atm_ocn PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_wav +Checking test 108 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 721.826160 +The maximum resident set size (KB) = 884744 + +Test 108 hafs_regional_atm_wav PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_atm_ocn_wav +Checking test 109 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + Comparing archs.2019_241_06.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + Comparing 20190829.060000.restart.ww3 .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 902.791038 +The maximum resident set size (KB) = 910456 + +Test 109 hafs_regional_atm_ocn_wav PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_1nest_atm +Checking test 110 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 + +The total amount of wall time = 337.094844 +The maximum resident set size (KB) = 392152 + +Test 110 hafs_regional_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_telescopic_2nests_atm +Checking test 111 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + +The total amount of wall time = 410.146103 +The maximum resident set size (KB) = 414052 + +Test 111 hafs_regional_telescopic_2nests_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_1nest_atm +Checking test 112 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 + +The total amount of wall time = 169.356285 +The maximum resident set size (KB) = 267572 + +Test 112 hafs_global_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_multiple_4nests_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_multiple_4nests_atm +Checking test 113 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + +The total amount of wall time = 497.540022 +The maximum resident set size (KB) = 340628 + +Test 113 hafs_global_multiple_4nests_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_specified_moving_1nest_atm +Checking test 114 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + +The total amount of wall time = 222.842399 +The maximum resident set size (KB) = 486720 + +Test 114 hafs_regional_specified_moving_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm +Checking test 115 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 + +The total amount of wall time = 203.401433 +The maximum resident set size (KB) = 402684 + +Test 115 hafs_regional_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn +Checking test 116 hafs_regional_storm_following_1nest_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + +The total amount of wall time = 257.616822 +The maximum resident set size (KB) = 451860 + +Test 116 hafs_regional_storm_following_1nest_atm_ocn PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_global_storm_following_1nest_atm +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_global_storm_following_1nest_atm +Checking test 117 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 + +The total amount of wall time = 81.650776 +The maximum resident set size (KB) = 404536 + +Test 117 hafs_global_storm_following_1nest_atm PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 118 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + Comparing atmf001.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atm.nest02.f001.nc .........OK + Comparing sfc.nest02.f001.nc .........OK + +The total amount of wall time = 813.011787 +The maximum resident set size (KB) = 485600 + +Test 118 hafs_regional_storm_following_1nest_atm_ocn_debug PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 119 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing archv.2020_238_18.a .........OK + Comparing archs.2020_238_18.a .........OK + Comparing out_grd.ww3 .........OK + Comparing out_pnt.ww3 .........OK + +The total amount of wall time = 543.125107 +The maximum resident set size (KB) = 525876 + +Test 119 hafs_regional_storm_following_1nest_atm_ocn_wav PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/control_p8_atmlnd_sbs +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/control_p8_atmlnd_sbs +Checking test 120 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc .........OK + Comparing ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK + +The total amount of wall time = 239.702662 +The maximum resident set size (KB) = 1541948 + +Test 120 control_p8_atmlnd_sbs PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8 +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8 +Checking test 121 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 251.223645 +The maximum resident set size (KB) = 2824076 + +Test 121 atmaero_control_p8 PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad +Checking test 122 atmaero_control_p8_rad results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 284.422462 +The maximum resident set size (KB) = 2879940 + +Test 122 atmaero_control_p8_rad PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/atmaero_control_p8_rad_micro +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/atmaero_control_p8_rad_micro +Checking test 123 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +The total amount of wall time = 289.534213 +The maximum resident set size (KB) = 2892624 + +Test 123 atmaero_control_p8_rad_micro PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq +Checking test 124 regional_atmaq results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/20190801.180000.coupler.res .........OK + Comparing RESTART/20190801.180000.fv_core.res.nc .........OK + Comparing RESTART/20190801.180000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.180000.phy_data.nc .........OK + Comparing RESTART/20190801.180000.sfc_data.nc .........OK + +The total amount of wall time = 678.502724 +The maximum resident set size (KB) = 1409248 + +Test 124 regional_atmaq PASS + + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20230222/INTEL/regional_atmaq_debug +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_67949/regional_atmaq_debug +Checking test 125 regional_atmaq_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing RESTART/20190801.130000.coupler.res .........OK + Comparing RESTART/20190801.130000.fv_core.res.nc .........OK + Comparing RESTART/20190801.130000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20190801.130000.phy_data.nc .........OK + Comparing RESTART/20190801.130000.sfc_data.nc .........OK + +The total amount of wall time = 1435.810235 +The maximum resident set size (KB) = 1439296 + +Test 125 regional_atmaq_debug PASS + + +REGRESSION TEST WAS SUCCESSFUL +Fri Feb 24 16:14:54 UTC 2023 +Elapsed time: 01h:21m:11s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.log b/tests/RegressionTests_wcoss2.log deleted file mode 100644 index a3a1ee17a9..0000000000 --- a/tests/RegressionTests_wcoss2.log +++ /dev/null @@ -1,2720 +0,0 @@ -Thu Sep 16 13:44:17 UTC 2021 -Start Regression test - -Compile 001 elapsed time 594 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 454 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 510 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 155 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 380 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 297 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 269 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 009 elapsed time 150 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 391 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_control -Checking test 001 cpld_control results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - -The total amount of wall time = 106.287958 - -Test 001 cpld_control PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_restart -Checking test 002 cpld_restart results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - -The total amount of wall time = 59.490709 - -Test 002 cpld_restart PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_2threads -Checking test 003 cpld_2threads results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - -The total amount of wall time = 141.542539 - -Test 003 cpld_2threads PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_ca -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_ca -Checking test 004 cpld_ca results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - -The total amount of wall time = 105.016934 - -Test 004 cpld_ca PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control_c192 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_control_c192 -Checking test 005 cpld_control_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - -The total amount of wall time = 408.210446 - -Test 005 cpld_control_c192 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control_c192 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_restart_c192 -Checking test 006 cpld_restart_c192 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-05-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - -The total amount of wall time = 302.923892 - -Test 006 cpld_restart_c192 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control_c384 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_control_c384 -Checking test 007 cpld_control_c384 results .... - Comparing sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.tile6.nc .........OK - Comparing atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - -The total amount of wall time = 747.997331 - -Test 007 cpld_control_c384 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_control_c384 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_restart_c384 -Checking test 008 cpld_restart_c384 results .... - Comparing sfcf012.tile1.nc .........OK - Comparing sfcf012.tile2.nc .........OK - Comparing sfcf012.tile3.nc .........OK - Comparing sfcf012.tile4.nc .........OK - Comparing sfcf012.tile5.nc .........OK - Comparing sfcf012.tile6.nc .........OK - Comparing atmf012.tile1.nc .........OK - Comparing atmf012.tile2.nc .........OK - Comparing atmf012.tile3.nc .........OK - Comparing atmf012.tile4.nc .........OK - Comparing atmf012.tile5.nc .........OK - Comparing atmf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2016-10-03-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - -The total amount of wall time = 414.233951 - -Test 008 cpld_restart_c384 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_bmark_v16 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_bmark_v16 -Checking test 009 cpld_bmark_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 673.248410 - -Test 009 cpld_bmark_v16 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_bmark_v16 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_restart_bmark_v16 -Checking test 010 cpld_restart_bmark_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 391.278692 - -Test 010 cpld_restart_bmark_v16 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_bmark_v16_nsst -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_bmark_v16_nsst -Checking test 011 cpld_bmark_v16_nsst results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -The total amount of wall time = 677.389789 - -Test 011 cpld_bmark_v16_nsst PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/cpld_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/cpld_debug -Checking test 012 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - -The total amount of wall time = 269.933924 - -Test 012 cpld_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 138.663898 - -Test 013 control PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 139.709830 - -Test 014 control_decomp PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_2threads -Checking test 015 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 182.086054 - -Test 015 control_2threads PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_restart -Checking test 016 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 65.713432 - -Test 016 control_restart PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_CubedSphereGrid -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -The total amount of wall time = 121.597256 - -Test 017 control_CubedSphereGrid PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_c48 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_c48 -Checking test 018 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 308.633831 - -Test 018 control_c48 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_c192 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_c192 -Checking test 019 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 492.527664 - -Test 019 control_c192 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_c384 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_c384 -Checking test 020 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 961.538529 - -Test 020 control_c384 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_c384gdas -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_c384gdas -Checking test 021 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 852.957125 - -Test 021 control_c384gdas PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_stochy -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_stochy -Checking test 022 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 90.630312 - -Test 022 control_stochy PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_stochy -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_stochy_restart -Checking test 023 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 49.465462 - -Test 023 control_stochy_restart PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ca -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ca -Checking test 024 control_ca results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 88.315144 - -Test 024 control_ca PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_lndp -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_lndp -Checking test 025 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 91.136914 - -Test 025 control_lndp PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_lheatstrg -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_lheatstrg -Checking test 026 control_lheatstrg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 135.327446 - -Test 026 control_lheatstrg PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_lseaspray -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_lseaspray -Checking test 027 control_lseaspray results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 142.559712 - -Test 027 control_lseaspray PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_merra2 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_merra2 -Checking test 028 control_merra2 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 213.356909 - -Test 028 control_merra2 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_control -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_control -Checking test 029 regional_control results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 284.573894 - -Test 029 regional_control PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_restart -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_restart -Checking test 030 regional_restart results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - -The total amount of wall time = 156.751380 - -Test 030 regional_restart PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_quilt -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_quilt -Checking test 031 regional_quilt results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -The total amount of wall time = 284.296517 - -Test 031 regional_quilt PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_quilt -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_quilt_2threads -Checking test 032 regional_quilt_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -The total amount of wall time = 250.515118 - -Test 032 regional_quilt_2threads PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_quilt_hafs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_quilt_hafs -Checking test 033 regional_quilt_hafs results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK - -The total amount of wall time = 281.928840 - -Test 033 regional_quilt_hafs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_quilt_RRTMGP -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_quilt_RRTMGP -Checking test 034 regional_quilt_RRTMGP results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -The total amount of wall time = 491.225206 - -Test 034 regional_quilt_RRTMGP PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_gsd -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_gsd -Checking test 035 fv3_gsd results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing sfcf027.tile1.nc .........OK - Comparing sfcf027.tile2.nc .........OK - Comparing sfcf027.tile3.nc .........OK - Comparing sfcf027.tile4.nc .........OK - Comparing sfcf027.tile5.nc .........OK - Comparing sfcf027.tile6.nc .........OK - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing atmf027.tile1.nc .........OK - Comparing atmf027.tile2.nc .........OK - Comparing atmf027.tile3.nc .........OK - Comparing atmf027.tile4.nc .........OK - Comparing atmf027.tile5.nc .........OK - Comparing atmf027.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 222.782688 - -Test 035 fv3_gsd PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_rrfs_v1alpha -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_rrfs_v1alpha -Checking test 036 fv3_rrfs_v1alpha results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 90.470661 - -Test 036 fv3_rrfs_v1alpha PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_rap -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_rap -Checking test 037 fv3_rap results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 90.368334 - -Test 037 fv3_rap PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_hrrr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_hrrr -Checking test 038 fv3_hrrr results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 89.873907 - -Test 038 fv3_hrrr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_rrfs_v1beta -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_rrfs_v1beta -Checking test 039 fv3_rrfs_v1beta results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 90.603945 - -Test 039 fv3_rrfs_v1beta PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_rrtmgp -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_rrtmgp -Checking test 040 control_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 258.836042 - -Test 040 control_rrtmgp PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_csawmg -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_csawmg -Checking test 041 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 318.403146 - -Test 041 control_csawmg PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_csawmgt -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_csawmgt -Checking test 042 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 379.602825 - -Test 042 control_csawmgt PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_flake -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_flake -Checking test 043 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 242.396463 - -Test 043 control_flake PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ugwpv1 -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ugwpv1 -Checking test 044 control_ugwpv1 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 190.143088 - -Test 044 control_ugwpv1 PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ras -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ras -Checking test 045 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 172.097962 - -Test 045 control_ras PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_thompson -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_thompson -Checking test 046 control_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 220.680026 - -Test 046 control_thompson PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_thompson_no_aero -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_thompson_no_aero -Checking test 047 control_thompson_no_aero results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 210.875648 - -Test 047 control_thompson_no_aero PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_noahmp -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_noahmp -Checking test 048 control_noahmp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 164.479519 - -Test 048 control_noahmp PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/HAFS_v0_HWRF_thompson -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_HAFS_v0_hwrf_thompson -Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - -The total amount of wall time = 175.984245 - -Test 049 fv3_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK - -The total amount of wall time = 274.192497 - -Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_debug -Checking test 051 control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 151.032554 - -Test 051 control_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_2threads_debug -Checking test 052 control_2threads_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 231.138126 - -Test 052 control_2threads_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_CubedSphereGrid_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_CubedSphereGrid_debug -Checking test 053 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 159.159729 - -Test 053 control_CubedSphereGrid_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_wrtGauss_netcdf_parallel_debug -Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 154.815164 - -Test 054 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_stochy_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_stochy_debug -Checking test 055 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 173.239484 - -Test 055 control_stochy_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ca_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ca_debug -Checking test 056 control_ca_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 152.493020 - -Test 056 control_ca_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_lndp_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_lndp_debug -Checking test 057 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 154.324074 - -Test 057 control_lndp_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_lheatstrg_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_lheatstrg_debug -Checking test 058 control_lheatstrg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 151.195476 - -Test 058 control_lheatstrg_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_merra2_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_merra2_debug -Checking test 059 control_merra2_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 237.208303 - -Test 059 control_merra2_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_rrtmgp_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_rrtmgp_debug -Checking test 060 control_rrtmgp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 172.427952 - -Test 060 control_rrtmgp_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_csawmg_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_csawmg_debug -Checking test 061 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 274.296682 - -Test 061 control_csawmg_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_csawmgt_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_csawmgt_debug -Checking test 062 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 312.573524 - -Test 062 control_csawmgt_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ugwpv1_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ugwpv1_debug -Checking test 063 control_ugwpv1_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 164.258398 - -Test 063 control_ugwpv1_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_ras_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_ras_debug -Checking test 064 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 158.529081 - -Test 064 control_ras_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_noahmp_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_noahmp_debug -Checking test 065 control_noahmp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 150.487010 - -Test 065 control_noahmp_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_diag_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_diag_debug -Checking test 066 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 159.102337 - -Test 066 control_diag_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_thompson_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_thompson_debug -Checking test 067 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 182.887973 - -Test 067 control_thompson_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_thompson_no_aero_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_thompson_no_aero_debug -Checking test 068 control_thompson_no_aero_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 174.080482 - -Test 068 control_thompson_no_aero_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/control_thompson_debug_extdiag -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/control_thompson_extdiag_debug -Checking test 069 control_thompson_extdiag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 186.957815 - -Test 069 control_thompson_extdiag_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_control_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_control_debug -Checking test 070 regional_control_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 259.642593 - -Test 070 regional_control_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_regional_quilt_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/regional_quilt_debug -Checking test 071 regional_quilt_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 262.177925 - -Test 071 regional_quilt_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_gsd_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_gsd_debug -Checking test 072 fv3_gsd_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 262.555140 - -Test 072 fv3_gsd_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_gsd_diag_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_gsd_diag_debug -Checking test 073 fv3_gsd_diag_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 383.748943 - -Test 073 fv3_gsd_diag_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_rrfs_v1beta_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_rrfs_v1beta_debug -Checking test 074 fv3_rrfs_v1beta_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 205.222672 - -Test 074 fv3_rrfs_v1beta_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/fv3_rrfs_v1alpha_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_rrfs_v1alpha_debug -Checking test 075 fv3_rrfs_v1alpha_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 205.018778 - -Test 075 fv3_rrfs_v1alpha_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/HAFS_v0_HWRF_thompson_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 076 fv3_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - -The total amount of wall time = 211.743456 - -Test 076 fv3_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK - -The total amount of wall time = 365.421559 - -Test 077 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_control_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_control_cfsr -Checking test 078 datm_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 - -The total amount of wall time = 98.520968 - -Test 078 datm_control_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_control_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_restart_cfsr -Checking test 079 datm_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 - -The total amount of wall time = 56.424137 - -Test 079 datm_restart_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_control_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_control_gefs -Checking test 080 datm_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 93.144824 - -Test 080 datm_control_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_control_iau_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_control_iau_gefs -Checking test 081 datm_control_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 99.241798 - -Test 081 datm_control_iau_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_bulk_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_bulk_cfsr -Checking test 082 datm_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 - -The total amount of wall time = 96.714640 - -Test 082 datm_bulk_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_bulk_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_bulk_gefs -Checking test 083 datm_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 96.319324 - -Test 083 datm_bulk_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_mx025_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_mx025_cfsr -Checking test 084 datm_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 370.351760 - -Test 084 datm_mx025_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_mx025_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_mx025_gefs -Checking test 085 datm_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 367.167677 - -Test 085 datm_mx025_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_debug_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_debug_cfsr -Checking test 086 datm_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 - -The total amount of wall time = 197.721105 - -Test 086 datm_debug_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_control_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_control_cfsr -Checking test 087 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 - -The total amount of wall time = 143.579902 - -Test 087 datm_cdeps_control_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_control_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_restart_cfsr -Checking test 088 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 - -The total amount of wall time = 85.233703 - -Test 088 datm_cdeps_restart_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_control_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_control_gefs -Checking test 089 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 137.178266 - -Test 089 datm_cdeps_control_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_bulk_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_bulk_cfsr -Checking test 090 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 - -The total amount of wall time = 142.731998 - -Test 090 datm_cdeps_bulk_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_bulk_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_bulk_gefs -Checking test 091 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 137.198483 - -Test 091 datm_cdeps_bulk_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_mx025_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_mx025_cfsr -Checking test 092 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 363.529777 - -Test 092 datm_cdeps_mx025_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_mx025_gefs -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_mx025_gefs -Checking test 093 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - -The total amount of wall time = 352.880584 - -Test 093 datm_cdeps_mx025_gefs PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_control_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_multiple_files_cfsr -Checking test 094 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - -The total amount of wall time = 141.947750 - -Test 094 datm_cdeps_multiple_files_cfsr PASS - - -baseline dir = /lfs/h1/emc/eib/noscrub/Dusan.Jovic/NEMSfv3gfs/develop-20210907/datm_cdeps_debug_cfsr -working dir = /lfs/h1/emc/ptmp/Dusan.Jovic/FV3_RT/rt_16368/datm_cdeps_debug_cfsr -Checking test 095 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 - -The total amount of wall time = 313.281554 - -Test 095 datm_cdeps_debug_cfsr PASS - - -REGRESSION TEST WAS SUCCESSFUL -Thu Sep 16 14:33:14 UTC 2021 -Elapsed time: 00h:48m:58s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log deleted file mode 100644 index d0d3ab4e7b..0000000000 --- a/tests/RegressionTests_wcoss_cray.log +++ /dev/null @@ -1,1963 +0,0 @@ -Mon May 16 14:33:05 UTC 2022 -Start Regression test - -Test 006 compile FAIL - -Compile 001 elapsed time 748 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 802 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 003 elapsed time 746 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 679 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 541 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 511 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 915 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control -Checking test 001 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 146.681261 -The maximum resident set size (KB) = 420256 - -Test 001 control PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_decomp -Checking test 002 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 149.481345 -The maximum resident set size (KB) = 420676 - -Test 002 control_decomp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_2dwrtdecomp -Checking test 003 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 138.493654 -The maximum resident set size (KB) = 420660 - -Test 003 control_2dwrtdecomp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_restart -Checking test 004 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 78.751904 -The maximum resident set size (KB) = 156864 - -Test 004 control_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_fhzero -Checking test 005 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 136.082222 -The maximum resident set size (KB) = 420272 - -Test 005 control_fhzero PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_CubedSphereGrid -Checking test 006 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -The total amount of wall time = 138.592309 -The maximum resident set size (KB) = 420380 - -Test 006 control_CubedSphereGrid PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_latlon -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_latlon -Checking test 007 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 142.950353 -The maximum resident set size (KB) = 420316 - -Test 007 control_latlon PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wrtGauss_netcdf_parallel -Checking test 008 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 144.553837 -The maximum resident set size (KB) = 420188 - -Test 008 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c48 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_c48 -Checking test 009 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 453.874702 -The maximum resident set size (KB) = 629292 - -Test 009 control_c48 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c192 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_c192 -Checking test 010 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 551.507553 -The maximum resident set size (KB) = 521272 - -Test 010 control_c192 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy -Checking test 011 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 97.134279 -The maximum resident set size (KB) = 426288 - -Test 011 control_stochy PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy_restart -Checking test 012 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 56.757127 -The maximum resident set size (KB) = 175364 - -Test 012 control_stochy_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_lndp -Checking test 013 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -The total amount of wall time = 88.803005 -The maximum resident set size (KB) = 424652 - -Test 013 control_lndp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr4 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_iovr4 -Checking test 014 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 147.707361 -The maximum resident set size (KB) = 420296 - -Test 014 control_iovr4 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr5 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_iovr5 -Checking test 015 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 146.858200 -The maximum resident set size (KB) = 420272 - -Test 015 control_iovr5 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8 -Checking test 016 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 191.481955 -The maximum resident set size (KB) = 812572 - -Test 016 control_p8 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_lndp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8_lndp -Checking test 017 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -The total amount of wall time = 359.396468 -The maximum resident set size (KB) = 810732 - -Test 017 control_p8_lndp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_restart_p8 -Checking test 018 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 107.213394 -The maximum resident set size (KB) = 546156 - -Test 018 control_restart_p8 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_decomp_p8 -Checking test 019 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 199.532403 -The maximum resident set size (KB) = 802300 - -Test 019 control_decomp_p8 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_rrtmgp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_p8_rrtmgp -Checking test 020 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 236.859703 -The maximum resident set size (KB) = 923400 - -Test 020 control_p8_rrtmgp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_control -Checking test 021 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -The total amount of wall time = 363.441941 -The maximum resident set size (KB) = 533956 - -Test 021 regional_control PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_restart -Checking test 022 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK - -The total amount of wall time = 222.316651 -The maximum resident set size (KB) = 530520 - -Test 022 regional_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_control_2dwrtdecomp -Checking test 023 regional_control_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - -The total amount of wall time = 367.188830 -The maximum resident set size (KB) = 533984 - -Test 023 regional_control_2dwrtdecomp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_noquilt -Checking test 024 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - -The total amount of wall time = 397.337825 -The maximum resident set size (KB) = 536628 - -Test 024 regional_noquilt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_netcdf_parallel -Checking test 025 regional_netcdf_parallel results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - -The total amount of wall time = 362.780547 -The maximum resident set size (KB) = 527596 - -Test 025 regional_netcdf_parallel PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_3km -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_3km -Checking test 026 regional_3km results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -The total amount of wall time = 299.488502 -The maximum resident set size (KB) = 559964 - -Test 026 regional_3km PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_control -Checking test 027 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 457.734855 -The maximum resident set size (KB) = 787604 - -Test 027 rap_control PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_rrtmgp -Checking test 028 rap_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 492.554824 -The maximum resident set size (KB) = 910408 - -Test 028 rap_rrtmgp PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_spp_sppt_shum_skeb -Checking test 029 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -The total amount of wall time = 339.374911 -The maximum resident set size (KB) = 861180 - -Test 029 regional_spp_sppt_shum_skeb PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_restart -Checking test 030 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 239.345341 -The maximum resident set size (KB) = 532276 - -Test 030 rap_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff -Checking test 031 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 457.192357 -The maximum resident set size (KB) = 787428 - -Test 031 rap_sfcdiff PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff_restart -Checking test 032 rap_sfcdiff_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 238.607031 -The maximum resident set size (KB) = 532792 - -Test 032 rap_sfcdiff_restart PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hrrr_control -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hrrr_control -Checking test 033 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 436.063652 -The maximum resident set size (KB) = 784612 - -Test 033 hrrr_control PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1beta -Checking test 034 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -The total amount of wall time = 444.055763 -The maximum resident set size (KB) = 784380 - -Test 034 rrfs_v1beta PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1nssl -Checking test 035 rrfs_v1nssl results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 500.237605 -The maximum resident set size (KB) = 474132 - -Test 035 rrfs_v1nssl PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1nssl_nohailnoccn -Checking test 036 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 486.460714 -The maximum resident set size (KB) = 469356 - -Test 036 rrfs_v1nssl_nohailnoccn PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_conus13km_hrrr_warm -Checking test 037 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 264.794685 -The maximum resident set size (KB) = 600572 - -Test 037 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_conus13km_radar_tten_warm -Checking test 038 rrfs_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 267.502458 -The maximum resident set size (KB) = 602532 - -Test 038 rrfs_conus13km_radar_tten_warm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_smoke_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_smoke_conus13km_hrrr_warm -Checking test 039 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -The total amount of wall time = 273.050335 -The maximum resident set size (KB) = 614860 - -Test 039 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmg -Checking test 040 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 360.656291 -The maximum resident set size (KB) = 488084 - -Test 040 control_csawmg PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmgt -Checking test 041 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 357.941135 -The maximum resident set size (KB) = 488144 - -Test 041 control_csawmgt PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_flake -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_flake -Checking test 042 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 233.356116 -The maximum resident set size (KB) = 492964 - -Test 042 control_flake PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_ras -Checking test 043 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -The total amount of wall time = 192.996704 -The maximum resident set size (KB) = 455688 - -Test 043 control_ras PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wam -Checking test 044 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -The total amount of wall time = 113.497439 -The maximum resident set size (KB) = 169236 - -Test 044 control_wam PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_debug -Checking test 045 control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 147.363535 -The maximum resident set size (KB) = 583780 - -Test 045 control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_CubedSphereGrid_debug -Checking test 046 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -The total amount of wall time = 153.937654 -The maximum resident set size (KB) = 584508 - -Test 046 control_CubedSphereGrid_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wrtGauss_netcdf_parallel_debug -Checking test 047 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 145.709885 -The maximum resident set size (KB) = 583792 - -Test 047 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_stochy_debug -Checking test 048 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 165.133661 -The maximum resident set size (KB) = 589172 - -Test 048 control_stochy_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_lndp_debug -Checking test 049 control_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 149.551801 -The maximum resident set size (KB) = 589296 - -Test 049 control_lndp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmg_debug -Checking test 050 control_csawmg_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 237.993285 -The maximum resident set size (KB) = 628060 - -Test 050 control_csawmg_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_csawmgt_debug -Checking test 051 control_csawmgt_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 230.567835 -The maximum resident set size (KB) = 628012 - -Test 051 control_csawmgt_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_ras_debug -Checking test 052 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 150.073789 -The maximum resident set size (KB) = 598112 - -Test 052 control_ras_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_diag_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_diag_debug -Checking test 053 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 155.818787 -The maximum resident set size (KB) = 643188 - -Test 053 control_diag_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug_p8 -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_debug_p8 -Checking test 054 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 164.190438 -The maximum resident set size (KB) = 972592 - -Test 054 control_debug_p8 PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_debug -Checking test 055 control_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 175.753784 -The maximum resident set size (KB) = 943836 - -Test 055 control_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_no_aero_debug -Checking test 056 control_thompson_no_aero_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 165.077399 -The maximum resident set size (KB) = 941476 - -Test 056 control_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_extdiag_debug -Checking test 057 control_thompson_extdiag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 182.424154 -The maximum resident set size (KB) = 973916 - -Test 057 control_thompson_extdiag_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_thompson_progcld_thompson_debug -Checking test 058 control_thompson_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 176.567668 -The maximum resident set size (KB) = 946212 - -Test 058 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/regional_debug -Checking test 059 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - -The total amount of wall time = 250.629397 -The maximum resident set size (KB) = 554212 - -Test 059 regional_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_noah_debug -Checking test 068 rap_noah_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 267.860660 -The maximum resident set size (KB) = 949628 - -Test 068 rap_noah_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_rrtmgp_debug -Checking test 069 rap_rrtmgp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 450.363214 -The maximum resident set size (KB) = 1073028 - -Test 069 rap_rrtmgp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_sfcdiff_debug -Checking test 070 rap_sfcdiff_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 272.453398 -The maximum resident set size (KB) = 950556 - -Test 070 rap_sfcdiff_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 071 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 441.073283 -The maximum resident set size (KB) = 952716 - -Test 071 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/rrfs_v1beta_debug -Checking test 072 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 268.369492 -The maximum resident set size (KB) = 951204 - -Test 072 rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/control_wam_debug -Checking test 073 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -The total amount of wall time = 273.936041 -The maximum resident set size (KB) = 199164 - -Test 073 control_wam_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm -Checking test 074 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK - -The total amount of wall time = 359.375542 -The maximum resident set size (KB) = 647100 - -Test 074 hafs_regional_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_thompson_gfdlsf -Checking test 075 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -The total amount of wall time = 405.088402 -The maximum resident set size (KB) = 1003100 - -Test 075 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_ocn -Checking test 076 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -The total amount of wall time = 535.227469 -The maximum resident set size (KB) = 667476 - -Test 076 hafs_regional_atm_ocn PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_wav -Checking test 077 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -The total amount of wall time = 961.469426 -The maximum resident set size (KB) = 664264 - -Test 077 hafs_regional_atm_wav PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_atm_ocn_wav -Checking test 078 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -The total amount of wall time = 1025.748935 -The maximum resident set size (KB) = 680720 - -Test 078 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_1nest_atm -Checking test 079 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 - -The total amount of wall time = 383.125094 -The maximum resident set size (KB) = 247412 - -Test 079 hafs_regional_1nest_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_telescopic_2nests_atm -Checking test 080 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc .........OK - -The total amount of wall time = 402.680659 -The maximum resident set size (KB) = 246492 - -Test 080 hafs_regional_telescopic_2nests_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_global_1nest_atm -Checking test 081 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 - -The total amount of wall time = 173.724067 -The maximum resident set size (KB) = 147972 - -Test 081 hafs_global_1nest_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_specified_moving_1nest_atm -Checking test 082 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - -The total amount of wall time = 241.177106 -The maximum resident set size (KB) = 251796 - -Test 082 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm -Checking test 083 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 - -The total amount of wall time = 230.008788 -The maximum resident set size (KB) = 252608 - -Test 083 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm_ocn -Checking test 084 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -The total amount of wall time = 271.099264 -The maximum resident set size (KB) = 278416 - -Test 084 hafs_regional_storm_following_1nest_atm_ocn PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 085 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -The total amount of wall time = 562.354410 -The maximum resident set size (KB) = 295024 - -Test 085 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_40734/hafs_global_storm_following_1nest_atm -Checking test 086 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 - -The total amount of wall time = 69.592574 -The maximum resident set size (KB) = 166256 - -Test 086 hafs_global_storm_following_1nest_atm PASS - -FAILED TESTS: -Test compile_006 failed in run_compile failed - -REGRESSION TEST FAILED -Mon May 16 15:11:59 UTC 2022 -Elapsed time: 00h:38m:55s. Have a nice day! -Mon May 16 15:26:24 UTC 2022 -Start Regression test - -Compile 001 elapsed time 499 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_control_debug -Checking test 001 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 271.979815 -The maximum resident set size (KB) = 951276 - -Test 001 rap_control_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_unified_drag_suite_debug -Checking test 002 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 271.947180 -The maximum resident set size (KB) = 951116 - -Test 002 rap_unified_drag_suite_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_diag_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_diag_debug -Checking test 003 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 288.536332 -The maximum resident set size (KB) = 1036820 - -Test 003 rap_diag_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_cires_ugwp_debug -Checking test 004 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 276.780137 -The maximum resident set size (KB) = 956496 - -Test 004 rap_cires_ugwp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_unified_ugwp_debug -Checking test 005 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 278.894796 -The maximum resident set size (KB) = 951252 - -Test 005 rap_unified_ugwp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_lndp_debug -Checking test 006 rap_lndp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 274.369991 -The maximum resident set size (KB) = 952012 - -Test 006 rap_lndp_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_flake_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_flake_debug -Checking test 007 rap_flake_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 272.851284 -The maximum resident set size (KB) = 951168 - -Test 007 rap_flake_debug PASS - - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Brian.Curtis/FV3_RT/rt_49022/rap_progcld_thompson_debug -Checking test 008 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -The total amount of wall time = 270.295896 -The maximum resident set size (KB) = 951176 - -Test 008 rap_progcld_thompson_debug PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon May 16 15:43:14 UTC 2022 -Elapsed time: 00h:16m:51s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log deleted file mode 100644 index c547260be5..0000000000 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ /dev/null @@ -1,3469 +0,0 @@ -Mon May 16 16:25:10 UTC 2022 -Start Regression test - -Compile 001 elapsed time 2415 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 582 seconds. -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1106 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1280 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 005 elapsed time 1202 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 433 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 333 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 363 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1775 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1783 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 785 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 311 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1489 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1024 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 390.151183 -[0] The maximum resident set size (KB) = 1155680 - -Test 001 cpld_control_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 422.075124 -[0] The maximum resident set size (KB) = 1573488 - -Test 002 cpld_2threads_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 394.240199 -[0] The maximum resident set size (KB) = 1150280 - -Test 003 cpld_decomp_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 328.559013 -[0] The maximum resident set size (KB) = 1048260 - -Test 004 cpld_mpi_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_bmark_p8 -Checking test 005 cpld_bmark_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20130401_0600z.nc4 .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 1160.865924 -[0] The maximum resident set size (KB) = 2831816 - -Test 005 cpld_bmark_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c96_p8 -Checking test 006 cpld_control_c96_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - 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 = 385.240007 -[0] The maximum resident set size (KB) = 1153456 - -Test 006 cpld_control_c96_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c96_p8 -Checking test 007 cpld_restart_c96_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - 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 = 211.913686 -[0] The maximum resident set size (KB) = 1115572 - -Test 007 cpld_restart_c96_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c192_p8 -Checking test 008 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - -[0] The total amount of wall time = 1267.525239 -[0] The maximum resident set size (KB) = 1273084 - -Test 008 cpld_control_c192_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c192_p8 -Checking test 009 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_1800z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - -[0] The total amount of wall time = 810.857818 -[0] The maximum resident set size (KB) = 1481816 - -Test 009 cpld_restart_c192_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_control_c384_p8 -Checking test 010 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -[0] The total amount of wall time = 1265.785895 -[0] The maximum resident set size (KB) = 2818500 - -Test 010 cpld_control_c384_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_restart_c384_p8 -Checking test 011 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......NOT OK - Comparing atmf006.nc ............ALT CHECK......NOT OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........NOT OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......NOT OK - Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_1.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_2.nc ............ALT CHECK......NOT OK - Comparing RESTART/MOM.res_3.nc ............ALT CHECK......NOT OK - Comparing RESTART/iced.2021-03-22-43200.nc ............ALT CHECK......NOT OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc ............ALT CHECK......NOT OK - -[0] The total amount of wall time = 751.213389 -[0] The maximum resident set size (KB) = 2800108 - -Test 011 cpld_restart_c384_p8 FAIL - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/cpld_debug_p8 -Checking test 012 cpld_debug_p8 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -[0] The total amount of wall time = 1163.782907 -[0] The maximum resident set size (KB) = 1248604 - -Test 012 cpld_debug_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control -Checking test 013 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 143.722934 -[0] The maximum resident set size (KB) = 466740 - -Test 013 control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_decomp -Checking test 014 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 151.311815 -[0] The maximum resident set size (KB) = 463548 - -Test 014 control_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2dwrtdecomp -Checking test 015 control_2dwrtdecomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - -[0] The total amount of wall time = 141.158167 -[0] The maximum resident set size (KB) = 465644 - -Test 015 control_2dwrtdecomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads -Checking test 016 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 135.332705 -[0] The maximum resident set size (KB) = 515640 - -Test 016 control_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_restart -Checking test 017 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 76.508294 -[0] The maximum resident set size (KB) = 209460 - -Test 017 control_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_fhzero -Checking test 018 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 135.708745 -[0] The maximum resident set size (KB) = 461480 - -Test 018 control_fhzero PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_CubedSphereGrid -Checking test 019 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -[0] The total amount of wall time = 138.325612 -[0] The maximum resident set size (KB) = 466320 - -Test 019 control_CubedSphereGrid PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_latlon -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_latlon -Checking test 020 control_latlon results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 142.189082 -[0] The maximum resident set size (KB) = 464996 - -Test 020 control_latlon PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 149.699769 -[0] The maximum resident set size (KB) = 462312 - -Test 021 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c48 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c48 -Checking test 022 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 450.471244 -[0] The maximum resident set size (KB) = 663096 - -Test 022 control_c48 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c192 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c192 -Checking test 023 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 560.796961 -[0] The maximum resident set size (KB) = 564260 - -Test 023 control_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384 -Checking test 024 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 558.656640 -[0] The maximum resident set size (KB) = 831632 - -Test 024 control_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384gdas -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384gdas -Checking test 025 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 545.767475 -[0] The maximum resident set size (KB) = 980712 - -Test 025 control_c384gdas PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy -Checking test 026 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 97.281702 -[0] The maximum resident set size (KB) = 465220 - -Test 026 control_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy_restart -Checking test 027 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 = 51.694045 -[0] The maximum resident set size (KB) = 266512 - -Test 027 control_stochy_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_lndp -Checking test 028 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 88.195360 -[0] The maximum resident set size (KB) = 470744 - -Test 028 control_lndp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr4 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_iovr4 -Checking test 029 control_iovr4 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 148.612476 -[0] The maximum resident set size (KB) = 465144 - -Test 029 control_iovr4 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_iovr5 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_iovr5 -Checking test 030 control_iovr5 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 148.378577 -[0] The maximum resident set size (KB) = 462804 - -Test 030 control_iovr5 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8 -Checking test 031 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 184.391435 -[0] The maximum resident set size (KB) = 848916 - -Test 031 control_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_lndp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8_lndp -Checking test 032 control_p8_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing sfcf048.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing atmf048.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSFLX.GrbF48 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing GFSPRS.GrbF48 .........OK - -[0] The total amount of wall time = 361.739464 -[0] The maximum resident set size (KB) = 844864 - -Test 032 control_p8_lndp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_restart_p8 -Checking test 033 control_restart_p8 results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 100.519968 -[0] The maximum resident set size (KB) = 593236 - -Test 033 control_restart_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_decomp_p8 -Checking test 034 control_decomp_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 195.793002 -[0] The maximum resident set size (KB) = 838780 - -Test 034 control_decomp_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads_p8 -Checking test 035 control_2threads_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 174.826621 -[0] The maximum resident set size (KB) = 926208 - -Test 035 control_2threads_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_p8_rrtmgp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_p8_rrtmgp -Checking test 036 control_p8_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 227.765695 -[0] The maximum resident set size (KB) = 967124 - -Test 036 control_p8_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_control -Checking test 037 regional_control results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -[0] The total amount of wall time = 373.949753 -[0] The maximum resident set size (KB) = 579380 - -Test 037 regional_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_restart -Checking test 038 regional_restart results .... - Comparing dynf024.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK - -[0] The total amount of wall time = 204.307784 -[0] The maximum resident set size (KB) = 584560 - -Test 038 regional_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_control_2dwrtdecomp -Checking test 039 regional_control_2dwrtdecomp results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - -[0] The total amount of wall time = 367.141699 -[0] The maximum resident set size (KB) = 581896 - -Test 039 regional_control_2dwrtdecomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_noquilt -Checking test 040 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - 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 = 401.395381 -[0] The maximum resident set size (KB) = 611852 - -Test 040 regional_noquilt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_2threads -Checking test 041 regional_2threads results .... - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK - -[0] The total amount of wall time = 222.424577 -[0] The maximum resident set size (KB) = 580596 - -Test 041 regional_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_netcdf_parallel -Checking test 042 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK - -[0] The total amount of wall time = 370.005062 -[0] The maximum resident set size (KB) = 577624 - -Test 042 regional_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_3km -Checking test 043 regional_3km results .... - Comparing dynf000.nc .........OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF06 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF06 .........OK - -[0] The total amount of wall time = 304.016577 -[0] The maximum resident set size (KB) = 607324 - -Test 043 regional_3km PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_control -Checking test 044 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 475.724961 -[0] The maximum resident set size (KB) = 836948 - -Test 044 rap_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_rrtmgp -Checking test 045 rap_rrtmgp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 509.026257 -[0] The maximum resident set size (KB) = 953824 - -Test 045 rap_rrtmgp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_spp_sppt_shum_skeb -Checking test 046 regional_spp_sppt_shum_skeb results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF01 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF01 .........OK - -[0] The total amount of wall time = 259.103573 -[0] The maximum resident set size (KB) = 936416 - -Test 046 regional_spp_sppt_shum_skeb PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_2threads -Checking test 047 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 438.023787 -[0] The maximum resident set size (KB) = 904300 - -Test 047 rap_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_restart -Checking test 048 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 239.376367 -[0] The maximum resident set size (KB) = 590828 - -Test 048 rap_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff -Checking test 049 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 466.296721 -[0] The maximum resident set size (KB) = 834208 - -Test 049 rap_sfcdiff PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff_restart -Checking test 050 rap_sfcdiff_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 237.264499 -[0] The maximum resident set size (KB) = 589892 - -Test 050 rap_sfcdiff_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hrrr_control -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hrrr_control -Checking test 051 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 448.913444 -[0] The maximum resident set size (KB) = 836564 - -Test 051 hrrr_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1beta -Checking test 052 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 457.108872 -[0] The maximum resident set size (KB) = 833828 - -Test 052 rrfs_v1beta PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1nssl -Checking test 053 rrfs_v1nssl results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 527.105681 -[0] The maximum resident set size (KB) = 525512 - -Test 053 rrfs_v1nssl PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1nssl_nohailnoccn -Checking test 054 rrfs_v1nssl_nohailnoccn results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 510.163023 -[0] The maximum resident set size (KB) = 512000 - -Test 054 rrfs_v1nssl_nohailnoccn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_conus13km_hrrr_warm -Checking test 055 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -[0] The total amount of wall time = 202.692022 -[0] The maximum resident set size (KB) = 665252 - -Test 055 rrfs_conus13km_hrrr_warm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_conus13km_radar_tten_warm -Checking test 056 rrfs_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -[0] The total amount of wall time = 199.421197 -[0] The maximum resident set size (KB) = 667100 - -Test 056 rrfs_conus13km_radar_tten_warm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_smoke_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_smoke_conus13km_hrrr_warm -Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - -[0] The total amount of wall time = 215.891908 -[0] The maximum resident set size (KB) = 683180 - -Test 057 rrfs_smoke_conus13km_hrrr_warm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmg -Checking test 058 control_csawmg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 376.037103 -[0] The maximum resident set size (KB) = 526332 - -Test 058 control_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmgt -Checking test 059 control_csawmgt results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 378.991950 -[0] The maximum resident set size (KB) = 523332 - -Test 059 control_csawmgt PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_flake -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_flake -Checking test 060 control_flake results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 256.446359 -[0] The maximum resident set size (KB) = 533108 - -Test 060 control_flake PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_ras -Checking test 061 control_ras results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 201.467690 -[0] The maximum resident set size (KB) = 492024 - -Test 061 control_ras PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson -Checking test 062 control_thompson results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 269.261897 -[0] The maximum resident set size (KB) = 851096 - -Test 062 control_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_no_aero -Checking test 063 control_thompson_no_aero results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 257.316454 -[0] The maximum resident set size (KB) = 842220 - -Test 063 control_thompson_no_aero PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wam -Checking test 064 control_wam results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - -[0] The total amount of wall time = 121.192482 -[0] The maximum resident set size (KB) = 235916 - -Test 064 control_wam PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_debug -Checking test 065 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 = 167.382023 -[0] The maximum resident set size (KB) = 629364 - -Test 065 control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_2threads_debug -Checking test 066 control_2threads_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 = 156.346000 -[0] The maximum resident set size (KB) = 679876 - -Test 066 control_2threads_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_CubedSphereGrid_debug -Checking test 067 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -[0] The total amount of wall time = 181.769806 -[0] The maximum resident set size (KB) = 627188 - -Test 067 control_CubedSphereGrid_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wrtGauss_netcdf_parallel_debug -Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 170.884364 -[0] The maximum resident set size (KB) = 630460 - -Test 068 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_stochy_debug -Checking test 069 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 = 191.551266 -[0] The maximum resident set size (KB) = 639260 - -Test 069 control_stochy_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_lndp_debug -Checking test 070 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 = 171.663709 -[0] The maximum resident set size (KB) = 636168 - -Test 070 control_lndp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmg_debug -Checking test 071 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 = 268.597343 -[0] The maximum resident set size (KB) = 669308 - -Test 071 control_csawmg_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_csawmgt_debug -Checking test 072 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 = 264.714649 -[0] The maximum resident set size (KB) = 668700 - -Test 072 control_csawmgt_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_ras_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_ras_debug -Checking test 073 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 = 173.558018 -[0] The maximum resident set size (KB) = 640364 - -Test 073 control_ras_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_diag_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_diag_debug -Checking test 074 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 = 177.532587 -[0] The maximum resident set size (KB) = 687936 - -Test 074 control_diag_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_debug_p8 -Checking test 075 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 = 190.340358 -[0] The maximum resident set size (KB) = 1015572 - -Test 075 control_debug_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_debug -Checking test 076 control_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 = 197.763015 -[0] The maximum resident set size (KB) = 992132 - -Test 076 control_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_no_aero_debug -Checking test 077 control_thompson_no_aero_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 = 190.529027 -[0] The maximum resident set size (KB) = 986964 - -Test 077 control_thompson_no_aero_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_extdiag_debug -Checking test 078 control_thompson_extdiag_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 = 207.609092 -[0] The maximum resident set size (KB) = 1020880 - -Test 078 control_thompson_extdiag_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_thompson_progcld_thompson_debug -Checking test 079 control_thompson_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 = 198.214893 -[0] The maximum resident set size (KB) = 991544 - -Test 079 control_thompson_progcld_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/regional_debug -Checking test 080 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 = 282.161493 -[0] The maximum resident set size (KB) = 606980 - -Test 080 regional_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_control_debug -Checking test 081 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 = 307.384805 -[0] The maximum resident set size (KB) = 1000628 - -Test 081 rap_control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_control_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_unified_drag_suite_debug -Checking test 082 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 = 306.103403 -[0] The maximum resident set size (KB) = 998668 - -Test 082 rap_unified_drag_suite_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_diag_debug -Checking test 083 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 = 322.597260 -[0] The maximum resident set size (KB) = 1085708 - -Test 083 rap_diag_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_cires_ugwp_debug -Checking test 084 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 = 312.128680 -[0] The maximum resident set size (KB) = 999412 - -Test 084 rap_cires_ugwp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_unified_ugwp_debug -Checking test 085 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 = 312.612618 -[0] The maximum resident set size (KB) = 1000104 - -Test 085 rap_unified_ugwp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_lndp_debug -Checking test 086 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 = 308.999000 -[0] The maximum resident set size (KB) = 996280 - -Test 086 rap_lndp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_flake_debug -Checking test 087 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 = 306.439001 -[0] The maximum resident set size (KB) = 997544 - -Test 087 rap_flake_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_progcld_thompson_debug -Checking test 088 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 = 306.983541 -[0] The maximum resident set size (KB) = 998180 - -Test 088 rap_progcld_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_noah_debug -Checking test 089 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 = 303.074070 -[0] The maximum resident set size (KB) = 999648 - -Test 089 rap_noah_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_rrtmgp_debug -Checking test 090 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 = 519.809710 -[0] The maximum resident set size (KB) = 1108608 - -Test 090 rap_rrtmgp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_sfcdiff_debug -Checking test 091 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 = 307.570405 -[0] The maximum resident set size (KB) = 998528 - -Test 091 rap_sfcdiff_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 092 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 = 509.705861 -[0] The maximum resident set size (KB) = 998660 - -Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/rrfs_v1beta_debug -Checking test 093 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 = 304.896584 -[0] The maximum resident set size (KB) = 992840 - -Test 093 rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_wam_debug -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_wam_debug -Checking test 094 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - -[0] The total amount of wall time = 320.667254 -[0] The maximum resident set size (KB) = 255840 - -Test 094 control_wam_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm -Checking test 095 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF06 .........OK - -[0] The total amount of wall time = 235.153391 -[0] The maximum resident set size (KB) = 714104 - -Test 095 hafs_regional_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_thompson_gfdlsf -Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - -[0] The total amount of wall time = 327.904577 -[0] The maximum resident set size (KB) = 1074728 - -Test 096 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_ocn -Checking test 097 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - 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 = 380.775288 -[0] The maximum resident set size (KB) = 747504 - -Test 097 hafs_regional_atm_ocn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_wav -Checking test 098 hafs_regional_atm_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -[0] The total amount of wall time = 923.500195 -[0] The maximum resident set size (KB) = 743712 - -Test 098 hafs_regional_atm_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_atm_ocn_wav -Checking test 099 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -[0] The total amount of wall time = 1039.403309 -[0] The maximum resident set size (KB) = 762720 - -Test 099 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_1nest_atm -Checking test 100 hafs_regional_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 410.703305 -[0] The maximum resident set size (KB) = 320988 - -Test 100 hafs_regional_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_telescopic_2nests_atm -Checking test 101 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest03.f006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 412.512321 -[0] The maximum resident set size (KB) = 322684 - -Test 101 hafs_regional_telescopic_2nests_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_1nest_atm -Checking test 102 hafs_global_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 188.992965 -[0] The maximum resident set size (KB) = 207112 - -Test 102 hafs_global_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_multiple_4nests_atm -Checking test 103 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing atm.nest03.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing sfc.nest04.f006.nc .........OK - Comparing atm.nest05.f006.nc .........OK - Comparing sfc.nest05.f006.nc .........OK - -[0] The total amount of wall time = 563.730362 -[0] The maximum resident set size (KB) = 280512 - -Test 103 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_specified_moving_1nest_atm -Checking test 104 hafs_regional_specified_moving_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 246.191873 -[0] The maximum resident set size (KB) = 320676 - -Test 104 hafs_regional_specified_moving_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm -Checking test 105 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 ............ALT CHECK......OK - -[0] The total amount of wall time = 232.797147 -[0] The maximum resident set size (KB) = 322272 - -Test 105 hafs_regional_storm_following_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm_ocn -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - -[0] The total amount of wall time = 263.830167 -[0] The maximum resident set size (KB) = 348572 - -Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - Comparing archv.2020_238_18.a .........OK - Comparing archs.2020_238_18.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -[0] The total amount of wall time = 692.381439 -[0] The maximum resident set size (KB) = 368264 - -Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_global_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_global_storm_following_1nest_atm -Checking test 108 hafs_global_storm_following_1nest_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atm.nest02.f006.nc ............ALT CHECK......OK - Comparing sfc.nest02.f006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 79.488946 -[0] The maximum resident set size (KB) = 226456 - -Test 108 hafs_global_storm_following_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_docn -Checking test 109 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - 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 = 377.650970 -[0] The maximum resident set size (KB) = 764868 - -Test 109 hafs_regional_docn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_docn_oisst -Checking test 110 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - 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 = 381.480261 -[0] The maximum resident set size (KB) = 741436 - -Test 110 hafs_regional_docn_oisst PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/hafs_regional_datm_cdeps -Checking test 111 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 = 1090.864405 -[0] The maximum resident set size (KB) = 890960 - -Test 111 hafs_regional_datm_cdeps PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_control_cfsr -Checking test 112 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 = 173.348697 -[0] The maximum resident set size (KB) = 723296 - -Test 112 datm_cdeps_control_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_restart_cfsr -Checking test 113 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 = 118.853746 -[0] The maximum resident set size (KB) = 724340 - -Test 113 datm_cdeps_restart_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_control_gefs -Checking test 114 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -[0] The total amount of wall time = 167.529842 -[0] The maximum resident set size (KB) = 625736 - -Test 114 datm_cdeps_control_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_iau_gefs -Checking test 115 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -[0] The total amount of wall time = 170.193903 -[0] The maximum resident set size (KB) = 624868 - -Test 115 datm_cdeps_iau_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_stochy_gefs -Checking test 116 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -[0] The total amount of wall time = 168.937948 -[0] The maximum resident set size (KB) = 626400 - -Test 116 datm_cdeps_stochy_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_bulk_cfsr -Checking test 117 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 = 172.944407 -[0] The maximum resident set size (KB) = 723872 - -Test 117 datm_cdeps_bulk_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_bulk_gefs -Checking test 118 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - -[0] The total amount of wall time = 169.199078 -[0] The maximum resident set size (KB) = 625824 - -Test 118 datm_cdeps_bulk_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_mx025_cfsr -Checking test 119 datm_cdeps_mx025_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - 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 = 353.301759 -[0] The maximum resident set size (KB) = 555504 - -Test 119 datm_cdeps_mx025_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_mx025_gefs -Checking test 120 datm_cdeps_mx025_gefs results .... - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - -[0] The total amount of wall time = 349.309551 -[0] The maximum resident set size (KB) = 521420 - -Test 120 datm_cdeps_mx025_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_multiple_files_cfsr -Checking test 121 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 = 172.875828 -[0] The maximum resident set size (KB) = 722168 - -Test 121 datm_cdeps_multiple_files_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_3072x1536_cfsr -Checking test 122 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 = 250.148030 -[0] The maximum resident set size (KB) = 1835772 - -Test 122 datm_cdeps_3072x1536_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_gfs -Checking test 123 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 = 250.752858 -[0] The maximum resident set size (KB) = 1900896 - -Test 123 datm_cdeps_gfs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/datm_cdeps_debug_cfsr -Checking test 124 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 = 500.263915 -[0] The maximum resident set size (KB) = 731728 - -Test 124 datm_cdeps_debug_cfsr PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_atmwav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_atmwav -Checking test 125 control_atmwav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 93.290461 -[0] The maximum resident set size (KB) = 477300 - -Test 125 control_atmwav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_c384gdas_wav -Checking test 126 control_c384gdas_wav results .... - Comparing sfcf000.nc .........OK - Comparing sfcf003.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf003.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF03 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF03 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.030000.restart.aoc_9km .........OK - Comparing 20210322.030000.restart.gnh_10m .........OK - Comparing 20210322.030000.restart.gsh_15m .........OK - -[0] The total amount of wall time = 619.516154 -[0] The maximum resident set size (KB) = 991156 - -Test 126 control_c384gdas_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/control_atm_aerosols -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_55472/control_atm_aerosols -Checking test 127 control_atm_aerosols results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing gocart.inst_aod.20210322_0700z.nc4 .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing gocart.tavg_cmass.20210322_0730z.nc4 .........OK - Comparing gocart.tavg_cmass.20210323_0430z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 328.244650 -[0] The maximum resident set size (KB) = 875596 - -Test 127 control_atm_aerosols PASS - -FAILED TESTS: -Test cpld_restart_c384_p8 011 failed in check_result failed -Test cpld_restart_c384_p8 011 failed in run_test failed - -REGRESSION TEST FAILED -Mon May 16 18:32:44 UTC 2022 -Elapsed time: 02h:07m:36s. Have a nice day! -Mon May 16 18:34:36 UTC 2022 -Start Regression test - -Compile 001 elapsed time 2364 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_5299/cpld_control_c384_p8 -Checking test 001 cpld_control_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -[0] The total amount of wall time = 1393.019400 -[0] The maximum resident set size (KB) = 2822844 - -Test 001 cpld_control_c384_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220516/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Brian.Curtis/FV3_RT/rt_5299/cpld_restart_c384_p8 -Checking test 002 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing gocart.inst_aod.20210322_1200z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - -[0] The total amount of wall time = 709.497194 -[0] The maximum resident set size (KB) = 2794596 - -Test 002 cpld_restart_c384_p8 PASS - - -REGRESSION TEST WAS SUCCESSFUL -Mon May 16 20:07:55 UTC 2022 -Elapsed time: 01h:33m:21s. Have a nice day! diff --git a/tests/auto-jenkins/jobs/bl.py b/tests/auto-jenkins/jobs/bl.py new file mode 100644 index 0000000000..e58f1321f1 --- /dev/null +++ b/tests/auto-jenkins/jobs/bl.py @@ -0,0 +1,233 @@ +# Imports +import datetime +import logging +import os +import sys +from . import rt + +def run(job_obj): + logger = logging.getLogger('BL/RUN') + workdir, rtbldir, blstore = set_directories(job_obj) + pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + bldate = get_bl_date(job_obj, pr_repo_loc) + bldir = f'{blstore}/develop-{bldate}/{job_obj.compiler.upper()}' + bldirbool = check_for_bl_dir(bldir, job_obj) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir) + + +def set_directories(job_obj): + logger = logging.getLogger('BL/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/emc.nemspara/autort/pr' + blstore = '/scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/scratch1/NCEPDEV/stmp4/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/h-nems/emc.nemspara/autort/pr' + blstore = '/lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/' + rtbldir = '/lfs4/HFIP/h-nems/emc.nemspara/RT_BASELINE/'\ + f'emc.nemspara/FV3_RT/REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/emc.nemspara/autort/pr' + blstore = '/lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs' + rtbldir = '/lustre/f2/scratch/emc.nemspara/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' + blstore = '/work2/noaa/epic-ps/RT/NEMSfv3gfs' + rtbldir = '/work/noaa/stmp/role-epic-ps/stmp/role-epic-ps/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + blstore = '/glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs' + rtbldir = '/glade/scratch/epicufsrt/FV3_RT/'\ + f'REGRESSION_TEST_{job_obj.compiler.upper()}' + else: + logger.critical(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + logger.info(f'blstore: {blstore}') + logger.info(f'rtbldir: {rtbldir}') + + return workdir, rtbldir, blstore + + +def check_for_bl_dir(bldir, job_obj): + logger = logging.getLogger('BL/CHECK_FOR_BL_DIR') + logger.info('Checking if baseline directory exists') + if os.path.exists(bldir): + logger.critical(f'Baseline dir: {bldir} exists. It should not, yet.') + job_obj.comment_text_append(f'{bldir}\n Exists already. ' + 'It should not yet. Please delete.') + raise FileExistsError + return False + + +def create_bl_dir(bldir, job_obj): + logger = logging.getLogger('BL/CREATE_BL_DIR') + if not check_for_bl_dir(bldir, job_obj): + os.makedirs(bldir) + if not os.path.exists(bldir): + logger.critical(f'Someting went wrong creating {bldir}') + raise FileNotFoundError + + +#def get_bl_date(job_obj): +# logger = logging.getLogger('BL/GET_BL_DATE') +# for line in job_obj.preq_dict['preq'].body.splitlines(): +# if 'BL_DATE:' in line: +# bldate = line +# bldate = bldate.replace('BL_DATE:', '') +# bldate = bldate.replace(' ', '') +# if len(bldate) != 8: +# print(f'Date: {bldate} is not formatted YYYYMMDD') +# raise ValueError +# logger.info(f'BL_DATE: {bldate}') +# bl_format = '%Y%m%d' +# try: +# datetime.datetime.strptime(bldate, bl_format) +# except ValueError: +# logger.info(f'Date {bldate} is not formatted YYYYMMDD') +# raise ValueError +# return bldate +# logger.critical('"BL_DATE:YYYYMMDD" needs to be in the PR body.'\ +# 'On its own line. Stopping') +# raise ValueError + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('RT/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'gnu' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -c -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -c', pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -c', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('BL/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + logger = logging.getLogger('BL/CLONE_PR_REPO') + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_url = f'{git_url[0]}//${{ghapitoken}}@{git_url[1]}' + logger.debug(f'GIT URL: {git_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "ecc.platform@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "epic-cicd-jenkins"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, rtbldir, bldir): + logger = logging.getLogger('BL/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + create_bl_dir(bldir, job_obj) + move_bl_command = [[f'mv {rtbldir}/* {bldir}/', pr_repo_loc]] + if job_obj.machine == 'orion': + move_bl_command.append([f'/bin/bash --login adjust_permissions.sh orion develop-{bldate}', blstore]) + job_obj.run_commands(logger, move_bl_command) + job_obj.comment_text_append('Baseline creation and move successful') + logger.info('Starting RT Job') + rt.run(job_obj) + logger.info('Finished with RT Job') + remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir) + + +def get_bl_date(job_obj, pr_repo_loc): + logger = logging.getLogger('BL/UPDATE_RT_SH') + BLDATEFOUND = False + with open(f'{pr_repo_loc}/tests/rt.sh', 'r') as f: + for line in f: + if 'BL_DATE=' in line: + logger.info('Found BL_DATE in line') + BLDATEFOUND = True + bldate = line + bldate = bldate.rstrip('\n') + bldate = bldate.replace('BL_DATE=', '') + bldate = bldate.strip(' ') + logger.info(f'bldate is "{bldate}"') + logger.info(f'Type bldate: {type(bldate)}') + bl_format = '%Y%m%d' + try: + datetime.datetime.strptime(bldate, '%Y%m%d') + except ValueError: + logger.info(f'Date {bldate} is not formatted YYYYMMDD') + raise ValueError + if not BLDATEFOUND: + job_obj.comment_text_append('BL_DATE not found in rt.sh.' + 'Please manually edit rt.sh ' + 'with BL_DATE={bldate}') + job_obj.job_failed(logger, 'get_bl_date()') + logger.info('Finished get_bl_date') + + return bldate + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('BL/PROCESS_LOGFILE') + rt_dir = [] + fail_string_list = ['Test', 'failed'] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if all(x in line for x in fail_string_list): + # if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'{line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + logger.info(f'Found "working dir" in line: {line}') + rt_dir = os.path.split(line.split()[-1])[0] + logger.info(f'It is: {rt_dir}') + job_obj.comment_text_append(f'Please manually delete: ' + f'{rt_dir}') + elif 'SUCCESSFUL' in line: + logger.info('RT Successful') + return rt_dir, True + logger.critical(f'Log file exists but is not complete') + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto-jenkins/jobs/rt.py b/tests/auto-jenkins/jobs/rt.py new file mode 100644 index 0000000000..294c85720c --- /dev/null +++ b/tests/auto-jenkins/jobs/rt.py @@ -0,0 +1,161 @@ +# Imports +import datetime +import logging +import os +import re + +#Logging filter to santize log output and ensure Github Access tokens are not leaked. +def loggingfilter(record): + if re.search('ghp_(.*)\@', str(record.msg)): + record.msg = re.sub(r'ghp_(.*)\@', r'ghp_****@', str(record.msg)) + elif re.search('github_pat_(.*)\@', str(record.msg)): + record.msg = re.sub(r'github_pat_(.*)\@', r'github_pat_****@', str(record.msg)) + + return True + +def run(job_obj): + logger = logging.getLogger('RT/RUN') + workdir = set_directories(job_obj) + branch, pr_repo_loc, repo_dir_str = clone_pr_repo(job_obj, workdir) + run_regression_test(job_obj, pr_repo_loc) + post_process(job_obj, pr_repo_loc, repo_dir_str, branch) + + +def set_directories(job_obj): + logger = logging.getLogger('RT/SET_DIRECTORIES') + if job_obj.machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' + elif job_obj.machine == 'jet': + workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + elif job_obj.machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' + elif job_obj.machine == 'orion': + workdir = '/work/noaa/epic-ps/role-epic-ps/autort/tests/auto/pr' + elif job_obj.machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + else: + print(f'Machine {job_obj.machine} is not supported for this job') + raise KeyError + + logger.info(f'machine: {job_obj.machine}') + logger.info(f'workdir: {workdir}') + + return workdir + + +def run_regression_test(job_obj, pr_repo_loc): + logger = logging.getLogger('RT/RUN_REGRESSION_TEST') + if job_obj.compiler == 'gnu' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'gnu' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r -l rt_gnu.conf', + pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine != 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -e', pr_repo_loc]] + elif job_obj.compiler == 'intel' and job_obj.machine == 'hera': + rt_command = [[f'export RT_COMPILER="{job_obj.compiler}" && cd tests ' + '&& /bin/bash --login ./rt.sh -r', pr_repo_loc]] + job_obj.run_commands(logger, rt_command) + + +def remove_pr_data(job_obj, pr_repo_loc, repo_dir_str, rt_dir): + logger = logging.getLogger('RT/REMOVE_PR_DATA') + rm_command = [ + [f'rm -rf {rt_dir}', pr_repo_loc], + [f'rm -rf {repo_dir_str}', pr_repo_loc] + ] + job_obj.run_commands(logger, rm_command) + + +def clone_pr_repo(job_obj, workdir): + ''' clone the GitHub pull request repo, via command line ''' + filename = ('jenkinsaccesstoken') + f = open(filename) + os.environ['ghapitoken'] = f.readline().strip('\n') + + logger = logging.getLogger('RT/CLONE_PR_REPO') + logger.addFilter(loggingfilter) + repo_name = job_obj.preq_dict['preq'].head.repo.name + branch = job_obj.preq_dict['preq'].head.ref + git_url = job_obj.preq_dict['preq'].head.repo.html_url.split('//') + git_token = os.environ['ghapitoken'] + git_https_url = f'{git_url[0]}//{git_token}@{git_url[1]}' + git_ssh_url = job_obj.preq_dict['preq'].head.repo.ssh_url + logger.debug(f'GIT SSH_URL: {git_ssh_url}') + logger.info('Starting repo clone') + repo_dir_str = f'{workdir}/'\ + f'{str(job_obj.preq_dict["preq"].id)}/'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}' + pr_repo_loc = f'{repo_dir_str}/{repo_name}' + job_obj.comment_text_append(f'[RT] Repo location: {pr_repo_loc}') + create_repo_commands = [ + [f'mkdir -p "{repo_dir_str}"', os.getcwd()], + [f'git clone -b {branch} {git_ssh_url}', repo_dir_str], + ['git submodule update --init --recursive', + f'{repo_dir_str}/{repo_name}'], + [f'git remote add httpsorigin {git_https_url}', + f'{repo_dir_str}/{repo_name}'], + ['git config user.email "ecc.platform@noaa.gov"', + f'{repo_dir_str}/{repo_name}'], + ['git config user.name "epic-cicd-jenkins"', + f'{repo_dir_str}/{repo_name}'] + ] + + job_obj.run_commands(logger, create_repo_commands) + + logger.info('Finished repo clone') + return branch, pr_repo_loc, repo_dir_str + + +def post_process(job_obj, pr_repo_loc, repo_dir_str, branch): + ''' This is the callback function associated with the "RT" command ''' + logger = logging.getLogger('RT/MOVE_RT_LOGS') + rt_log = f'tests/RegressionTests_{job_obj.machine}'\ + f'.{job_obj.compiler}.log' + filepath = f'{pr_repo_loc}/{rt_log}' + rt_dir, logfile_pass = process_logfile(job_obj, filepath) + if logfile_pass: + #if job_obj.preq_dict['preq'].maintainer_can_modify: + move_rt_commands = [ + [f'git pull --ff-only origin {branch}', pr_repo_loc], + [f'git add {rt_log}', pr_repo_loc], + [f'git commit -m "[AutoRT] {job_obj.machine}' + f'.{job_obj.compiler} Job Completed.\n\n\n' + 'on-behalf-of @ufs-community "', + pr_repo_loc], + ['sleep 10', pr_repo_loc], + [f'git push httpsorigin {branch}', pr_repo_loc] + ] + job_obj.run_commands(logger, move_rt_commands) + else: + job_obj.comment_text_append(f'[RT] Log file shows failures.') + job_obj.comment_text_append(f'[RT] Please obtain logs from {pr_repo_loc}') + job_obj.preq_dict['preq'].create_issue_comment(job_obj.comment_text) + + +def process_logfile(job_obj, logfile): + logger = logging.getLogger('RT/PROCESS_LOGFILE') + rt_dir = [] + fail_string_list = ['Test', 'failed'] + if os.path.exists(logfile): + with open(logfile) as f: + for line in f: + if all(x in line for x in fail_string_list): + # if 'FAIL' in line and 'Test' in line: + job_obj.comment_text_append(f'[RT] Error: {line.rstrip(chr(10))}') + elif 'working dir' in line and not rt_dir: + rt_dir = os.path.split(line.split()[-1])[0] + elif 'SUCCESSFUL' in line: + return rt_dir, True + job_obj.job_failed(logger, f'{job_obj.preq_dict["action"]}') + else: + logger.critical(f'Could not find {job_obj.machine}' + f'.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + print(f'Could not find {job_obj.machine}.{job_obj.compiler} ' + f'{job_obj.preq_dict["action"]} log') + raise FileNotFoundError diff --git a/tests/auto-jenkins/rt_auto_jenkins.py b/tests/auto-jenkins/rt_auto_jenkins.py new file mode 100755 index 0000000000..e393e5ff40 --- /dev/null +++ b/tests/auto-jenkins/rt_auto_jenkins.py @@ -0,0 +1,365 @@ +"""Automation of UFS Regression Testing + +This script automates the process of UFS regression testing for code managers +at NOAA-EMC + +This script should be started through rt_auto.sh so that env vars are set up +prior to start. +""" +from github import Github as gh +import datetime +import subprocess +import re +import os +import sys +from glob import glob +import logging +import importlib +from shutil import rmtree + +class GHInterface: + ''' + This class stores information for communicating with GitHub + ... + + Attributes + ---------- + GHACCESSTOKEN : str + API token to autheticate with GitHub + client : pyGitHub communication object + The connection to GitHub to make API requests + ''' + + def __init__(self): + self.logger = logging.getLogger('GHINTERFACE') + + filename = 'jenkinsaccesstoken' + + if os.path.exists(filename): + if oct(os.stat(filename).st_mode)[-3:] != 600: + with open(filename) as f: + os.environ['ghapitoken'] = f.readline().strip('\n') + else: + raise Exception('File permission needs to be "600" ') + else: + raise FileNotFoundError('Cannot find file "accesstoken"') + + try: + self.client = gh(os.getenv('ghapitoken')) + except Exception as e: + self.logger.critical(f'Exception is {e}') + raise(e) + + +def set_action_from_label(machine, actions, label): + ''' Match the label that initiates a job with an action in the dict''' + # -- i.e. hera-gnu-RT + logger = logging.getLogger('MATCH_LABEL_WITH_ACTIONS') + logger.info('Setting action from Label') + split_label = label.name.split('-') + # Make sure it has three parts + if len(split_label) != 3: + return False, False + # Break the parts into their variables + label_machine = split_label[0] + label_compiler = split_label[1] + label_action = split_label[2] + # check machine name matches + if not re.match(label_machine, machine): + return False, False + # Compiler must be intel or gnu + if not str(label_compiler) in ["intel", "gnu"]: + return False, False + action_match = next((action for action in actions + if re.match(action, label_action)), False) + + logging.info(f'Compiler: {label_compiler}, Action: {action_match}') + return label_compiler, action_match + +def delete_pr_dirs(each_pr, machine): + if machine == 'hera': + workdir = '/scratch1/NCEPDEV/nems/role.epic/autort/pr' + elif machine == 'jet': + workdir = '/lfs4/HFIP/hfv3gfs/role.epic/autort/pr' + elif machine == 'gaea': + workdir = '/lustre/f2/pdata/ncep/role.epic/autort/pr' + elif machine == 'orion': + workdir = '/work/noaa/epic-ps/role-epic-ps/autort/pr' + elif machine == 'cheyenne': + workdir = '/glade/scratch/epicufsrt/autort/jenkins/autort/pr' + else: + logging.error(f'Machine {machine} is not supported for this job') + raise KeyError + ids = [str(pr.id) for pr in each_pr] + logging.debug(f'ids are: {ids}') + dirs = [x.split('/')[-2] for x in glob(f'{workdir}/*/')] + logging.debug(f'dirs: {dirs}') + for dir in dirs: + if dir != 'pr': + logging.debug(f'Checking dir {dir}') + if not dir in ids: + logging.debug(f'ID NOT A MATCH, DELETING {dir}') + delete_rt_dirs(dir, machine, workdir) + if os.path.isdir(f'{workdir}/{dir}'): + logging.debug(f'Executing rmtree in "{workdir}/{dir}"') + rmtree(f'{workdir}/{dir}') + else: + logging.debug(f'{workdir}/{dir} does not exist, not attempting to remove') + else: + logging.debug(f'ID A MATCH, NOT DELETING {dir}') + # job_obj.preq_dict["preq"].id + + +def delete_rt_dirs(in_dir, machine, workdir): + if machine == 'hera': + rt_dir ='/scratch1/NCEPDEV/stmp4/role.epic/FV3_RT' + elif machine == 'jet': + rt_dir ='/lfs4/HFIP/hfv3gfs/role.epic/RT_BASELINE/'\ + f'emc.nemspara/FV3_RT' + elif machine == 'gaea': + rt_dir = '/lustre/f2/scratch/role.epic/FV3_RT' + elif machine == 'orion': + rt_dir = '/work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT' + elif machine == 'cheyenne': + rt_dir = '/glade/scratch/epicufsrt/FV3_RT' + else: + logging.error(f'Machine {machine} is not supported for this job') + raise KeyError + globdir = f'{workdir}/{in_dir}/**/compile_*.log' + logging.debug(f'globdir: {globdir}') + logfiles = glob(globdir, recursive=True) + if not logfiles: + return + logging.debug(f'logfiles: {logfiles}') + matches = [] + for logfile in logfiles: + with open(logfile, "r") as fp: + lines = [line.split('/') for line in fp if 'rt_' in line] + lines = list(set([item for sublist in lines for item in sublist])) + lines = [s for s in lines if 'rt_' in s and '\n' not in s] + if lines: + matches.append(lines) + logging.debug(f'lines: {lines}') + matches = list(set([item for sublist in matches for item in sublist])) + logging.debug(f'matches: {matches}') + for match in matches: + if os.path.isdir(f'{rt_dir}/{match}'): + logging.debug(f'Executing rmtree in "{rt_dir}/{match}"') + rmtree(f'{rt_dir}/{match}') + else: + logging.debug(f'{rt_dir}/{match} does not exist, not attempting to remove') + + +def get_preqs_with_actions(repos, machine, ghinterface_obj, actions): + ''' Create list of dictionaries of a pull request + and its machine label and action ''' + logger = logging.getLogger('GET_PREQS_WITH_ACTIONS') + logger.info('Getting Pull Requests with Actions') + gh_preqs = [ghinterface_obj.client.get_repo(repo['address']) + .get_pulls(state='open', sort='created', base=repo['base']) + for repo in repos] + each_pr = [preq for gh_preq in gh_preqs for preq in gh_preq] + delete_pr_dirs(each_pr, machine) + preq_labels = [{'preq': pr, 'label': label} for pr in each_pr + for label in pr.get_labels()] + + jobs = [] + # return_preq = [] + for pr_label in preq_labels: + compiler, match = set_action_from_label(machine, actions, + pr_label['label']) + if match: + pr_label['action'] = match + # return_preq.append(pr_label.copy()) + jobs.append(Job(pr_label.copy(), ghinterface_obj, machine, compiler)) + + return jobs + + +class Job: + ''' + This class stores all information needed to run jobs on this machine. + This class provides all methods needed to run all jobs. + ... + + Attributes + ---------- + preq_dict: dict + Dictionary of all data that comes from the GitHub pull request + ghinterface_obj: object + An interface to GitHub setup through class GHInterface + machine: dict + Information about the machine the jobs will be running on + provided by the bash script + ''' + + def __init__(self, preq_dict, ghinterface_obj, machine, compiler): + self.logger = logging.getLogger('JOB') + self.preq_dict = preq_dict + self.job_mod = importlib.import_module( + f'jobs.{self.preq_dict["action"].lower()}') + self.ghinterface_obj = ghinterface_obj + self.machine = machine + self.compiler = compiler + self.comment_text = '***Automated RT Failure Notification***\n' + self.failed_tests = [] + + def comment_text_append(self, newtext): + self.comment_text += f'{newtext}\n' + + def remove_pr_label(self): + ''' Removes the PR label that initiated the job run from PR ''' + self.logger.info(f'Removing Label: {self.preq_dict["label"]}') + self.preq_dict['preq'].remove_from_labels(self.preq_dict['label']) + + def check_label_before_job_start(self): + # LETS Check the label still exists before the start of the job in the + # case of multiple jobs + label_to_check = f'{self.machine}'\ + f'-{self.compiler}'\ + f'-{self.preq_dict["action"]}' + labels = self.preq_dict['preq'].get_labels() + label_match = next((label for label in labels + if re.match(label.name, label_to_check)), False) + + return label_match + + def run_commands(self, logger, commands_with_cwd): + for command, in_cwd in commands_with_cwd: + logger.info(f'Running `{command}`') + logger.info(f'in location "{in_cwd}"') + try: + output = subprocess.Popen(command, shell=True, cwd=in_cwd, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT) + except Exception as e: + self.job_failed(logger, 'subprocess.Popen') + else: + try: + out, err = output.communicate() + out = [] if not out else out.decode('utf8').split('\n') + logger.info(out) + except Exception as e: + err = [] if not err else err.decode('utf8').split('\n') + self.job_failed(logger, f'Command {command}', exception=e, + STDOUT=True, out=out, err=err) + else: + logger.info(f'Finished running: {command}') + + def run(self): + logger = logging.getLogger('JOB/RUN') + logger.info(f'Starting Job: {self.preq_dict["label"]}') + self.comment_text_append(newtext=f'Machine: {self.machine}') + self.comment_text_append(f'Compiler: {self.compiler}') + self.comment_text_append(f'Job: {self.preq_dict["action"]}') + if self.check_label_before_job_start(): + try: + logger.info('Calling remove_pr_label') + self.remove_pr_label() + logger.info('Calling Job to Run') + self.job_mod.run(self) + except Exception: + self.job_failed(logger, 'run()') + logger.info('Sending comment text') + self.send_comment_text() + else: + logger.info(f'Cannot find label {self.preq_dict["label"]}') + + def send_comment_text(self): + logger = logging.getLogger('JOB/SEND_COMMENT_TEXT') + logger.info(f'Comment Text: {self.comment_text}') + self.comment_text_append('Please make changes and add ' + 'the following label back: ' + f'{self.machine}' + f'-{self.compiler}' + f'-{self.preq_dict["action"]}') + + self.preq_dict['preq'].create_issue_comment(self.comment_text) + + def job_failed(self, logger, job_name, exception=Exception, STDOUT=False, + out=None, err=None): + logger.critical(f'{job_name} FAILED. Exception:{exception}') + + if STDOUT: + logger.critical(f'STDOUT: {[item for item in out if not None]}') + logger.critical(f'STDERR: {[eitem for eitem in err if not None]}') + +def setup_env(): + hostname = os.getenv('HOSTNAME') + if bool(re.match(re.compile('hfe.+'), hostname)): + machine = 'hera' + elif bool(re.match(re.compile('hecflow.+'), hostname)): + machine = 'hera' + elif bool(re.match(re.compile('fe.+'), hostname)): + machine = 'jet' + os.environ['ACCNR'] = 'hfv3gfs' + elif bool(re.match(re.compile('tfe.+'), hostname)): + machine = 'jet' + os.environ['ACCNR'] = 'hfv3gfs' + elif bool(re.match(re.compile('gaea.+'), hostname)): + machine = 'gaea' + os.environ['ACCNR'] = 'nggps_emc' + elif bool(re.match(re.compile('Orion-login.+'), hostname)): + machine = 'orion' + os.environ['ACCNR'] = 'epic-ps' + elif bool(re.match(re.compile('cheyenne.+'), hostname)): + machine = 'cheyenne' + os.environ['ACCNR'] = 'SCSG0002' + elif bool(re.match(re.compile('chadmin.+'), hostname)): + machine = 'cheyenne' + os.environ['ACCNR'] = 'SCSG0002' + else: + raise KeyError(f'Hostname: {hostname} does not match '\ + 'for a supported system. Exiting.') + + github_org = sys.argv[1] + base = sys.argv[2] + model = '/ufs-weather-model' + address = github_org + model + # Dictionary of GitHub repositories to check + repo_dict = [{ + 'name': 'ufs-weather-model', + 'address': address, + 'base': base + }] + + # Approved Actions + action_list = ['RT', 'BL'] + + return machine, repo_dict, action_list + + +def main(): + + # handle logging + log_filename = f'rt_auto_'\ + f'{datetime.datetime.now().strftime("%Y%m%d%H%M%S")}.log' + #logging.basicConfig(filename=log_filename, filemode='w', + # level=logging.INFO) + logging.basicConfig(filename=log_filename, filemode='w', + level=logging.DEBUG) + logger = logging.getLogger('MAIN') + logger.info('Starting Script') + + # setup environment + logger.info('Getting the environment setup') + machine, repos, actions = setup_env() + + # setup interface with GitHub + logger.info('Setting up GitHub interface.') + ghinterface_obj = GHInterface() + + # get all pull requests from the GitHub object + # and turn them into Job objects + logger.info('Getting all pull requests, ' + 'labels and actions applicable to this machine.') + jobs = get_preqs_with_actions(repos, machine, + ghinterface_obj, actions) + [job.run() for job in jobs] + + + logger.info('Script Finished') + + +if __name__ == '__main__': + main() diff --git a/tests/auto-jenkins/start_rt_auto_jenkins.sh b/tests/auto-jenkins/start_rt_auto_jenkins.sh new file mode 100755 index 0000000000..203b334767 --- /dev/null +++ b/tests/auto-jenkins/start_rt_auto_jenkins.sh @@ -0,0 +1,33 @@ +#!/bin/bash --login +set -eux + +if [[ $HOSTNAME == hfe* ]]; then + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == hecflow* ]]; then + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == Orion-login-* ]]; then + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages +elif [[ $HOSTNAME == fe* ]]; then + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $HOSTNAME == tfe* ]]; then + export PATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/bin:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/lfs4/HFIP/hfv3gfs/software/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $HOSTNAME == gaea* ]]; then + export PATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/envs/ufs-weather-model/bin:$PATH + export PYTHONPATH=/lustre/f2/pdata/esrl/gsd/contrib/miniconda3/4.8.3/lib/python3.8/site-packages +elif [[ $HOSTNAME == *chadmin* ]] || [[ $HOSTNAME == *cheyenne* ]]; then + export MACHINE_ID=cheyenne + export PATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/bin:/glade/p/ral/jntp/tools/miniconda3/4.8.3/bin:$PATH + export PYTHONPATH=/glade/p/ral/jntp/tools/miniconda3/4.8.3/envs/ufs-weather-model/lib/python3.8/site-packages:/glade/p/ral/jntp/tools/miniconda3/4.8.3/lib/python3.8/site-packages +else + echo "No Python Path for this machine." + exit 1 +fi + +python rt_auto_jenkins.py $1 $2 + +exit 0 diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 4e0fa5463f..c19e5f09e1 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,6 @@ -From noaaemc/ubuntu-hpc:v1.10b +From noaaepic/ubuntu20.04-gnu9.3-hpc-stack:v1.2 + +CMD ["/bin/bash"] ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model @@ -6,14 +8,13 @@ COPY --chown=builder:builder . $HOME/ufs-weather-model USER builder ENV USER=builder ARG test_name -ARG build_case +ARG run_case ENV test_name=$test_name -ENV build_case=$build_case -ENV test_case= +ENV run_case=$run_case ENV CI_TEST=true ENV RT_COMPILER=gnu -ENV RT_MACHINE=linux.gnu +ENV RT_MACHINE=linux +ENV MACHINE_ID=linux WORKDIR $HOME/ufs-weather-model/tests -RUN ./opnReqTest -n $test_name -c $build_case -z && tar -cvzf fv3.tar.gz fv3_*.exe modules.fv3_* -CMD ./opnReqTest -n $test_name -c $test_case -x +CMD ./opnReqTest -n $test_name -c $run_case diff --git a/tests/ci/Jenkinsfile b/tests/ci/Jenkinsfile new file mode 100644 index 0000000000..53e6b32a10 --- /dev/null +++ b/tests/ci/Jenkinsfile @@ -0,0 +1,97 @@ +pipeline { + agent none + + options { + disableConcurrentBuilds() + overrideIndexTriggers(false) + skipDefaultCheckout(true) + } + + stages { + stage('ORT') { + matrix { + axes { + axis { + name 'TEST_NAME' + values 'control_p8', 'regional_control', 'cpld_control_nowave_noaero_p8' + } + + axis { + name 'TEST_CASE' + values 'thr', 'mpi', 'dcp', 'rst', 'bit', 'dbg' + } + } + + excludes { + exclude { + axis { + name 'TEST_NAME' + values 'cpld_control_nowave_noaero_p8' + } + + axis { + name 'TEST_CASE' + values 'mpi', 'dcp', 'bit', 'thr' // TODO: Remove thr case from cpld_control_nowave_noaero_p8 exclusions when it is passing again + } + } + exclude { + axis { + name 'TEST_NAME' + values 'regional_control' + } + + axis { + name 'TEST_CASE' + values 'mpi', 'rst', 'bit', 'dbg' + } + } + } + + agent { + label 'docker-ufs-wm-ci' + } + + environment { + IMG_NAME = 'ci-test-weather' + } + + stages { + stage('Initialize') { + steps { + cleanWs() + checkout scm + } + } + + stage('Build') { + steps { + sh 'docker build --build-arg test_name="" --build-arg build_case="" --no-cache --compress --file "${WORKSPACE}/tests/ci/Dockerfile" --tag "${IMG_NAME}" "${WORKSPACE}"' + } + } + + stage('Stage Test Data') { + steps { + sh 'docker volume rm --force DataVolume && docker run --detach --rm --volume DataVolume:/tmp noaaepic/input-data:20221101' + } + } + + stage('Test') { + steps { + sh 'docker run --rm --env test_name="${TEST_NAME}" --env run_case="${TEST_CASE}" --workdir /home/builder/ufs-weather-model/tests --volume DataVolume:/home/builder/data/NEMSfv3gfs --interactive --shm-size=1gb "${IMG_NAME}"' + } + } + } + + post { + always { + sh ''' + docker rmi -f "$(docker image ls | grep -E -m1 "${IMG_NAME}" | awk '{ print $3 }')" + docker rmi -f "$(docker image ls | grep -E -m1 'noaaepic' | awk '{ print $3 }')" + ''' + } + } + } + } + } +} + diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index 9c9804cf1d..c93a865ccb 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -75,13 +75,13 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then docker volume rm -f DataVolume >/dev/null && - docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20220414 + docker run -d --rm -v DataVolume:/tmp noaaemc/input-data:20220414 docker create -u builder -e "CI_TEST=true" -e "USER=builder" \ -e "RT_MACHINE=linux.gnu" -e "RT_COMPILER=gnu" \ -w "/home/builder/ufs-weather-model/tests" \ -v DataVolume:/home/builder/data/NEMSfv3gfs \ - --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.10b \ + --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.11b \ /bin/bash -c "./opnReqTest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE diff --git a/tests/ci/ci.test b/tests/ci/ci.test index 2fea94f8fc..45efff781f 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,6 +1,6 @@ -control +control_p8 thr mpi dcp rst bit dbg regional_control thr dcp -cpld_control_c96_noaero_p8 +cpld_control_nowave_noaero_p8 rst dbg diff --git a/tests/compile.sh b/tests/compile.sh index e8e851e712..001a1cfea2 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -46,9 +46,6 @@ BUILD_DIR=$(pwd)/build_${BUILD_NAME} if [[ $MACHINE_ID == cheyenne.* ]] ; then BUILD_JOBS=${BUILD_JOBS:-3} -elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then - BUILD_JOBS=${BUILD_JOBS:-2} - source $PATHTR/tests/module-setup.sh fi BUILD_JOBS=${BUILD_JOBS:-8} @@ -67,7 +64,9 @@ else module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then - [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" + if [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] || [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug.lua ]]; then + modulefile="ufs_${MACHINE_ID}_debug" + fi fi module load $modulefile module list @@ -133,9 +132,17 @@ bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} + if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} + else + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua + fi else - cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} + if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} + else + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}.lua ${PATHTR}/tests/modules.${BUILD_NAME}.lua + fi fi if [ $clean_after = YES ] ; then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 9e6afab458..29a3023bd9 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,324 +7,133 @@ # ############################################################################### -THRD=1 + THRD=1 -if [[ $MACHINE_ID = wcoss_cray ]]; then + INPES_atmaero=4; JNPES_atmaero=8; WPG_atmaero=6 - TPN=24 - - 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 - -elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - - TPN=28 - - 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 - - TASKS_cpl_atmw=196; THRD_cpl_atmw=1 + THRD_cpl_atmw=1 INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=46 - - TASKS_cpl_atmw_gdas=560; 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 + WAV_tasks_atmw=30 - TASKS_cpl_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 + 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=196; 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=8 - WAV_tasks_cpl_dflt=18 + 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 ICE_tasks_cpl_thrd=10 + ICE_thrds_cpl_thrd=1 WAV_tasks_cpl_thrd=12 + WAV_thrds_cpl_thrd=2 - TASKS_cpl_dcmp=196; 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=8 - WAV_tasks_cpl_dcmp=18 + 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_c384=480; THRD_cpl_c384=2 - INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=120 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=120 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=80 + 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 + ICE_tasks_cpl_bmrk=48 + ICE_thrds_cpl_bmrk=1 + WAV_tasks_cpl_bmrk=80 + WAV_thrds_cpl_bmrk=2 - TASKS_cpl_c192=384; THRD_cpl_c192=1 + 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 -elif [[ $MACHINE_ID = wcoss2 ]]; then + INPES_aqm=33; JNPES_aqm=8 - TPN=128 + 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 - 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 +if [[ $MACHINE_ID = wcoss2.* || $MACHINE_ID = acorn.* ]]; then - TASKS_cpl_atmw=196; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=46 + TPN=128 + + 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 - TASKS_cpl_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=196; 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=8 - WAV_tasks_cpl_dflt=18 - - TASKS_cpl_thrd=120; 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 - WAV_tasks_cpl_thrd=12 - - TASKS_cpl_dcmp=196; 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=8 - WAV_tasks_cpl_dcmp=18 - - TASKS_cpl_mpi=280; 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_c384=480; THRD_cpl_c384=2 - INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=120 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=120 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=80 - - TASKS_cpl_c192=384; THRD_cpl_c192=1 - INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - - 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 - 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 - - TASKS_cpl_atmw=200; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=50 + 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 - TASKS_cpl_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=200; 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 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - - TASKS_cpl_dcmp=200; 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 - 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_c384=480; THRD_cpl_c384=2 - INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=120 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=120 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=80 - - TASKS_cpl_c192=384; THRD_cpl_c192=1 - INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - - 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 - 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=2 + 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=200; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=50 - - 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_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=200; 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 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - - TASKS_cpl_dcmp=200; 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 - 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_c384=480; THRD_cpl_c384=2 - INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=120 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=560; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=120 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=80 - - TASKS_cpl_c192=288; THRD_cpl_c192=1 - INPES_cpl_c192=4; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - - 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 - 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 - - TASKS_cpl_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 + 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 @@ -334,438 +143,132 @@ 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=192; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=42 - - 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 - TASKS_cpl_c96=240; THRD_cpl_c96=1 - INPES_cpl_c96=4; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=200; 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 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 - OCN_tasks_cpl_thrd=20 - ICE_tasks_cpl_thrd=10 - WAV_tasks_cpl_thrd=12 - - TASKS_cpl_dcmp=200; 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 + # run only in weekly test + 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 + WAV_tasks_cpl_bmrk=100 + WLCLK_cpl_bmrk=120 - TASKS_cpl_mpi=280; 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_c384=1324; THRD_cpl_c384=2 - INPES_cpl_c384=12; JNPES_cpl_c384=16; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=100 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=1808; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=16; JNPES_cpl_bmrk_aero=16; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=100 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=100 - - TASKS_cpl_c192=1324; THRD_cpl_c192=2 + # run only in weekly test + 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 - - 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 + WAV_tasks_cpl_c192=80 + WLCLK_cpl_c192=120 elif [[ $MACHINE_ID = s4.* ]]; then - echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" - exit 1 + TPN=32 - TASKS_dflt=150 ; TPN_dflt=32 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=16 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=16 ; INPES_c384=6 ; JNPES_c384=8 - TASKS_c768=928 ; TPN_c768=8 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=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=1 - TASKS_cpl_atmw=200; TPN_cpl_atmw=16; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=2; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 199" - - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=16; 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" + 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_c96=192; TPN_cpl_c96=32; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=32; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=16; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=32; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=32; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - CHM_cpl_mpi="232 251"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=16; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=2; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - CHM_cpl_c384="0 287"; OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=32; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_aero=560; TPN_cpl_bmrk_aero=16; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 - THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" - CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479"; WPB_cpl_bmrk_aero="480 559" - NPROC_ICE_cpl_bmrk_aero=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=32; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=32; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=32 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=32 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" + 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 + WAV_tasks_cpl_bmrk=80 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 - - TASKS_cpl_atmw=180; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=30 + 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 - TASKS_cpl_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=216; 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=12 - WAV_tasks_cpl_dflt=34 - - TASKS_cpl_thrd=120; 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 - WAV_tasks_cpl_thrd=12 - - TASKS_cpl_dcmp=200; 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 - 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_c384=480; THRD_cpl_c384=2 - INPES_cpl_c384=6; JNPES_cpl_c384=8; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=120 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=576; THRD_cpl_bmrk_aero=2 - INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=120 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=96 - - TASKS_cpl_c192=384; THRD_cpl_c192=1 - INPES_cpl_c192=6; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=60 - ICE_tasks_cpl_c192=24 - - 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 - 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 - - TASKS_cpl_atmw=180; THRD_cpl_atmw=1 - INPES_cpl_atmw=3; JNPES_cpl_atmw=8; WPG_cpl_atmw=6 - WAV_tasks_atmw=30 + 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_c96=192; THRD_cpl_c96=1 - INPES_cpl_c96=3; JNPES_cpl_c96=8; WPG_cpl_c96=6 - OCN_tasks_cpl_c96=30 - ICE_tasks_cpl_c96=12 - - TASKS_cpl_dflt=200; THRD_cpl_dflt=1 - INPES_cpl_dflt=3; JNPES_cpl_dflt=8; WPG_cpl_dflt=6 + 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=120; THRD_cpl_thrd=2 - INPES_cpl_thrd=3; JNPES_cpl_thrd=4; WPG_cpl_thrd=6 + 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=12 + WAV_tasks_cpl_thrd=20 - TASKS_cpl_dcmp=200; THRD_cpl_dcmp=1 - INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6; WPG_cpl_dcmp=6 + 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=280; 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_c384=728; THRD_cpl_c384=3 - INPES_cpl_c384=8; JNPES_cpl_c384=12; WPG_cpl_c384=24 - OCN_tasks_cpl_c384=80 - ICE_tasks_cpl_c384=48 - - TASKS_cpl_bmrk_aero=828; THRD_cpl_bmrk_aero=3 - INPES_cpl_bmrk_aero=8; JNPES_cpl_bmrk_aero=12; WPG_cpl_bmrk_aero=24 - OCN_tasks_cpl_bmrk_aero=80 - ICE_tasks_cpl_bmrk_aero=48 - WAV_tasks_cpl_bmrk_aero=100 - - TASKS_cpl_c192=564; THRD_cpl_c192=2 - INPES_cpl_c192=8; JNPES_cpl_c192=8; WPG_cpl_c192=12 - OCN_tasks_cpl_c192=120 - ICE_tasks_cpl_c192=48 + 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_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 + 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 + WAV_tasks_cpl_bmrk=100 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 - - TASKS_cpl_atmw=192; TPN_cpl_atmw=48; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 191" + 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" - TASKS_cpl_c96=192; TPN_cpl_c96=48; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=200; TPN_cpl_dflt=48; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 169"; IPB_cpl_dflt="170 179"; WPB_cpl_dflt="180 199" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=24; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=48; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=48; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - CHM_cpl_mpi="0 191"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_c384=480; TPN_cpl_c384=24; INPES_cpl_c384=6; JNPES_cpl_c384=8 - THRD_cpl_c384=2; WPG_cpl_c384=24; MPB_cpl_c384="0 287"; APB_cpl_c384="0 311" - CHM_cpl_c384="0 287"; OPB_cpl_c384="312 431"; IPB_cpl_c384="432 479" - NPROC_ICE_cpl_c384=48 - - TASKS_cpl_bmrk=560; TPN_cpl_bmrk=48; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479"; WPB_cpl_bmrk="480 559" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_aero=560; TPN_cpl_bmrk_aero=24; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 - THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" - CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479"; WPB_cpl_bmrk_aero="480 559" - NPROC_ICE_cpl_bmrk_aero=48 - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - CHM_cpl_bmrk_mpi="0 287"; OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=48; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cdeps_100=40; TPN_cdeps_100=48 - MPB_cdeps_100="0 11"; APB_cdeps_100="0 11" - OPB_cdeps_100="12 27"; IPB_cdeps_100="28 39" - - TASKS_cdeps_025=208; TPN_cdeps_025=48 - MPB_cdeps_025="0 39"; APB_cdeps_025="0 39" - OPB_cdeps_025="40 159"; IPB_cdeps_025="160 207" - 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 - - TASKS_cpl_atmw=200; TPN_cpl_atmw=64; INPES_cpl_atmw=3; JNPES_cpl_atmw=8 - THRD_cpl_atmw=1; WPG_cpl_atmw=6; APB_cpl_atmw="0 149"; WPB_cpl_atmw="150 199" + 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" - TASKS_cpl_c96=192; TPN_cpl_c96=64; INPES_cpl_c96=3; JNPES_cpl_c96=8 - THRD_cpl_c96=1; WPG_cpl_c96=6; MPB_cpl_c96="0 143"; APB_cpl_c96="0 149" - CHM_cpl_c96="0 143"; OPB_cpl_c96="150 179"; IPB_cpl_c96="180 191" - NPROC_ICE_cpl_c96=12 - - TASKS_cpl_dflt=384; TPN_cpl_dflt=64; INPES_cpl_dflt=3; JNPES_cpl_dflt=8 - THRD_cpl_dflt=1; WPG_cpl_dflt=6; MPB_cpl_dflt="0 143"; APB_cpl_dflt="0 149" - CHM_cpl_dflt="0 143"; OPB_cpl_dflt="150 179"; IPB_cpl_dflt="180 191"; WPB_cpl_dflt="192 383" - NPROC_ICE_cpl_dflt=10 - - TASKS_cpl_thrd=120; TPN_cpl_thrd=32; INPES_cpl_thrd=3; JNPES_cpl_thrd=4 - THRD_cpl_thrd=2; WPG_cpl_thrd=6; MPB_cpl_thrd="0 71"; APB_cpl_thrd="0 77" - CHM_cpl_thrd="0 71"; OPB_cpl_thrd="78 97"; IPB_cpl_thrd="98 107"; WPB_cpl_thrd="108 119" - NPROC_ICE_cpl_thrd=10 - - TASKS_cpl_dcmp=200; TPN_cpl_dcmp=64; INPES_cpl_dcmp=4; JNPES_cpl_dcmp=6 - THRD_cpl_dcmp=1; WPG_cpl_dcmp=6; MPB_cpl_dcmp="0 143"; APB_cpl_dcmp="0 149" - CHM_cpl_dcmp="0 143"; OPB_cpl_dcmp="150 169"; IPB_cpl_dcmp="170 179"; WPB_cpl_dcmp="180 199" - NPROC_ICE_cpl_dcmp=10 - - TASKS_cpl_mpi=280; TPN_cpl_mpi=64; INPES_cpl_mpi=4; JNPES_cpl_mpi=8 - THRD_cpl_mpi=1; WPG_cpl_mpi=6; MPB_cpl_mpi="0 191"; APB_cpl_mpi="0 197" - CHM_cpl_mpi="0 191"; OPB_cpl_mpi="198 231"; IPB_cpl_mpi="232 251"; WPB_cpl_mpi="252 279" - NPROC_ICE_cpl_mpi=20 - - TASKS_cpl_bmrk=480; TPN_cpl_bmrk=64; INPES_cpl_bmrk=6; JNPES_cpl_bmrk=8 - THRD_cpl_bmrk=1; WPG_cpl_bmrk=24; MPB_cpl_bmrk="0 287"; APB_cpl_bmrk="0 311" - CHM_cpl_bmrk="0 287"; OPB_cpl_bmrk="312 431"; IPB_cpl_bmrk="432 479" - NPROC_ICE_cpl_bmrk=48 - - TASKS_cpl_bmrk_aero=480; TPN_cpl_bmrk_aero=32; INPES_cpl_bmrk_aero=6; JNPES_cpl_bmrk_aero=8 - THRD_cpl_bmrk_aero=2; WPG_cpl_bmrk_aero=24; MPB_cpl_bmrk_aero="0 287"; APB_cpl_bmrk_aero="0 311" - CHM_cpl_bmrk_aero="0 287"; OPB_cpl_bmrk_aero="312 431"; IPB_cpl_bmrk_aero="432 479" - NPROC_ICE_cpl_bmrk_aero=48 - - TASKS_cpl_wwav=640; TPN_cpl_wwav=64; INPES_cpl_wwav=6; JNPES_cpl_wwav=8 - THRD_cpl_wwav=2; WPG_cpl_wwav=24; MPB_cpl_wwav="0 287"; APB_cpl_wwav="0 311" - CHM_cpl_wwav="0 287"; OPB_cpl_wwav="312 431"; IPB_cpl_wwav="432 479"; WPB_cpl_wwav="480 639" - - TASKS_cpl_bmrk_mpi=600; TPN_cpl_bmrk_mpi=40; INPES_cpl_bmrk_mpi=6; JNPES_cpl_bmrk_mpi=8 - THRD_cpl_bmrk_mpi=1; WPG_cpl_bmrk_mpi=24; MPB_cpl_bmrk_mpi="0 287"; APB_cpl_bmrk_mpi="0 311" - OPB_cpl_bmrk_mpi="312 431"; IPB_cpl_bmrk_mpi="432 479"; WPB_cpl_bmrk_mpi="480 599" - NPROC_ICE_cpl_bmrk_mpi=48 - - TASKS_cpl_c192=288; TPN_cpl_c192=64; INPES_cpl_c192=4; JNPES_cpl_c192=8 - THRD_cpl_c192=1; WPG_cpl_c192=12; MPB_cpl_c192="0 191"; APB_cpl_c192="0 203" - CHM_cpl_c192="0 191"; OPB_cpl_c192="204 263"; IPB_cpl_c192="264 287" - NPROC_ICE_cpl_c192=24 - - TASKS_cpl_c384=318; TPN_cpl_c384=32; INPES_cpl_c384=3; JNPES_cpl_c384=8 - THRD_cpl_c384=2; WPG_cpl_c384=6; MPB_cpl_c384="0 143"; APB_cpl_c384="0 149" - CHM_cpl_c384="0 143"; OPB_cpl_c384="150 269"; IPB_cpl_c384="270 317" - NPROC_ICE_cpl_c384=48 - else echo "Unknown MACHINE_ID ${MACHINE_ID}" @@ -774,18 +277,19 @@ else fi WLCLK_dflt=30 -# Longer default walltime on Gaea -if [[ $MACHINE_ID = gaea.* ]]; then - WLCLK_dflt=180 -fi export WLCLK=$WLCLK_dflt export_fv3 () { +# nems.configure defaults +export NEMS_CONFIGURE=nems.configure.atm.IN +export atm_model=fv3 + export FV3=true export S2S=false export HAFS=false +export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false export POSTAPP='global' @@ -794,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 @@ -840,6 +343,7 @@ export DOGP_CLDOPTICS_LUT=.false. export DOGP_LWSCAT=.false. export USE_LW_JACOBIAN=.false. export DAMP_LW_FLUXADJ=.false. +export RRTMGP_LW_PHYS_BLKSZ=2 export ICLOUD=0 export IAER=111 export ICLIQ_SW=1 @@ -853,7 +357,7 @@ export NWAT=6 # GFDL MP export DNATS=1 export DO_SAT_ADJ=.true. -export LHEATSTRG=.false. +export LHEATSTRG=.true. export LSEASPRAY=.false. export LGFDLMPRAD=.false. export EFFR_IN=.false. @@ -873,6 +377,7 @@ export NSSL_INVERTCCN=.true. # Smoke export RRFS_SMOKE=.false. +export RRFS_RESTART=NO export SEAS_OPT=2 # GWD @@ -927,9 +432,10 @@ export HWRF_SAMFDEEP=.false. export RAS=.false. export RANDOM_CLDS=.false. export CNVCLD=.true. +export PROGSIGMA=.false. # Aerosol convective scavenging -export FSCAV_AERO="'*:0.0'" +export FSCAV_AERO='"*:0.3","so2:0.0","msa:0.0","dms:0.0","nh3:0.4","nh4:0.6","bc1:0.6","bc2:0.6","oc1:0.4","oc2:0.4","dust1:0.6","dust2:0.6","dust3:0.6","dust4:0.6","dust5:0.6","seas1:0.5","seas2:0.5","seas3:0.5","seas4:0.5","seas5:0.5"' # SFC export DO_MYJSFC=.false. @@ -957,6 +463,8 @@ export CPLFLX=.false. export CPLICE=.false. export CPLWAV=.false. export CPLWAV2ATM=.false. +export CPLLND=.false. +export USE_MED_FLUX=.false. export DAYS=1 export NPX=97 export NPY=97 @@ -994,7 +502,7 @@ export FHROT=0 export LDIAG3D=.false. export QDIAG3D=.false. export PRINT_DIFF_PGR=.false. -export MAX_OUTPUT_FIELDS=300 +export MAX_OUTPUT_FIELDS=310 # Stochastic physics export STOCHINI=.false. @@ -1055,6 +563,10 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export RST_END=$RUN_END export RST_2_END=$RUN_END +# ATMW +export MULTIGRID=true +# ATMA +export AOD_FRQ=060000 # Regional export WRITE_RESTART_WITH_BCS=.false. @@ -1071,10 +583,11 @@ export_cpl () export FV3=true export S2S=true export HAFS=false +export AQM=false export DATM_CDEPS=false export DOCN_CDEPS=false -export FV3BMIC='gfs_p8c' +export FV3BMIC='p8c' export SYEAR=2021 export SMONTH=03 @@ -1102,21 +615,24 @@ 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 export WRTTASK_PER_GROUP=$WPG_cpl_dflt +OCN_tasks=$OCN_tasks_cpl_dflt +ICE_tasks=$ICE_tasks_cpl_dflt +WAV_tasks=$WAV_tasks_cpl_dflt # component and coupling timesteps export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=1800 export DT_THERM_MOM6=3600 # nems.configure defaults -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN +export NEMS_CONFIGURE=nems.configure.cpld.IN export med_model=cmeps export atm_model=fv3 export chm_model=gocart @@ -1136,13 +652,14 @@ export RUNTYPE=startup export CICERUNTYPE=initial export eps_imesh=1.0e-1 export ATMTILESIZE=`expr $NPX - 1` +export MULTIGRID=false # FV3 defaults export FRAC_GRID=.true. export CCPP_SUITE=FV3_GFS_v17_coupled_p8 export INPUT_NML=cpld_control.nml.IN -export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_p7.2_template +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export DIAG_TABLE=diag_table_p8_template export DIAG_TABLE_ADDITIONAL='' @@ -1176,9 +693,9 @@ export DZ_MIN=6 # P7 Merra2 Aerosols & NSST export USE_MERRA2=.true. export IAER=1011 -export NSTF_NAME=2,1,0,0,0 +export NSTF_NAME=2,0,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -1186,17 +703,17 @@ export GWD_OPT=2 export KNOB_UGWP_NSLOPE=1 export DO_GSL_DRAG_LS_BL=.true. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. #P8 +export DO_GSL_DRAG_TOFD=.false. export CDMBWD=${CDMBWD_c96} # P8 RRTMGP export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true +export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. #P8 UGWD @@ -1248,12 +765,14 @@ export DO_SAT_ADJ=.false. # P7 default mushy thermo export KTHERM=2 export TFREEZE_OPTION=mushy - export CPLFLX=.true. export CPLICE=.true. export CPL=.true. export CPLWAV=.true. export CPLWAV2ATM=.true. +export USE_MED_FLUX=.false. +export CPLCHM=.true. +export CPLLND=.false. # for FV3: default values will be changed if doing a warm-warm restart export WARM_START=.false. @@ -1285,13 +804,15 @@ export EPBL=-999. # CICE6 defaults; 1 degree export CICE_DECOMP=slenderX2 -export NPROC_ICE=${ICE_tasks_cpl_dflt} +export NPROC_ICE=$ICE_tasks # SlenderX2 export CICE_DECOMP=slenderX2 export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export WAVDOMAIN=mx${OCNRES} +export MESH_WAV=mesh.${WAVDOMAIN}.nc export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc export RUNID=unknown @@ -1305,9 +826,21 @@ export RESTART_EXT=.false. export FRAZIL_FWSALT=.true. # default to write CICE average history files export CICE_HIST_AVG=.true. +# default CICE B-grid, ATM and OCN are provided by cap on A grid +export GRIDATM=A +export GRIDOCN=A +export GRIDICE=B #wave -export WW3GRIDLINE="'glo_1deg' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export INPUT_CURFLD='C F Currents' +export INPUT_ICEFLD='C F Ice concentrations' +export WW3RSTDTHR=3 +export WW3OUTDTHR=3 +export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" +export DTFLD="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export DTPNT="$(printf "%02d" $(( ${WW3OUTDTHR}*3600 )))" +export WW3GRIDLINE="'ww3' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" +export UNIPOINTS='points' export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" export OUT_BEG=$RUN_BEG @@ -1316,10 +849,11 @@ export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG export RST_END=$RUN_END export RST_2_END=$RUN_END +# gocart inst_aod output; uses AERO_HIST.rc.IN from parm/gocart directory +export AOD_FRQ=060000 # checkpoint restarts export RESTART_FILE_PREFIX='' -export RESTART_FILE_SUFFIX_HRS='' export RESTART_FILE_SUFFIX_SECS='' export RT35D='' } @@ -1333,9 +867,11 @@ export_datm_cdeps () export FV3=false export S2S=false export HAFS=false +export AQM=false export DATM_CDEPS=true export DOCN_CDEPS=false export CPLWAV=.false. +export CPLCHM=.false. export DAYS=1 export FHMAX=24 export FHROT=0 @@ -1362,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 @@ -1445,6 +980,9 @@ export RESTART_EXT=.false. export FRAZIL_FWSALT=.true. # default to write CICE average history files export CICE_HIST_AVG=.true. +export GRIDATM=A +export GRIDOCN=A +export GRIDICE=B # default non-mushy thermo export KTHERM=1 export TFREEZE_OPTION=linear_salt @@ -1456,11 +994,11 @@ export_hafs_datm_cdeps () export FV3=false export S2S=false export HAFS=true +export AQM=false 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 @@ -1473,10 +1011,10 @@ export_hafs_docn_cdeps () export FV3=true export S2S=false export HAFS=true +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 @@ -1490,11 +1028,11 @@ export_hafs_regional () export FV3=true export S2S=false export HAFS=true +export AQM=false 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 @@ -1533,6 +1071,9 @@ export LAT2=55.0 export DLON=0.03 export DLAT=0.03 +# shel.inp +export INPUT_CURFLD='C F Currents' +export INPUT_ICEFLD='F F Ice concentrations' # input.nml export CPL_IMP_MRG=.true. @@ -1546,6 +1087,8 @@ export RESTART_N=${FHMAX} export CPLMODE=hafs export RUNTYPE=startup export USE_COLDSTART=false +export MESH_WAV=mesh.hafs.nc +export MULTIGRID=false } export_hafs () @@ -1553,11 +1096,11 @@ export_hafs () export FV3=true export S2S=false export HAFS=true +export AQM=false 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/detect_machine.sh b/tests/detect_machine.sh index 8a94b7e57c..2e1eb624e1 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -4,32 +4,28 @@ case $(hostname -f) in - llogin1) MACHINE_ID=wcoss_cray ;; ### luna - llogin2) MACHINE_ID=wcoss_cray ;; ### luna - llogin3) MACHINE_ID=wcoss_cray ;; ### luna - - slogin1) MACHINE_ID=wcoss_cray ;; ### surge - slogin2) MACHINE_ID=wcoss_cray ;; ### surge - slogin3) MACHINE_ID=wcoss_cray ;; ### surge - - v71a1.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - v71a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - v71a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - v72a1.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - v72a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - v72a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### venus - - m71a1.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - m71a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - m71a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - m72a1.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - m72a2.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - m72a3.ncep.noaa.gov) MACHINE_ID=wcoss_dell_p3 ;; ### mars - - alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### acorn - alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### acorn - adecflow01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### acorn - adecflow02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### acorn + clogin01.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin02.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin03.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin04.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin05.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin06.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin07.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin08.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + clogin09.cactus.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### cactus + + dlogin01.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin02.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin03.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin04.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin05.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin06.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin07.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin08.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + dlogin09.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood + + alogin01.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn + alogin02.acorn.wcoss2.ncep.noaa.gov) MACHINE_ID=acorn ;; ### acorn gaea9) MACHINE_ID=gaea ;; ### gaea9 gaea10) MACHINE_ID=gaea ;; ### gaea10 @@ -112,7 +108,4 @@ esac MACHINE_ID=${RT_MACHINE:-${MACHINE_ID}} # Append compiler -if [ $MACHINE_ID = orion ] || [ $MACHINE_ID = hera ] || [ $MACHINE_ID = cheyenne ] || [ $MACHINE_ID = jet ] || \ - [ $MACHINE_ID = gaea ] || [ $MACHINE_ID = stampede ] || [ $MACHINE_ID = s4 ] || [ $MACHINE_ID = expanse ] ; then - MACHINE_ID=${MACHINE_ID}.${RT_COMPILER} -fi +MACHINE_ID=${MACHINE_ID}.${RT_COMPILER} diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_cray b/tests/fv3_conf/compile_bsub.IN_wcoss_cray deleted file mode 100644 index 29f7f4013c..0000000000 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_cray +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -#BSUB -oo out -#BSUB -eo err -#BSUB -J @[JBNME] -#BSUB -W 00:30 -#BSUB -q @[QUEUE] -#BSUB -P GFS-DEV -#BSUB -extsched "CRAYLINUX[]" -R "1*{select[craylinux && !vnode]} + 24*{select[craylinux && vnode] span [ptile=24]}" -#BSUB -M 500 - -set -eux - -set +x -module load alps -module list -set -x - -echo -n " $( date +%s )," > job_timestamp.txt -echo "Compile started: " `date` - -aprun -n 1 -j 1 -N 1 -d 24 @[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] - -echo "Compile ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 deleted file mode 100644 index 1bb4d0a6dc..0000000000 --- a/tests/fv3_conf/compile_bsub.IN_wcoss_dell_p3 +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -#BSUB -oo out -#BSUB -eo err -#BSUB -J @[JBNME] -#BSUB -W 01:00 -#BSUB -q @[QUEUE] -#BSUB -P GFS-DEV -#BSUB -n 1 -#BSUB -R affinity[core(1)] -#BSUB -R rusage[mem=8192] - -set -eux - -echo -n " $( date +%s )," > job_timestamp.txt -echo "Compile started: " `date` - -@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_NR] - -echo "Compile ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/compile_qsub.IN_wcoss2 b/tests/fv3_conf/compile_qsub.IN_wcoss2 index 5b10862bdd..ffa08d4554 100644 --- a/tests/fv3_conf/compile_qsub.IN_wcoss2 +++ b/tests/fv3_conf/compile_qsub.IN_wcoss2 @@ -5,7 +5,7 @@ #PBS -N @[JBNME] #PBS -A @[ACCNR] #PBS -q @[QUEUE] -#PBS -l select=1:ncpus=8:mpiprocs=1 +#PBS -l select=1:ncpus=8:mpiprocs=1:mem=32G #PBS -l walltime=00:30:00 set -eux diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index 975920ce28..2eb2430dac 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -74,12 +74,16 @@ else fi if [ $TILEDFIX = .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + if [ $CPLLND == .true. ]; then + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc INPUT/. + else + cp @[INPUTDATA_ROOT]/FV3_fix_tiled/@[ATMRES]/@[ATMRES]*.nc . + fi cp @[INPUTDATA_ROOT]/FV3_fix/global_glacier.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/global_maxice.2x2.grb . cp @[INPUTDATA_ROOT]/FV3_fix/RTGSST.1982.2012.monthly.clim.grb . cp @[INPUTDATA_ROOT]/FV3_fix/global_snoclim.1.875.grb . - cp @[INPUTDATA_ROOT]/FV3_fix/CFSR.SEAICE.1982.2012.monthly.clim.grb . + cp @[INPUTDATA_ROOT]/FV3_fix/IMS-NIC.blended.ice.monthly.clim.grb . cp @[INPUTDATA_ROOT]/${inputdir}/@[FNSMCC] . cp @[INPUTDATA_ROOT]/${inputdir}/@[FNMSKH_control] . else @@ -87,6 +91,7 @@ else fi if [ $CPLWAV = .true. ]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.pointsatmw mod_def.points cp @[INPUTDATA_ROOT_WW3]/mod_def.* . cp @[INPUTDATA_ROOT_WW3]/rmp_src* . fi @@ -116,6 +121,14 @@ if [ $USE_MERRA2 = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat fi +#rad_c_gocart +if [ $IAER = 2011 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat + cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat +fi #ugwpv1 if [ $DO_UGWP_V1 = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc @@ -132,5 +145,5 @@ fi #prognostic aerosols if [ $CPLCHM = .true. ]; then cp ${PATHRT}/parm/gocart/*.rc . - ln -sf @[INPUTDATA_ROOT]/GOCART/ExtData . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index f5a8b0d1ff..422b3e1295 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -13,9 +13,15 @@ if [[ $BMIC == .true. ]]; then MOM_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/mom6_da ICE_IC=@[INPUTDATA_ROOT_BMIC]/${SYEAR}${SMONTH}${SDAY}${SHOUR}/cpc else - FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} - MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC - ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} + if [[ $ATMRES == C48 ]]; then + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} + MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} + ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR} + else + FV3_IC=@[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127_mx${OCNRES} + MOM_IC=@[INPUTDATA_ROOT]/MOM6_IC + ICE_IC=@[INPUTDATA_ROOT]/CICE_IC/${OCNRES} + fi fi # FV3 fixed input @@ -44,7 +50,15 @@ cp @[INPUTDATA_ROOT]/CICE_FIX/@[OCNRES]/mesh.mx@[OCNRES].nc . # WW3 fix/input if [[ $CPLWAV == .true. ]]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.* . + cp @[INPUTDATA_ROOT_WW3]/mod_def.points . + if [[ $WAVDOMAIN == mx025 ]]; then + cp @[INPUTDATA_ROOT_WW3]/mod_def.@[WAVDOMAIN]lite mod_def.ww3 + else + cp @[INPUTDATA_ROOT_WW3]/mod_def.@[WAVDOMAIN] mod_def.ww3 + fi + if [[ ${WAVDOMAIN:0:2} != mx ]]; then + cp @[INPUTDATA_ROOT_WW3]/@[MESH_WAV] . + fi fi #rrtmgp @@ -64,43 +78,68 @@ if [ $WARM_START = .false. ]; then cp ${MOM_IC}/MOM*.nc ./INPUT cp ${ICE_IC}/cice5_model_@[ICERES].res_${SYEAR}${SMONTH}${SDAY}00.nc ./cice_model.res.nc else - cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc - cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + if [[ $ATMRES == C48 ]]; then + cp ${MOM_IC}/MOM.res.nc ./INPUT + cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_* ./cice_model.res.nc + else + cp ${MOM_IC}/MOM6_IC_TS_${SYEAR}${SMONTH}${SDAY}${SHOUR}.nc ./INPUT/MOM6_IC_TS.nc + cp ${ICE_IC}/cice_model_@[ICERES].cpc.res_${SYEAR}${SMONTH}${SDAY}.nc ./cice_model.res.nc + fi fi -#Restart else - if [[ ${OPNREQ_TEST} == true ]]; then - SUFFIX=${BL_SUFFIX} - fi +#Restart from checkpoint restart + if [[ "Q${DEP_RUN:-}" != Q ]] ; then + if [[ ${OPNREQ_TEST} == true ]]; then + SUFFIX=${BL_SUFFIX} + fi + + # Restart files + cp -r ../${DEP_RUN}${SUFFIX}/INPUT/* ./INPUT + cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + mv -f $RFILE INPUT/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + done + + #if not mx025, then mom6 restart is a single file + if [[ $OCNRES == 025 ]]; then + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_1.nc ./INPUT/MOM.res_1.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_2.nc ./INPUT/MOM.res_2.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res_3.nc ./INPUT/MOM.res_3.nc + else + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.MOM.res.nc ./INPUT/MOM.res.nc + fi + + # CMEPS restart and pointer files + RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . + ls -1 ${RFILE}>rpointer.cpl + + # CMEPS/CCPP restart file + if [[ $CPLMODE =~ 'nems_frac_aoflux' ]]; then + RFILE_CCPP=ufs.cpld.cpl.ccpp.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE_CCPP} . + fi + + # CICE restart and pointer files + RFILE=iced.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} ./INPUT + ls -1 ./INPUT/${RFILE}>ice.restart_file + + # WAVE restart file + if [[ $CPLWAV == .true. ]]; then + cp ../${DEP_RUN}${SUFFIX}/${RESTART_FILE_PREFIX}.restart.ww3 ./restart.ww3 + fi - # Restart files - cp -r ../${DEP_RUN}${SUFFIX}/INPUT/* ./INPUT - cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT - for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - mv -f $RFILE INPUT/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - done - - #if not mx025, then mom6 restart is a single file - if [[ $OCNRES == 025 ]]; then - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_1.nc ./INPUT/MOM.res_1.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_2.nc ./INPUT/MOM.res_2.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00_3.nc ./INPUT/MOM.res_3.nc else - cp ../${DEP_RUN}${SUFFIX}/RESTART/MOM.res.${RESTART_FILE_SUFFIX_HRS}-00-00.nc ./INPUT/MOM.res.nc + # C48mx500 warm start from ICs + cp ${FV3_IC}/*.nc ./INPUT + cp ${MOM_IC}/MOM.res.nc ./INPUT + cp ${ICE_IC}/* . + cp @[INPUTDATA_ROOT]/CMEPS_IC/${ATMRES}mx${OCNRES}/${SYEAR}${SMONTH}${SDAY}${SHOUR}/* . fi - - # CMEPS restart and pointer files - RFILE=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . - ls -1 ${RFILE}>rpointer.cpl - - # CICE restart and pointer files - RFILE=iced.${RESTART_FILE_SUFFIX_SECS}.nc - cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} ./INPUT - ls -1 ./INPUT/${RFILE}>ice.restart_file fi #inline post @@ -127,15 +166,14 @@ cp @[INPUTDATA_ROOT]/FV3_input_data/ugwp_c384_tau.nc ./ugwp_limb_tau.nc cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ls* ./INPUT cp @[INPUTDATA_ROOT]/${FV3_DIR}/INPUT_L127/oro_data_ss* ./INPUT -if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat freezeH2O.dat +if [ $IMP_PHYSICS = 8 ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN CCN_ACTIVATE.BIN + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat freezeH2O.dat cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qg.dat qr_acr_qg.dat - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat qr_acr_qs.dat -fi + cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qs.dat qr_acr_qs.dat +fi #prognostic aerosols if [ $CPLCHM = .true. ]; then - cp @[INPUTDATA_ROOT]/GOCART/p8/rc/*.rc . - ln -sf @[INPUTDATA_ROOT]/GOCART/p8/ExtData . + ln -sf @[INPUTDATA_ROOT]/GOCART/p8c_5d/ExtData . fi diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index 027cb02034..0027c40ffa 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -28,7 +28,7 @@ if [ $WARM_START = .false. ]; then fi else # warm start - cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/MOM.res.2011-10-01-12*.nc ./INPUT/MOM.res.nc + cp ../${DEP_RUN}${RT_SUFFIX}/RESTART/20111001.120000.MOM.res.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files RFILE="DATM_${DATM_SRC}.cpl.r.2011-10-01-43200.nc" diff --git a/tests/fv3_conf/fv3_aqm.IN b/tests/fv3_conf/fv3_aqm.IN new file mode 100644 index 0000000000..417f195fa0 --- /dev/null +++ b/tests/fv3_conf/fv3_aqm.IN @@ -0,0 +1,35 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART + +cp -r @[INPUTDATA_ROOT]/AQM/INPUT/* ./INPUT/ +cp -r @[INPUTDATA_ROOT]/AQM/NEXUS . + +cp @[INPUTDATA_ROOT]/AQM/fix/C775.facsf.tile7.halo0.nc C775.facsf.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.facsf.tile7.halo4.nc C775.facsf.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.maximum_snow_albedo.tile7.halo0.nc C775.maximum_snow_albedo.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.maximum_snow_albedo.tile7.halo4.nc C775.maximum_snow_albedo.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.slope_type.tile7.halo0.nc C775.slope_type.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.slope_type.tile7.halo4.nc C775.slope_type.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.snowfree_albedo.tile7.halo0.nc C775.snowfree_albedo.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.snowfree_albedo.tile7.halo4.nc C775.snowfree_albedo.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.soil_type.tile7.halo0.nc C775.soil_type.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.soil_type.tile7.halo4.nc C775.soil_type.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.substrate_temperature.tile7.halo0.nc C775.substrate_temperature.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.substrate_temperature.tile7.halo4.nc C775.substrate_temperature.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.vegetation_greenness.tile7.halo0.nc C775.vegetation_greenness.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.vegetation_greenness.tile7.halo4.nc C775.vegetation_greenness.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.vegetation_type.tile7.halo0.nc C775.vegetation_type.tile1.nc +cp @[INPUTDATA_ROOT]/AQM/fix/C775.vegetation_type.tile7.halo4.nc C775.vegetation_type.tile7.nc +cp @[INPUTDATA_ROOT]/AQM/fix/AE_cb6r3_ae6_aq.nml . +cp @[INPUTDATA_ROOT]/AQM/fix/BEIS_RRFScmaq_C775.ncf . +cp @[INPUTDATA_ROOT]/AQM/fix/CSQY_DATA_cb6r3_ae6_aq . +cp @[INPUTDATA_ROOT]/AQM/fix/GC_cb6r3_ae6_aq.nml . +cp @[INPUTDATA_ROOT]/AQM/fix/global_soilmgldas.t126.384.190.grb . +cp @[INPUTDATA_ROOT]/AQM/fix/gspro_biogenics_1mar2017.txt . +cp @[INPUTDATA_ROOT]/AQM/fix/Hourly_Emissions_regrid_rrfs_13km_20190801_t12z_h72.nc . +cp @[INPUTDATA_ROOT]/AQM/fix/NR_cb6r3_ae6_aq.nml . +cp @[INPUTDATA_ROOT]/AQM/fix/omi_cmaq_2015_361X179.dat . +cp @[INPUTDATA_ROOT]/AQM/fix/PHOT_OPTICS.dat . +cp @[INPUTDATA_ROOT]/AQM/fix/Species_Table_TR_0.nml . +cp @[INPUTDATA_ROOT]/AQM/fix/pt-2019080112.nc . +cp @[INPUTDATA_ROOT]/AQM/fix/FENGSHA_p8_10km_inputs_CONUS_775.nc . diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray deleted file mode 100644 index 458e3fbb79..0000000000 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -#BSUB -oo out -#BSUB -eo err -#BSUB -J @[JBNME] -#BSUB -W 00:@[WLCLK] -#BSUB -q @[QUEUE] -#BSUB -P GFS-DEV -#BSUB -extsched "CRAYLINUX[]" -R "1*{select[craylinux && !vnode]} + @[TASKS]*{select[craylinux && vnode] span [ptile=@[TPN]]}" -#BSUB -M 500 - -set -eux -echo -n " $( date +%s )," > job_timestamp.txt - -set +x -MACHINE_ID=wcoss_cray -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list -set -x - -echo "Model started: " `date` - -export MKL_CBWR=AVX2 -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=1024m -export KMP_AFFINITY=disabled - -aprun -j 1 -n @[TASKS] -N @[TPN] -d @[THRD] -cc depth ./fv3.exe - -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 deleted file mode 100644 index d50fd44acc..0000000000 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -#BSUB -oo out -#BSUB -eo err -#BSUB -J @[JBNME] -#BSUB -W 00:@[WLCLK] -#BSUB -q @[QUEUE] -#BSUB -P GFS-DEV -#BSUB -n @[TASKS] -#BSUB -R span[ptile=@[TPN]] -#BSUB -R affinity[core(@[THRD])] - -set -eux -echo -n " $( date +%s )," > job_timestamp.txt - -set +x -MACHINE_ID=wcoss_dell_p3 -source ./module-setup.sh -module use $( pwd -P ) -module load modules.fv3 -module list -set -x - -echo "Model started: " `date` - -export OMP_NUM_THREADS=@[THRD] -export OMP_STACKSIZE=512M -export I_MPI_DEBUG=4 - -mpirun -l -n @[TASKS] ./fv3.exe - -echo "Model ended: " `date` -echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne index d519c37122..b87293ce8a 100644 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -4,7 +4,7 @@ #PBS -N @[JBNME] #PBS -A @[ACCNR] #PBS -q @[QUEUE] -#PBS -l select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN] +#PBS -l select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN]:ompthreads=@[THRD] #PBS -l walltime=00:@[WLCLK]:00 set -eux @@ -13,7 +13,11 @@ echo -n " $( date +%s )," > job_timestamp.txt set +x MACHINE_ID=cheyenne source ./module-setup.sh -module use $( pwd -P ) +if [[ ! -d modulefiles ]]; then + mkdir modulefiles + mv *.lua modulefiles +fi +module use modulefiles module load modules.fv3 module list set -x @@ -24,11 +28,13 @@ export MPI_TYPE_DEPTH=20 export OMP_STACKSIZE=512M export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -mpiexec_mpt -p %g: -np @[TASKS] ./fv3.exe +mpiexec_mpt -p %g: -np @[TASKS] omplace ./fv3.exe echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index 550dd8804e..f3eb54297e 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -5,7 +5,8 @@ #PBS -N @[JBNME] #PBS -A @[ACCNR] #PBS -q @[QUEUE] -#PBS -l place=vscatter,select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN] +#PBS -l place=vscatter,select=@[NODES]:ncpus=@[TPN]:mpiprocs=@[TPN]:mem=500G +#PBS -l place=excl #PBS -l walltime=00:@[WLCLK]:00 set -eux @@ -13,10 +14,12 @@ echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR +set +x module use $( pwd -P ) module load modules.fv3 module load cray-pals module list +set -x echo "Model started: " `date` @@ -24,6 +27,8 @@ export OMP_STACKSIZE=512M export OMP_NUM_THREADS=@[THRD] export OMP_PLACES=cores export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" mpiexec -n @[TASKS] -ppn @[TPN] -depth @[THRD] ./fv3.exe diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 2d540e00e5..92c234edfb 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -26,6 +26,8 @@ echo "Model started: " `date` export OMP_NUM_THREADS=@[THRD] export OMP_STACKSIZE=1024M export NC_BLKSZ=1M +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index effafccb4e..06ba96a8dd 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -27,6 +27,8 @@ export MPI_TYPE_DEPTH=20 export OMP_STACKSIZE=512M export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" export PSM_RANKS_PER_CONTEXT=4 export PSM_SHAREDCONTEXTS=1 diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index 1358f3d613..0790b5bf99 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -30,11 +30,13 @@ export OMP_NUM_THREADS=@[THRD] export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 export PSM_RANKS_PER_CONTEXT=4 export PSM_SHAREDCONTEXTS=1 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 -srun --label -n @[TASKS] ./fv3.exe +srun --label -n @[TASKS] --cpus-per-task=@[THRD] ./fv3.exe echo "Model ended: " `date` echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index eaa7e287ed..a32e3836b4 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -33,6 +33,8 @@ export OMP_NUM_THREADS=@[THRD] #export ESMF_RUNTIME_COMPLIANCECHECK=OFF:depth=4 #export PSM_RANKS_PER_CONTEXT=4 #export PSM_SHAREDCONTEXTS=1 +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" # Avoid job errors because of filesystem synchronization delays sync && sleep 1 diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN deleted file mode 100644 index 26bf9cc1da..0000000000 --- a/tests/fv3_conf/gfdlmp_run.IN +++ /dev/null @@ -1,39 +0,0 @@ -rm -fr INPUT RESTART - -OPNREQ_TEST=${OPNREQ_TEST:-false} -if [ $WARM_START = .false. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . - mkdir RESTART -else - mkdir INPUT RESTART - - if [[ ${OPNREQ_TEST} == false ]]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - else - cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${TEST_NAME}${BL_SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - cp $RFILE INPUT/${RFILE_NEW} - done - fi -fi - -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . - -if [ $CPLWAV = .true. ]; then - cp @[INPUTDATA_ROOT_WW3]/mod_def.* . -fi - -if [[ $POSTAPP = 'global' ]]; then - cp ${PATHRT}/parm/post_itag itag - cp ${PATHRT}/parm/postxconfig-NT.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT_FH00.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -fi diff --git a/tests/fv3_conf/gsd_run.IN b/tests/fv3_conf/gsd_run.IN deleted file mode 100644 index 6ce5fb1bf2..0000000000 --- a/tests/fv3_conf/gsd_run.IN +++ /dev/null @@ -1,41 +0,0 @@ -rm -fr INPUT RESTART -mkdir INPUT RESTART - -OPNREQ_TEST=${OPNREQ_TEST:-false} -SUFFIX=${RT_SUFFIX} -if [ $WARM_START = .false. ]; then - cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/* INPUT/ -else - if [[ ${OPNREQ_TEST} == true ]]; then - SUFFIX=${BL_SUFFIX} - fi - - cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/grid_spec*.nc INPUT/ - cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/C96_grid*.nc INPUT/ - cp -r @[INPUTDATA_ROOT]/FV3_input_data_gsd/FV3_input_data_C96_with_aerosols/oro_data*.nc INPUT/ - #cp ../fv3_gsd_coldstart${RT_SUFFIX}/RESTART/* INPUT/ - cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT - for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do - [ -e $RFILE ] || exit 1 - RFILE_OLD=$(basename $RFILE) - mv -f $RFILE INPUT/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" - done -fi - -cp @[INPUTDATA_ROOT]/FV3_input_data/*grb . - -# Thompson MP lookup tables - copy standard and SIONlib tables of precomputed tables -if [ $IMP_PHYSICS = 8 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qsV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/qr_acr_qgV2.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/freezeH2O.dat . - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . -fi - -if [ $GWD_OPT = 3 ] || [ $GWD_OPT = 33 ] || [ $GWD_OPT = 2 ] || [ $GWD_OPT = 22 ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/drag_suite/* INPUT/ -fi - -if [ $DO_RRTMGP = .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . -fi diff --git a/tests/fv3_conf/hafs_fv3_run.IN b/tests/fv3_conf/hafs_fv3_run.IN index 88f258098e..cab28dd340 100644 --- a/tests/fv3_conf/hafs_fv3_run.IN +++ b/tests/fv3_conf/hafs_fv3_run.IN @@ -16,6 +16,7 @@ if [ ${CNTL_DIR} = "hafs_regional_atm" ] || \ elif [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_specified_moving_1nest_atm" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp -r @[INPUTDATA_ROOT]/FV3_hafs_input_data/INPUT_hafs_regional_storm_following_1nest_atm/* ./INPUT/ elif [ ${CNTL_DIR} = "hafs_regional_1nest_atm" ] || \ diff --git a/tests/fv3_conf/hafs_ww3_run.IN b/tests/fv3_conf/hafs_ww3_run.IN index ef153bc3d1..3270300212 100644 --- a/tests/fv3_conf/hafs_ww3_run.IN +++ b/tests/fv3_conf/hafs_ww3_run.IN @@ -4,6 +4,7 @@ if [ ${CNTL_DIR} = "hafs_regional_atm_wav" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.natl_6m ./mod_def.ww3 cp @[INPUTDATA_ROOT_WW3]/mod_def.points ./mod_def.points + cp @[INPUTDATA_ROOT_WW3]/mesh.hafs.nc ./mesh.hafs.nc if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then cp @[INPUTDATA_ROOT]/FV3_hafs_input_data/WW3_hafs_regional_input_data/wind.natl_6m_2020082512 ./wind.ww3 else diff --git a/tests/fv3_conf/hycom_hat10_run.IN b/tests/fv3_conf/hycom_hat10_run.IN index 23000687b4..740e65bbfd 100644 --- a/tests/fv3_conf/hycom_hat10_run.IN +++ b/tests/fv3_conf/hycom_hat10_run.IN @@ -1,5 +1,6 @@ if [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn" ] || \ + [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_debug" ] || \ [ ${CNTL_DIR} = "hafs_regional_storm_following_1nest_atm_ocn_wav" ]; then rsync -arv @[INPUTDATA_ROOT]/FV3_hafs_input_data/HYCOM_hafs_regional_input_data/. ./ else diff --git a/tests/fv3_conf/lnd_datm_cdeps_gswp.IN b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN new file mode 100644 index 0000000000..02dc5592dc --- /dev/null +++ b/tests/fv3_conf/lnd_datm_cdeps_gswp.IN @@ -0,0 +1,22 @@ +mkdir -p RESTART INPUT_DATM + +cd INPUT_DATM +rsync -arv @[INPUTDATA_ROOT]/DATM_GSWP3_input_data/. . +cd - + +SUFFIX=${RT_SUFFIX} +# restart +if [ $WARM_START = .true. ]; then + # NoahMP restart files + cp ../${DEP_RUN}${SUFFIX}/ufs.cpld.lnd.out.${RESTART_FILE_SUFFIX_SECS}.tile*.nc RESTART/. + + # CMEPS restart and pointer files + RFILE1=ufs.cpld.cpl.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE1} RESTART/. + ls -1 "RESTART/${RFILE1}">rpointer.cpl + + # CDEPS restart and pointer files + RFILE2=ufs.cpld.datm.r.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE2} RESTART/. + ls -1 "RESTART/${RFILE2}">rpointer.atm +fi diff --git a/tests/fv3_conf/noahmp_run.IN b/tests/fv3_conf/noahmp_run.IN new file mode 100644 index 0000000000..00efc6e370 --- /dev/null +++ b/tests/fv3_conf/noahmp_run.IN @@ -0,0 +1,25 @@ +mkdir -p INPUT RESTART + +cd INPUT +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile1.nc C96.initial.tile1.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile2.nc C96.initial.tile2.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile3.nc C96.initial.tile3.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile4.nc C96.initial.tile4.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile5.nc C96.initial.tile5.nc +rsync -arv @[INPUTDATA_ROOT]/NOAHMP_IC/ufs-land_C96_init_fields.tile6.nc C96.initial.tile6.nc + +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.maximum_snow_albedo.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.slope_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.soil_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.substrate_temperature.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_greenness.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/C96.vegetation_type.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile1.nc oro_data.tile1.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile2.nc oro_data.tile2.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile3.nc oro_data.tile3.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile4.nc oro_data.tile4.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile5.nc oro_data.tile5.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_fix_tiled/C96/oro_C96.mx100.tile6.nc oro_data.tile6.nc +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/C96_grid.tile*.nc . +rsync -arv @[INPUTDATA_ROOT]/FV3_input_data/INPUT/grid_spec.nc C96_mosaic.nc +cd - diff --git a/tests/fv3_conf/regional_3km_run.IN b/tests/fv3_conf/regional_3km_run.IN deleted file mode 100644 index 2de7228ee2..0000000000 --- a/tests/fv3_conf/regional_3km_run.IN +++ /dev/null @@ -1,46 +0,0 @@ -rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . - -rm -rf INPUT RESTART -mkdir INPUT RESTART - -rsync -arv @[INPUTDATA_ROOT]/fv3_regional_3km_small/INPUT/. INPUT/. - -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m02.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m03.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m04.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m05.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m06.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m07.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m08.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m09.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m10.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m11.nc -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m12.nc - -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat -cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat - -if [ $WARM_START = .true. ]; then - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.coupler.res INPUT/coupler.res - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.phy_data.nc INPUT/phy_data.nc - cp ../regional_3km${RT_SUFFIX}/RESTART/20220218.120000.sfc_data.nc INPUT/sfc_data.nc -fi -if [ $WRITE_RESTART_WITH_BCS = .true. ]; then - cp @[INPUTDATA_ROOT]/fv3_regional_3km/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc - cp @[INPUTDATA_ROOT]/fv3_regional_3km/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc -fi - -if [[ $POSTAPP = 'lam' ]]; then - cp ${PATHRT}/parm/post_itag_fv3lam itag - cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt - cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt - cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new -fi diff --git a/tests/fv3_conf/regional_rrfs_a_run.IN b/tests/fv3_conf/regional_rrfs_a_run.IN new file mode 100644 index 0000000000..d41ea9cee1 --- /dev/null +++ b/tests/fv3_conf/regional_rrfs_a_run.IN @@ -0,0 +1,25 @@ +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . + +rm -rf INPUT RESTART +mkdir INPUT RESTART + +rsync -arv @[INPUTDATA_ROOT]/FV3_regional_rrfs_a/INPUT/. INPUT/. + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m11.nc aeroclim.m11.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index f7e60e9c08..ac86ad8cb5 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -1,22 +1,41 @@ -rsync -arv @[INPUTDATA_ROOT]/FV3_regional_input_data/. . - rm -rf INPUT RESTART mkdir INPUT RESTART -rsync -arv @[INPUTDATA_ROOT]/fv3_regional_control/INPUT/. INPUT/. +rsync -arv @[INPUTDATA_ROOT]/FV3_regional/INPUT/. INPUT/. + +cp @[INPUTDATA_ROOT]/FV3_fix/CCN_ACTIVATE.BIN . + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m01.nc aeroclim.m01.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m02.nc aeroclim.m02.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m03.nc aeroclim.m03.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m04.nc aeroclim.m04.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m05.nc aeroclim.m05.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m06.nc aeroclim.m06.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m07.nc aeroclim.m07.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m08.nc aeroclim.m08.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m09.nc aeroclim.m09.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m10.nc aeroclim.m10.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m11.nc +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/MERRA2/merra2.aerclim.2003-2014.m12.nc aeroclim.m12.nc + +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_BC.v1_3.dat optics_BC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_DU.v15_3.dat optics_DU.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_OC.v1_3.dat optics_OC.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SS.v3_3.dat optics_SS.dat +cp @[INPUTDATA_ROOT]/FV3_input_data_INCCN_aeroclim/aer_data/LUTS/optics_SU.v1_3.dat optics_SU.dat if [ $WARM_START = .true. ]; then - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.coupler.res INPUT/coupler.res - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.nc INPUT/fv_core.res.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.phy_data.nc INPUT/phy_data.nc - cp ../regional_control${RT_SUFFIX}/RESTART/20181015.120000.sfc_data.nc INPUT/sfc_data.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.coupler.res INPUT/coupler.res + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.nc INPUT/fv_core.res.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_core.res.tile1.nc INPUT/fv_core.res.tile1.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_srf_wnd.res.tile1.nc INPUT/fv_srf_wnd.res.tile1.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.fv_tracer.res.tile1.nc INPUT/fv_tracer.res.tile1.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.phy_data.nc INPUT/phy_data.nc + cp ../regional_control${RT_SUFFIX}/RESTART/20220824.030000.sfc_data.nc INPUT/sfc_data.nc fi if [ $WRITE_RESTART_WITH_BCS = .true. ]; then - cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc - cp @[INPUTDATA_ROOT]/fv3_regional_control/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/FV3_regional/RESTART/fv_core.res.tile1_new.nc RESTART/fv_core.res.tile1_new.nc + cp @[INPUTDATA_ROOT]/FV3_regional/RESTART/fv_tracer.res.tile1_new.nc RESTART/fv_tracer.res.tile1_new.nc fi if [[ $POSTAPP = 'lam' ]]; then @@ -25,7 +44,3 @@ if [[ $POSTAPP = 'lam' ]]; then cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT_FH00.txt cp ${PATHRT}/parm/params_grib2_tbl_new params_grib2_tbl_new fi - -if [ $DO_RRTMGP = .true. ]; then - cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . -fi diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index 204439f1cf..ddfbeba4a8 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -3,7 +3,31 @@ mkdir INPUT RESTART OPNREQ_TEST=${OPNREQ_TEST:-false} SUFFIX=${RT_SUFFIX} -cp -r @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/* INPUT/ + +if [[ "${RRFS_RESTART:-NO}" == YES ]] ; then + # cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT + # rm -f INPUT/fv_core.res.* + # rm -f INPUT/fv_srf_wnd.res.* + # rm -f INPUT/fv_tracer.res.* + # rm -f INPUT/phy_data.* + # rm -f INPUT/sfc_data.* + cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/grid_spec.nc INPUT/. + cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/*_grid.tile*.nc INPUT/. + cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/oro_data*.nc INPUT/. + for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + [ -e $RFILE ] || exit 1 + RFILE_OLD=$(basename $RFILE) + RFILE_NEW="${RFILE_OLD//${RESTART_FILE_PREFIX}./}" + cp $RFILE "INPUT/$RFILE_NEW" + done + for x in emi_data.nc SMOKE_GBBEPx_data.nc dust12m_data.nc gfs_ctrl.nc gfs_data.nc \ + grid.tile7.halo4.nc ; do + cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/$x INPUT/. + done + cp @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/gfs_bndy.* INPUT/. +else + cp -r @[INPUTDATA_ROOT]/FV3_input_data_conus13km/INPUT/* INPUT/ +fi for x in global_glacier.2x2.grb global_h2oprdlos.f77 global_maxice.2x2.grb \ global_o3prdlos.f77 global_snoclim.1.875.grb global_zorclim.1x1.grb \ diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 8d84537c66..34767e40a7 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -29,29 +29,13 @@ elif [[ $MACHINE_ID = s4* ]] ; then fi module purge -elif [[ $MACHINE_ID = wcoss_cray ]] ; then - # We are on NOAA Luna or Surge +elif [[ $MACHINE_ID = wcoss2* || $MACHINE_ID = acorn* ]] ; then + # We are on NOAA Cactus or Dogwood if ( ! eval module help > /dev/null 2>&1 ) ; then - source /opt/modules/default/init/bash - fi - module purge - # Workaround until module issues are fixed: - unset _LMFILES_ - unset LOADEDMODULES - module use /opt/modulefiles - module use /opt/cray/ari/modulefiles - module use /opt/cray/craype/default/alt-modulefiles - module use /opt/cray/alt-modulefiles - module use /gpfs/hps/nco/ops/nwprod/modulefiles - module use /gpfs/hps/nco/ops/nwprod/lib/modulefiles - module use /usrx/local/prod/modulefiles - -elif [[ $MACHINE_ID = wcoss_dell_p3 ]] ; then - # We are on NOAA Mars or Venus - if ( ! eval module help > /dev/null 2>&1 ) ; then - source /usrx/local/prod/lmod/lmod/init/bash + source /usr/share/lmod/lmod/init/bash fi module purge + module reset elif [[ $MACHINE_ID = cheyenne* ]] ; then # We are on NCAR Cheyenne diff --git a/tests/opnReqTest b/tests/opnReqTest index abee341e8b..354276eb91 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -262,8 +262,8 @@ run_opnReqTests() { fi ecflow_create_run_task else - echo "Running test for $rc with" - echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TASKS: $TASKS; TPN: $TPN" + echo "Running test for $rc" + echo " THRD: $THRD; INPES: $INPES; JNPES: $JNPES; TPN: $TPN" TEST_NR=${RT_SUFFIX:1} ./run_test.sh $PATHRT $RUNDIR_ROOT $TEST_NAME $TEST_NR $comp_nm > $LOG_DIR/run_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log 2>&1 fi @@ -361,27 +361,6 @@ elif [[ $MACHINE_ID = orion.* ]]; then cp fv3_conf/fv3_slurm.IN_orion fv3_conf/fv3_slurm.IN cp fv3_conf/compile_slurm.IN_orion fv3_conf/compile_slurm.IN -elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - - module load lsf/10.1 - module load python/3.6.3 - - module load ips/18.0.1.163 - module load ecflow/4.17.0 - ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh - ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') - - DISKNM=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT - QUEUE=debug - COMPILE_QUEUE=dev_transfer - ACCNR="${ACCNR:-GFS-DEV}" - PARTITION= - STMP=/gpfs/dell2/stmp - PTMP=/gpfs/dell2/ptmp - SCHEDULER=lsf - cp fv3_conf/fv3_bsub.IN_wcoss_dell_p3 fv3_conf/fv3_bsub.IN - cp fv3_conf/compile_bsub.IN_wcoss_dell_p3 fv3_conf/compile_bsub.IN - elif [[ $MACHINE_ID = linux.* ]]; then PARTITION= @@ -551,8 +530,6 @@ if [[ $ECFLOW == true ]]; then QUEUE=batch elif [[ $MACHINE_ID == orion.* ]]; then QUEUE=batch - elif [[ $MACHINE_ID == wcoss_dell_p3 ]]; then - QUEUE=dev else error "ecflow is not supported on this machine $MACHINE_ID" fi @@ -624,8 +601,8 @@ fi mkdir -p ${STMP}/${USER} NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20220414} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20211113/ +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624/ INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} rm -rf $NEW_BASELINE diff --git a/tests/opnReqTests/dbg.sh b/tests/opnReqTests/dbg.sh index d5f31b3c58..f270d8961e 100644 --- a/tests/opnReqTests/dbg.sh +++ b/tests/opnReqTests/dbg.sh @@ -14,22 +14,27 @@ if [[ $application == 'global' ]]; then else LIST_FILES="sfcf0$FHMAX_2D.nc sfcf0$FHMAX_2D.nc" fi + WRITE_DOPOST=.false. elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for debug" exit 1 elif [[ $application == 'cpld' ]]; then - FHMAX=6 - DAYS=0.25 + FHMAX=3 + DAYS=0.125 NFHOUT_HF=1 RESTART_INTERVAL=${FHMAX} RESTART_N=${FHMAX} OUTPUT_FH="0 ${FHMAX}" - LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024/sfcf006/g" \ - | sed -E "s/atmf024/atmf006/g" \ - | sed -E "s/2021-03-23-21600/2021-03-22-43200/g" \ - | sed -E "s/sfcf021.tile[1-6].nc ?//g" \ - | sed -E "s/atmf021.tile[1-6].nc ?//g" \ - | sed -E "s/(gocart.inst_aod.202103)23_0600z.nc4/\122_1200z.nc4/g" \ + AOD_FRQ=030000 + LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024/sfcf003/g" \ + | sed -E "s/atmf024/atmf003/g" \ + | sed -E "s/2021-03-23-21600/2021-03-22-32400/g" \ + | sed -E "s/20210323\.060000/20210322\.090000/g" \ + | sed -E "s/sfcf021\.tile[1-6]\.nc ?//g" \ + | sed -E "s/atmf021\.tile[1-6]\.nc ?//g" \ + | sed -E "s/(gocart\.inst_aod\.202103)23_0600z\.nc4/\122_0900z\.nc4/g" \ + | sed -E "s/20210323\.060000\.out_pnt\.ww3/20210322\.090000\.out_pnt\.ww3/g" \ + | sed -E "s/20210323\.060000\.out_grd\.ww3/20210322\.090000\.out_grd\.ww3/g" \ | sed -e "s/^ *//" -e "s/ *$//") fi diff --git a/tests/opnReqTests/dcp.sh b/tests/opnReqTests/dcp.sh index 3a3ad9ef75..46069d7d7e 100644 --- a/tests/opnReqTests/dcp.sh +++ b/tests/opnReqTests/dcp.sh @@ -7,14 +7,16 @@ if [[ $application == 'global' ]]; then INPES=$JNPES JNPES=$temp else - INPES=6 - JNPES=4 + temp=$INPES + INPES=$JNPES + JNPES=$temp fi elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then - INPES=10 - JNPES=3 + INPES=5 + JNPES=12 NTILES=1 + WRTTASK_PER_GROUP=10 TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) NODES=$(((TASKS+TPN-1)/TPN)) else @@ -37,5 +39,5 @@ elif [[ $application == 'cpld' ]]; then fi fi -(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh + source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/opnReqTests/fhz.sh b/tests/opnReqTests/fhz.sh index 797d56c33f..ff1c9364fb 100644 --- a/tests/opnReqTests/fhz.sh +++ b/tests/opnReqTests/fhz.sh @@ -11,7 +11,7 @@ if [[ $application == 'global' ]]; then | sed -E "s/GFSPRS.GrbF24 ?//g" \ | sed -e "s/^ *//" -e "s/ *$//") elif [[ $application == 'cpld' ]]; then - if [[ $TEST_NAME =~ 'cpld_control_c96_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_c96_noaero_p8' ]]; then + if [[ $TEST_NAME =~ 'cpld_control_c96_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_c96_noaero_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_ciceC_p8' ]]; then FHZERO=3 LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024.tile[1-6].nc ?//g" \ | sed -E "s/atmf024.tile[1-6].nc ?//g" \ diff --git a/tests/opnReqTests/mpi.sh b/tests/opnReqTests/mpi.sh index 9be9300a20..7f658a9dc2 100644 --- a/tests/opnReqTests/mpi.sh +++ b/tests/opnReqTests/mpi.sh @@ -20,5 +20,5 @@ elif [[ $application == 'cpld' ]]; then exit 1 fi -(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh + source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/opnReqTests/rst.sh b/tests/opnReqTests/rst.sh index 73cab71968..e01a15aac7 100644 --- a/tests/opnReqTests/rst.sh +++ b/tests/opnReqTests/rst.sh @@ -31,8 +31,8 @@ elif [[ $application == 'cpld' ]]; then MOM6_RESTART_SETTING="r" RESTART_N=$(( FHMAX - FHROT )) RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" - RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( SHOUR + FHROT )))" RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (SHOUR + FHROT)* 3600 )))" + RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" fi WARM_START=.T. @@ -54,7 +54,7 @@ LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/phyf0[0-9][0-9]/phyf0$FHMAX_2D/g" \ LIST_FILES=$(echo $LIST_FILES | xargs -n1 | sort -u | xargs) -(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh + source $PATHRT/opnReqTests/wrt_env.sh cat <>${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env @@ -66,8 +66,11 @@ export RUNTYPE=${RUNTYPE:-} export USE_RESTART_TIME=${USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} export RESTART_N=${RESTART_N:-} -export RESTART_FILE_SUFFIX_HRS=${RESTART_FILE_SUFFIX_HRS:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} +export RUN_BEG="${RUN_BEG:-}" +export OUT_BEG="${RUN_BEG:-}" +export RST_BEG="${RUN_BEG:-}" +export RST_2_BEG="${RUN_BEG:-}" export DEP_RUN=${DEP_RUN:-} export WARM_START=${WARM_START} export NGGPS_IC=${NGGPS_IC} diff --git a/tests/opnReqTests/std.sh b/tests/opnReqTests/std.sh index af085af266..f6d5819397 100644 --- a/tests/opnReqTests/std.sh +++ b/tests/opnReqTests/std.sh @@ -7,16 +7,18 @@ if [[ $application == 'global' ]]; then WRITE_GROUP=1 WRTTASK_PER_GROUP=12 TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) + NODES=$(((TASKS+TPN-1)/TPN)) fi RESTART_N=$(( FHMAX/2 )) RESTART_INTERVAL="${RESTART_N} -1" elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then - INPES=4 - JNPES=6 + INPES=10 + JNPES=11 NTILES=1 - WRTTASK_PER_GROUP=8 + WRTTASK_PER_GROUP=10 TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) + NODES=$(((TASKS+TPN-1)/TPN)) fi elif [[ $application == 'cpld' ]]; then if [ $CI_TEST == 'true' ]; then @@ -26,13 +28,13 @@ elif [[ $application == 'cpld' ]]; then ICE_tasks=6 NPROC_ICE=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) + NODES=$(((TASKS+TPN-1)/TPN)) fi RESTART_N=$(( FHMAX/2 )) RESTART_INTERVAL="${RESTART_N} -1" fi -NODES=$(((TASKS+TPN-1)/TPN)) -(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh +#outdated (test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh if [[ $RT_SUFFIX =~ std ]]; then source $PATHRT/opnReqTests/wrt_env.sh fi diff --git a/tests/opnReqTests/thr.sh b/tests/opnReqTests/thr.sh index 5054e34ce8..1e26b42719 100644 --- a/tests/opnReqTests/thr.sh +++ b/tests/opnReqTests/thr.sh @@ -9,12 +9,13 @@ if [[ $application == 'global' ]]; then NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then - INPES=4 - JNPES=4 + INPES=5 + JNPES=11 NTILES=1 + WRTTASK_PER_GROUP=10 TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP)) + NODES=$(((TASKS+TPN-1)/TPN)) fi - NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'cpld' ]]; then if [[ $CI_TEST != 'true' ]]; then if [[ $TEST_NAME =~ 'cpld_control_c96_p8' ]]; then @@ -33,7 +34,7 @@ elif [[ $application == 'cpld' ]]; then NPROC_ICE=$ICE_tasks TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) - elif [[ $TEST_NAME =~ 'cpld_control_p8' ]]; then + elif [[ $TEST_NAME =~ 'cpld_control_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_ciceC_p8' ]] || [[ $TEST_NAME =~ 'cpld_control_gfsv17' ]]; then INPES=3 JNPES=4 OCN_tasks=20 @@ -43,7 +44,8 @@ elif [[ $application == 'cpld' ]]; then TASKS=$((INPES*JNPES*NTILES + WRITE_GROUP*WRTTASK_PER_GROUP + OCN_tasks + ICE_tasks + WAV_tasks)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $TEST_NAME == 'cpld_bmark_p8' ]]; then - NODES=$(((TASKS+TPN-1)/TPN)) + #need to overhaul NODES=$(((TASKS+TPN-1)/TPN)) + echo $TEST_NAME else echo "This test is not yet set up for the thread test" exit 1 @@ -51,5 +53,5 @@ elif [[ $application == 'cpld' ]]; then fi fi -(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh + source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/opnReqTests/wrt_env.sh b/tests/opnReqTests/wrt_env.sh index af9801cc3f..689ad47d7b 100644 --- a/tests/opnReqTests/wrt_env.sh +++ b/tests/opnReqTests/wrt_env.sh @@ -6,19 +6,19 @@ export FHMAX=${FHMAX} export DAYS=${DAYS} export RESTART_N=${RESTART_N:-} export RESTART_INTERVAL="${RESTART_INTERVAL:-}" -export INPES=${INPES} -export JNPES=${JNPES} +export INPES=${INPES:-} +export JNPES=${JNPES:-} export NTILES=${NTILES:-} export OCN_tasks=${OCN_tasks:-} export ICE_tasks=${ICE_tasks:-} export WAV_tasks=${WAV_tasks:-} -export WRITE_GROUP=${WRITE_GROUP} -export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} +export WRITE_GROUP=${WRITE_GROUP:-} +export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP:-} export NPROC_ICE=${NPROC_ICE:-} -export THRD=${THRD} -export TASKS=${TASKS} -export TPN=${TPN} -export NODES=${NODES} +export THRD=${THRD:-} +export TASKS=${TASKS:-} +export TPN=${TPN:-} +export NODES=${NODES:-} export OMP_ENV="${OMP_ENV:-}" export MPI_PROC_BIND="${MPI_PROC_BIND:-}" export NFHOUT=${NFHOUT} @@ -26,4 +26,6 @@ export NFHMAX_HF=${NFHMAX_HF} export NFHOUT_HF=${NFHOUT_HF} export LIST_FILES="${LIST_FILES}" export OUTPUT_FH="${OUTPUT_FH}" +export AOD_FRQ=${AOD_FRQ:-} +export WRITE_DOPOST=${WRITE_DOPOST:-} EOF diff --git a/tests/parm/MOM_input_template_025 b/tests/parm/MOM_input_template_025 index 3abbf2191b..7057ce2f58 100644 --- a/tests/parm/MOM_input_template_025 +++ b/tests/parm/MOM_input_template_025 @@ -6,7 +6,6 @@ ! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. ! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file ! which is generated by the model at run-time. - ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False ! Use tripolar connectivity at the northern edge of the domain. With @@ -406,7 +405,7 @@ GILL_EQUATORIAL_LD = True ! [Boolean] default = False ! radius, otherwise, if false, use Pedlosky's definition. These definitions ! differ by a factor of 2 in front of the beta term in the denominator. Gill's ! is the more appropriate definition. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. @@ -510,6 +509,9 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. +KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 + ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. + ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -731,7 +733,7 @@ NSTAR = 0.06 ! [nondim] default = 0.2 ! The portion of the buoyant potential energy imparted by surface fluxes that is ! available to drive entrainment at the base of mixed layer when that energy is ! positive. -EPBL_MLD_BISECTION = True ! [Boolean] default = False +EPBL_MLD_BISECTION = True ! [Boolean] default = False ! If true, use bisection with the iterative determination of the self-consistent ! mixed layer depth. Otherwise use the false position after a maximum and ! minimum bound have been evaluated and the returned value or bisection before @@ -868,8 +870,8 @@ LIQUID_RUNOFF_FROM_DATA = @[MOM6_RIVER_RUNOFF] ! [Boolean] default = False ! the data_table using the component name 'OCN'. ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False - ! If true perturb the diabatic tendencies in MOM_diabadic_driver -PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False + ! If true perturb the diabatic tendencies in MOM_diabadic_driver +PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! If true perturb the KE dissipation and destruction in MOM_energetic_PBL ! === module MOM_restart === RESTART_CHECKSUMS_REQUIRED = False diff --git a/tests/parm/MOM_input_template_050 b/tests/parm/MOM_input_template_050 index 4e703a4bfd..2853c1de89 100644 --- a/tests/parm/MOM_input_template_050 +++ b/tests/parm/MOM_input_template_050 @@ -6,7 +6,6 @@ ! This MOM_input file typically contains only the non-default values that are needed to reproduce this example. ! A full list of parameters for this example can be found in the corresponding MOM_parameter_doc.all file ! which is generated by the model at run-time. - ! === module MOM_domains === TRIPOLAR_N = True ! [Boolean] default = False ! Use tripolar connectivity at the northern edge of the domain. With @@ -419,7 +418,7 @@ GILL_EQUATORIAL_LD = True ! [Boolean] default = False ! radius, otherwise, if false, use Pedlosky's definition. These definitions ! differ by a factor of 2 in front of the beta term in the denominator. Gill's ! is the more appropriate definition. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. @@ -540,6 +539,9 @@ USE_LAND_MASK_FOR_HVISC = False ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. +KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 + ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. + ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. @@ -757,7 +759,7 @@ MSTAR2_COEF1 = 0.29 ! [nondim] default = 0.3 MSTAR2_COEF2 = 0.152 ! [nondim] default = 0.085 ! Coefficient in computing mstar when only rotation limits the total mixing ! (used if EPBL_MSTAR_SCHEME = OM4) -EPBL_MLD_BISECTION = True ! [Boolean] default = False +EPBL_MLD_BISECTION = True ! [Boolean] default = False ! If true, use bisection with the iterative determination of the self-consistent ! mixed layer depth. Otherwise use the false position after a maximum and ! minimum bound have been evaluated and the returned value or bisection before @@ -913,8 +915,8 @@ LIQUID_RUNOFF_FROM_DATA = @[MOM6_RIVER_RUNOFF] ! [Boolean] default = False ! the data_table using the component name 'OCN'. ! === module ocean_stochastics === DO_SPPT = @[DO_OCN_SPPT] ! [Boolean] default = False - ! If true perturb the diabatic tendencies in MOM_diabadic_driver -PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False + ! If true perturb the diabatic tendencies in MOM_diabadic_driver +PERT_EPBL = @[PERT_EPBL] ! [Boolean] default = False ! If true perturb the KE dissipation and destruction in MOM_energetic_PBL ! === module MOM_restart === diff --git a/tests/parm/MOM_input_template_100 b/tests/parm/MOM_input_template_100 index 1aedf9e7f1..4da3e10fa2 100644 --- a/tests/parm/MOM_input_template_100 +++ b/tests/parm/MOM_input_template_100 @@ -1,5 +1,4 @@ ! This file was written by the model and records all non-layout or debugging parameters used at run-time. - ! === module MOM === ! === module MOM_unit_scaling === @@ -430,7 +429,7 @@ VISC_RES_FN_POWER = 2 ! [nondim] default = 100 ! used, although even integers are more efficient to calculate. Setting this ! greater than 100 results in a step-function being used. This function affects ! lateral viscosity, Kh, and not KhTh. -INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True +INTERNAL_WAVE_SPEED_BETTER_EST = False ! [Boolean] default = True ! If true, use a more robust estimate of the first mode wave speed as the ! starting point for iterations. @@ -531,6 +530,9 @@ USE_KH_BG_2D = True ! [Boolean] default = False HMIX_FIXED = 0.5 ! [m] ! The prescribed depth over which the near-surface viscosity and diffusivity are ! elevated when the bulk mixed layer is not used. +KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 + ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. + ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 ! The maximum velocity allowed before the velocity components are truncated. diff --git a/tests/parm/MOM_input_template_500 b/tests/parm/MOM_input_template_500 new file mode 100644 index 0000000000..2a5dde838b --- /dev/null +++ b/tests/parm/MOM_input_template_500 @@ -0,0 +1,517 @@ +! This file was written by the model and records the non-default parameters used at run-time. +! === module MOM === + +! === module MOM_unit_scaling === +! Parameters for doing unit scaling of variables. +USE_REGRIDDING = True ! [Boolean] default = False + ! If True, use the ALE algorithm (regridding/remapping). If False, use the + ! layered isopycnal algorithm. +THICKNESSDIFFUSE = True ! [Boolean] default = False + ! If true, interface heights are diffused with a coefficient of KHTH. +THICKNESSDIFFUSE_FIRST = True ! [Boolean] default = False + ! If true, do thickness diffusion before dynamics. This is only used if + ! THICKNESSDIFFUSE is true. +DT = @[DT_DYNAM_MOM6] ! [s] + ! The (baroclinic) dynamics time step. The time-step that is actually used will + ! be an integer fraction of the forcing time-step (DT_FORCING in ocean-only mode + ! or the coupling timestep in coupled mode.) +DT_THERM = @[DT_THERM_MOM6] ! [s] default = 1800.0 + ! The thermodynamic and tracer advection time step. Ideally DT_THERM should be + ! an integer multiple of DT and less than the forcing or coupling time-step, + ! unless THERMO_SPANS_COUPLING is true, in which case DT_THERM can be an integer + ! multiple of the coupling timestep. By default DT_THERM is set to DT. +THERMO_SPANS_COUPLING = @[MOM6_THERMO_SPAN] ! [Boolean] default = False + ! If true, the MOM will take thermodynamic and tracer timesteps that can be + ! longer than the coupling timestep. The actual thermodynamic timestep that is + ! used in this case is the largest integer multiple of the coupling timestep + ! that is less than or equal to DT_THERM. +HFREEZE = 20.0 ! [m] default = -1.0 + ! If HFREEZE > 0, melt potential will be computed. The actual depth + ! over which melt potential is computed will be min(HFREEZE, OBLD) + ! where OBLD is the boundary layer depth. If HFREEZE <= 0 (default) + ! melt potential will not be computed. +FRAZIL = True ! [Boolean] default = False + ! If true, water freezes if it gets too cold, and the accumulated heat deficit + ! is returned in the surface state. FRAZIL is only used if + ! ENABLE_THERMODYNAMICS is true. +BOUND_SALINITY = True ! [Boolean] default = False + ! If true, limit salinity to being positive. (The sea-ice model may ask for more + ! salt than is available and drive the salinity negative otherwise.) + +! === module MOM_domains === +TRIPOLAR_N = True ! [Boolean] default = False + ! Use tripolar connectivity at the northern edge of the domain. With + ! TRIPOLAR_N, NIGLOBAL must be even. +NIGLOBAL = @[NX_GLB] ! + ! The total number of thickness grid points in the x-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. +NJGLOBAL = @[NY_GLB] ! + ! The total number of thickness grid points in the y-direction in the physical + ! domain. With STATIC_MEMORY_ this is set in MOM_memory.h at compile time. + +! === module MOM_hor_index === +! Sets the horizontal array index types. + +! === module MOM_fixed_initialization === +INPUTDIR = "INPUT" ! default = "." + ! The directory in which input files are found. + +! === module MOM_grid_init === +GRID_CONFIG = "mosaic" ! + ! A character string that determines the method for defining the horizontal + ! grid. Current options are: + ! mosaic - read the grid from a mosaic (supergrid) + ! file set by GRID_FILE. + ! cartesian - use a (flat) Cartesian grid. + ! spherical - use a simple spherical grid. + ! mercator - use a Mercator spherical grid. +GRID_FILE = "ocean_hgrid.nc" ! + ! Name of the file from which to read horizontal grid data. +GRID_ROTATION_ANGLE_BUGS = False ! [Boolean] default = True + ! If true, use an older algorithm to calculate the sine and + ! cosines needed rotate between grid-oriented directions and + ! true north and east. Differences arise at the tripolar fold +USE_TRIPOLAR_GEOLONB_BUG = False ! [Boolean] default = True + ! If true, use older code that incorrectly sets the longitude in some points + ! along the tripolar fold to be off by 360 degrees. +TOPO_CONFIG = "file" ! + ! This specifies how bathymetry is specified: + ! file - read bathymetric information from the file + ! specified by (TOPO_FILE). + ! flat - flat bottom set to MAXIMUM_DEPTH. + ! bowl - an analytically specified bowl-shaped basin + ! ranging between MAXIMUM_DEPTH and MINIMUM_DEPTH. + ! spoon - a similar shape to 'bowl', but with an vertical + ! wall at the southern face. + ! halfpipe - a zonally uniform channel with a half-sine + ! profile in the meridional direction. + ! bbuilder - build topography from list of functions. + ! benchmark - use the benchmark test case topography. + ! Neverworld - use the Neverworld test case topography. + ! DOME - use a slope and channel configuration for the + ! DOME sill-overflow test case. + ! ISOMIP - use a slope and channel configuration for the + ! ISOMIP test case. + ! DOME2D - use a shelf and slope configuration for the + ! DOME2D gravity current/overflow test case. + ! Kelvin - flat but with rotated land mask. + ! seamount - Gaussian bump for spontaneous motion test case. + ! dumbbell - Sloshing channel with reservoirs on both ends. + ! shelfwave - exponential slope for shelfwave test case. + ! Phillips - ACC-like idealized topography used in the Phillips config. + ! dense - Denmark Strait-like dense water formation and overflow. + ! USER - call a user modified routine. +TOPO_FILE = "ocean_topog.nc" ! default = "topog.nc" + ! The file from which the bathymetry is read. +!MAXIMUM_DEPTH = 5801.341919389728 ! [m] + ! The (diagnosed) maximum depth of the ocean. +MINIMUM_DEPTH = 10.0 ! [m] default = 0.0 + ! If MASKING_DEPTH is unspecified, then anything shallower than MINIMUM_DEPTH is + ! assumed to be land and all fluxes are masked out. If MASKING_DEPTH is + ! specified, then all depths shallower than MINIMUM_DEPTH but deeper than + ! MASKING_DEPTH are rounded to MINIMUM_DEPTH. + +! === module MOM_open_boundary === +! Controls where open boundaries are located, what kind of boundary condition to impose, and what data to apply, +! if any. +MASKING_DEPTH = 0.0 ! [m] default = -9999.0 + ! The depth below which to mask points as land points, for which all fluxes are + ! zeroed out. MASKING_DEPTH is ignored if negative. + +! === module MOM_verticalGrid === +! Parameters providing information about the vertical grid. +NK = 25 ! [nondim] + ! The number of model layers. + +! === module MOM_tracer_registry === + +! === module MOM_EOS === +TFREEZE_FORM = "MILLERO_78" ! default = "LINEAR" + ! TFREEZE_FORM determines which expression should be used for the freezing + ! point. Currently, the valid choices are "LINEAR", "MILLERO_78", "TEOS10" + +! === module MOM_restart === +RESTART_CHECKSUMS_REQUIRED = False +! === module MOM_tracer_flow_control === + +! === module MOM_coord_initialization === +COORD_CONFIG = "file" ! default = "none" + ! This specifies how layers are to be defined: + ! ALE or none - used to avoid defining layers in ALE mode + ! file - read coordinate information from the file + ! specified by (COORD_FILE). + ! BFB - Custom coords for buoyancy-forced basin case + ! based on SST_S, T_BOT and DRHO_DT. + ! linear - linear based on interfaces not layers + ! layer_ref - linear based on layer densities + ! ts_ref - use reference temperature and salinity + ! ts_range - use range of temperature and salinity + ! (T_REF and S_REF) to determine surface density + ! and GINT calculate internal densities. + ! gprime - use reference density (RHO_0) for surface + ! density and GINT calculate internal densities. + ! ts_profile - use temperature and salinity profiles + ! (read from COORD_FILE) to set layer densities. + ! USER - call a user modified routine. +COORD_FILE = "layer_coord25.nc" ! + ! The file from which the coordinate densities are read. +REGRIDDING_COORDINATE_MODE = "HYCOM1" ! default = "LAYER" + ! Coordinate mode for vertical regridding. Choose among the following + ! possibilities: LAYER - Isopycnal or stacked shallow water layers + ! ZSTAR, Z* - stretched geopotential z* + ! SIGMA_SHELF_ZSTAR - stretched geopotential z* ignoring shelf + ! SIGMA - terrain following coordinates + ! RHO - continuous isopycnal + ! HYCOM1 - HyCOM-like hybrid coordinate + ! SLIGHT - stretched coordinates above continuous isopycnal + ! ADAPTIVE - optimize for smooth neutral density surfaces +BOUNDARY_EXTRAPOLATION = True ! [Boolean] default = False + ! When defined, a proper high-order reconstruction scheme is used within + ! boundary cells rather than PCM. E.g., if PPM is used for remapping, a PPM + ! reconstruction will also be used within boundary cells. +ALE_COORDINATE_CONFIG = "HYBRID:hycom1_25.nc,sigma2,FNC1:5,4000,4.5,.01" ! default = "UNIFORM" + ! Determines how to specify the coordinate + ! resolution. Valid options are: + ! PARAM - use the vector-parameter ALE_RESOLUTION + ! UNIFORM[:N] - uniformly distributed + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,dz + ! or FILE:lev.nc,interfaces=zw + ! WOA09[:N] - the WOA09 vertical grid (approximately) + ! FNC1:string - FNC1:dz_min,H_total,power,precision + ! HYBRID:string - read from a file. The string specifies + ! the filename and two variable names, separated + ! by a comma or space, for sigma-2 and dz. e.g. + ! HYBRID:vgrid.nc,sigma2,dz +!ALE_RESOLUTION = 2*5.0, 5.01, 5.07, 5.25, 5.68, 6.55, 8.1, 10.66, 14.620000000000001, 20.450000000000003, 28.73, 40.1, 55.32, 75.23, 100.8, 133.09, 173.26, 222.62, 282.56, 354.62, 440.47, 541.87, 660.76, 799.1800000000001 ! [m] + ! The distribution of vertical resolution for the target + ! grid used for Eulerian-like coordinates. For example, + ! in z-coordinate mode, the parameter is a list of level + ! thicknesses (in m). In sigma-coordinate mode, the list + ! is of non-dimensional fractions of the water column. +!TARGET_DENSITIES = 1010.0, 1020.843017578125, 1027.0274658203125, 1029.279541015625, 1030.862548828125, 1032.1572265625, 1033.27978515625, 1034.251953125, 1034.850830078125, 1035.28857421875, 1035.651123046875, 1035.967529296875, 1036.2410888671875, 1036.473876953125, 1036.6800537109375, 1036.8525390625, 1036.9417724609375, 1037.0052490234375, 1037.057373046875, 1037.1065673828125, 1037.15576171875, 1037.2060546875, 1037.26416015625, 1037.3388671875, 1037.4749755859375, 1038.0 ! [m] + ! HYBRID target densities for itnerfaces +REGRID_COMPRESSIBILITY_FRACTION = 0.01 ! [not defined] default = 0.0 + ! When interpolating potential density profiles we can add + ! some artificial compressibility solely to make homogenous + ! regions appear stratified. +MAXIMUM_INT_DEPTH_CONFIG = "FNC1:5,8000.0,1.0,.125" ! default = "NONE" + ! Determines how to specify the maximum interface depths. + ! Valid options are: + ! NONE - there are no maximum interface depths + ! PARAM - use the vector-parameter MAXIMUM_INTERFACE_DEPTHS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAXIMUM_INT_DEPTHS = 0.0, 5.0, 36.25, 93.75, 177.5, 287.5, 423.75, 586.25, 775.0, 990.0, 1231.25, 1498.75, 1792.5, 2112.5, 2458.75, 2831.25, 3230.0, 3655.0, 4106.25, 4583.75, 5087.5, 5617.5, 6173.75, 6756.25, 7365.0, 8000.0 ! [m] + ! The list of maximum depths for each interface. +MAX_LAYER_THICKNESS_CONFIG = "FNC1:400,31000.0,0.1,.01" ! default = "NONE" + ! Determines how to specify the maximum layer thicknesses. + ! Valid options are: + ! NONE - there are no maximum layer thicknesses + ! PARAM - use the vector-parameter MAX_LAYER_THICKNESS + ! FILE:string - read from a file. The string specifies + ! the filename and variable name, separated + ! by a comma or space, e.g. FILE:lev.nc,Z + ! FNC1:string - FNC1:dz_min,H_total,power,precision +!MAX_LAYER_THICKNESS = 400.0, 1094.2, 1144.02, 1174.81, 1197.42, 1215.4099999999999, 1230.42, 1243.3200000000002, 1254.65, 1264.78, 1273.94, 1282.31, 1290.02, 1297.17, 1303.85, 1310.1, 1316.0, 1321.5700000000002, 1326.85, 1331.87, 1336.67, 1341.25, 1345.6399999999999, 1349.85, 1353.88 ! [m] + ! The list of maximum thickness for each layer. +REMAPPING_SCHEME = "PPM_H4" ! default = "PLM" + ! This sets the reconstruction scheme used for vertical remapping for all + ! variables. It can be one of the following schemes: PCM (1st-order + ! accurate) + ! PLM (2nd-order accurate) + ! PPM_H4 (3rd-order accurate) + ! PPM_IH4 (3rd-order accurate) + ! PQM_IH4IH3 (4th-order accurate) + ! PQM_IH6IH5 (5th-order accurate) + +! === module MOM_grid === +! Parameters providing information about the lateral grid. + +! === module MOM_state_initialization === +INIT_LAYERS_FROM_Z_FILE = True ! [Boolean] default = False + ! If true, initialize the layer thicknesses, temperatures, and salinities from a + ! Z-space file on a latitude-longitude grid. + +! === module MOM_initialize_layers_from_Z === +TEMP_SALT_Z_INIT_FILE = "" ! default = "temp_salt_z.nc" + ! The name of the z-space input file used to initialize + ! temperatures (T) and salinities (S). If T and S are not + ! in the same file, TEMP_Z_INIT_FILE and SALT_Z_INIT_FILE + ! must be set. +TEMP_Z_INIT_FILE = "woa18_decav_t00_01.nc" ! default = "" + ! The name of the z-space input file used to initialize + ! temperatures, only. +SALT_Z_INIT_FILE = "woa18_decav_s00_01.nc" ! default = "" + ! The name of the z-space input file used to initialize + ! temperatures, only. +Z_INIT_FILE_PTEMP_VAR = "t_an" ! default = "ptemp" + ! The name of the potential temperature variable in + ! TEMP_Z_INIT_FILE. +Z_INIT_FILE_SALT_VAR = "s_an" ! default = "salt" + ! The name of the salinity variable in + ! SALT_Z_INIT_FILE. +Z_INIT_ALE_REMAPPING = True ! [Boolean] default = False + ! If True, then remap straight to model coordinate from file. + +! === module MOM_diag_mediator === + +! === module MOM_MEKE === +USE_MEKE = True ! [Boolean] default = False + ! If true, turns on the MEKE scheme which calculates a sub-grid mesoscale eddy + ! kinetic energy budget. + +! === module MOM_lateral_mixing_coeffs === +USE_VARIABLE_MIXING = True ! [Boolean] default = False + ! If true, the variable mixing code will be called. This allows diagnostics to + ! be created even if the scheme is not used. If KHTR_SLOPE_CFF>0 or + ! KhTh_Slope_Cff>0, this is set to true regardless of what is in the parameter + ! file. +! === module MOM_set_visc === +CHANNEL_DRAG = True ! [Boolean] default = False + ! If true, the bottom drag is exerted directly on each layer proportional to the + ! fraction of the bottom it overlies. +HBBL = 10.0 ! [m] + ! The thickness of a bottom boundary layer with a viscosity of KVBBL if + ! BOTTOMDRAGLAW is not defined, or the thickness over which near-bottom + ! velocities are averaged for the drag law if BOTTOMDRAGLAW is defined but + ! LINEAR_DRAG is not. +KV = 1.0E-04 ! [m2 s-1] + ! The background kinematic viscosity in the interior. The molecular value, ~1e-6 + ! m2 s-1, may be used. + +! === module MOM_continuity === + +! === module MOM_continuity_PPM === + +! === module MOM_CoriolisAdv === +CORIOLIS_SCHEME = "SADOURNY75_ENSTRO" ! default = "SADOURNY75_ENERGY" + ! CORIOLIS_SCHEME selects the discretization for the Coriolis terms. Valid + ! values are: + ! SADOURNY75_ENERGY - Sadourny, 1975; energy cons. + ! ARAKAWA_HSU90 - Arakawa & Hsu, 1990 + ! SADOURNY75_ENSTRO - Sadourny, 1975; enstrophy cons. + ! ARAKAWA_LAMB81 - Arakawa & Lamb, 1981; En. + Enst. + ! ARAKAWA_LAMB_BLEND - A blend of Arakawa & Lamb with + ! Arakawa & Hsu and Sadourny energy +BOUND_CORIOLIS = True ! [Boolean] default = False + ! If true, the Coriolis terms at u-points are bounded by the four estimates of + ! (f+rv)v from the four neighboring v-points, and similarly at v-points. This + ! option would have no effect on the SADOURNY Coriolis scheme if it were + ! possible to use centered difference thickness fluxes. + +! === module MOM_PressureForce === + +! === module MOM_PressureForce_AFV === +MASS_WEIGHT_IN_PRESSURE_GRADIENT = True ! [Boolean] default = False + ! If true, use mass weighting when interpolating T/S for integrals near the + ! bathymetry in AFV pressure gradient calculations. + +! === module MOM_hor_visc === +LAPLACIAN = True ! [Boolean] default = False + ! If true, use a Laplacian horizontal viscosity. +KH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the grid spacing to calculate the + ! Laplacian viscosity. The final viscosity is the largest of this scaled + ! viscosity, the Smagorinsky and Leith viscosities, and KH. +KH_SIN_LAT = 2000.0 ! [m2 s-1] default = 0.0 + ! The amplitude of a latitudinally-dependent background viscosity of the form + ! KH_SIN_LAT*(SIN(LAT)**KH_PWR_OF_SINE). +SMAGORINSKY_KH = True ! [Boolean] default = False + ! If true, use a Smagorinsky nonlinear eddy viscosity. +SMAG_LAP_CONST = 0.15 ! [nondim] default = 0.0 + ! The nondimensional Laplacian Smagorinsky constant, often 0.15. +AH_VEL_SCALE = 0.01 ! [m s-1] default = 0.0 + ! The velocity scale which is multiplied by the cube of the grid spacing to + ! calculate the biharmonic viscosity. The final viscosity is the largest of this + ! scaled viscosity, the Smagorinsky and Leith viscosities, and AH. +SMAGORINSKY_AH = True ! [Boolean] default = False + ! If true, use a biharmonic Smagorinsky nonlinear eddy viscosity. +SMAG_BI_CONST = 0.06 ! [nondim] default = 0.0 + ! The nondimensional biharmonic Smagorinsky constant, typically 0.015 - 0.06. +USE_LAND_MASK_FOR_HVISC = True ! [Boolean] default = False + ! If true, use Use the land mask for the computation of thicknesses at velocity + ! locations. This eliminates the dependence on arbitrary values over land or + ! outside of the domain. + +! === module MOM_vert_friction === +HMIX_FIXED = 0.5 ! [m] + ! The prescribed depth over which the near-surface viscosity and diffusivity are + ! elevated when the bulk mixed layer is not used. +KVML = 1.0E-04 ! [m2 s-1] default = 1.0E-04 + ! The kinematic viscosity in the mixed layer. A typical value is ~1e-2 m2 s-1. + ! KVML is not used if BULKMIXEDLAYER is true. The default is set by KV. +MAXVEL = 6.0 ! [m s-1] default = 3.0E+08 + ! The maximum velocity allowed before the velocity components are truncated. + +! === module MOM_barotropic === +BOUND_BT_CORRECTION = True ! [Boolean] default = False + ! If true, the corrective pseudo mass-fluxes into the barotropic solver are + ! limited to values that require less than maxCFL_BT_cont to be accommodated. +BT_PROJECT_VELOCITY = True ! [Boolean] default = False + ! If true, step the barotropic velocity first and project out the velocity + ! tendency by 1+BEBT when calculating the transport. The default (false) is to + ! use a predictor continuity step to find the pressure field, and then to do a + ! corrector continuity step using a weighted average of the old and new + ! velocities, with weights of (1-BEBT) and BEBT. +DYNAMIC_SURFACE_PRESSURE = False ! [Boolean] default = False + ! If true, add a dynamic pressure due to a viscous ice shelf, for instance. +BEBT = 0.2 ! [nondim] default = 0.1 + ! BEBT determines whether the barotropic time stepping uses the forward-backward + ! time-stepping scheme or a backward Euler scheme. BEBT is valid in the range + ! from 0 (for a forward-backward treatment of nonrotating gravity waves) to 1 + ! (for a backward Euler treatment). In practice, BEBT must be greater than about + ! 0.05. +DTBT = -0.9 ! [s or nondim] default = -0.98 + ! The barotropic time step, in s. DTBT is only used with the split explicit time + ! stepping. To set the time step automatically based the maximum stable value + ! use 0, or a negative value gives the fraction of the stable value. Setting + ! DTBT to 0 is the same as setting it to -0.98. The value of DTBT that will + ! actually be used is an integer fraction of DT, rounding down. + +! === module MOM_mixed_layer_restrat === +MIXEDLAYER_RESTRAT = False ! [Boolean] default = False + ! If true, a density-gradient dependent re-stratifying flow is imposed in the + ! mixed layer. Can be used in ALE mode without restriction but in layer mode can + ! only be used if BULKMIXEDLAYER is true. +FOX_KEMPER_ML_RESTRAT_COEF = 60.0 ! [nondim] default = 0.0 + ! A nondimensional coefficient that is proportional to the ratio of the + ! deformation radius to the dominant lengthscale of the submesoscale mixed layer + ! instabilities, times the minimum of the ratio of the mesoscale eddy kinetic + ! energy to the large-scale geostrophic kinetic energy or 1 plus the square of + ! the grid spacing over the deformation radius, as detailed by Fox-Kemper et al. + ! (2010) +MLE_FRONT_LENGTH = 200.0 ! [m] default = 0.0 + ! If non-zero, is the frontal-length scale used to calculate the upscaling of + ! buoyancy gradients that is otherwise represented by the parameter + ! FOX_KEMPER_ML_RESTRAT_COEF. If MLE_FRONT_LENGTH is non-zero, it is recommended + ! to set FOX_KEMPER_ML_RESTRAT_COEF=1.0. +MLE_USE_PBL_MLD = True ! [Boolean] default = False + ! If true, the MLE parameterization will use the mixed-layer depth provided by + ! the active PBL parameterization. If false, MLE will estimate a MLD based on a + ! density difference with the surface using the parameter MLE_DENSITY_DIFF. +MLE_MLD_DECAY_TIME = 2.592E+06 ! [s] default = 0.0 + ! The time-scale for a running-mean filter applied to the mixed-layer depth used + ! in the MLE restratification parameterization. When the MLD deepens below the + ! current running-mean the running-mean is instantaneously set to the current + ! MLD. + +! === module MOM_diabatic_driver === +! The following parameters are used for diabatic processes. +ENERGETICS_SFC_PBL = True ! [Boolean] default = False + ! If true, use an implied energetics planetary boundary layer scheme to + ! determine the diffusivity and viscosity in the surface boundary layer. +EPBL_IS_ADDITIVE = False ! [Boolean] default = True + ! If true, the diffusivity from ePBL is added to all other diffusivities. + ! Otherwise, the larger of kappa-shear and ePBL diffusivities are used. + +! === module MOM_CVMix_KPP === +! This is the MOM wrapper to CVMix:KPP +! See http://cvmix.github.io/ + +! === module MOM_tidal_mixing === +! Vertical Tidal Mixing Parameterization + +! === module MOM_CVMix_conv === +! Parameterization of enhanced mixing due to convection via CVMix + +! === module MOM_set_diffusivity === + +! === module MOM_bkgnd_mixing === +! Adding static vertical background mixing coefficients +KD = 1.5E-05 ! [m2 s-1] default = 0.0 + ! The background diapycnal diffusivity of density in the interior. Zero or the + ! molecular value, ~1e-7 m2 s-1, may be used. +KD_MIN = 2.0E-06 ! [m2 s-1] default = 2.0E-07 + ! The minimum diapycnal diffusivity. +HENYEY_IGW_BACKGROUND = True ! [Boolean] default = False + ! If true, use a latitude-dependent scaling for the near surface background + ! diffusivity, as described in Harrison & Hallberg, JPO 2008. + +! === module MOM_kappa_shear === +! Parameterization of shear-driven turbulence following Jackson, Hallberg and Legg, JPO 2008 +USE_JACKSON_PARAM = True ! [Boolean] default = False + ! If true, use the Jackson-Hallberg-Legg (JPO 2008) shear mixing + ! parameterization. +MAX_RINO_IT = 25 ! [nondim] default = 50 + ! The maximum number of iterations that may be used to estimate the Richardson + ! number driven mixing. + +! === module MOM_CVMix_shear === +! Parameterization of shear-driven turbulence via CVMix (various options) + +! === module MOM_CVMix_ddiff === +! Parameterization of mixing due to double diffusion processes via CVMix + +! === module MOM_diabatic_aux === +! The following parameters are used for auxiliary diabatic processes. + +! === module MOM_energetic_PBL === +EPBL_USTAR_MIN = 1.45842E-18 ! [m s-1] + ! The (tiny) minimum friction velocity used within the ePBL code, derived from + ! OMEGA and ANGSTROM.. +USE_LA_LI2016 = @[MOM6_USE_LI2016] ! [nondim] default = False + ! A logical to use the Li et al. 2016 (submitted) formula to determine the + ! Langmuir number. +USE_WAVES = @[MOM6_USE_WAVES] ! [Boolean] default = False + ! If true, enables surface wave modules. + +! === module MOM_regularize_layers === + +! === module MOM_opacity === + +! === module MOM_tracer_advect === +TRACER_ADVECTION_SCHEME = "PPM:H3" ! default = "PLM" + ! The horizontal transport scheme for tracers: + ! PLM - Piecewise Linear Method + ! PPM:H3 - Piecewise Parabolic Method (Huyhn 3rd order) + ! PPM - Piecewise Parabolic Method (Colella-Woodward) + +! === module MOM_tracer_hor_diff === +KHTR = 50.0 ! [m2 s-1] default = 0.0 + ! The background along-isopycnal tracer diffusivity. +CHECK_DIFFUSIVE_CFL = True ! [Boolean] default = False + ! If true, use enough iterations the diffusion to ensure that the diffusive + ! equivalent of the CFL limit is not violated. If false, always use the greater + ! of 1 or MAX_TR_DIFFUSION_CFL iteration. +MAX_TR_DIFFUSION_CFL = 2.0 ! [nondim] default = -1.0 + ! If positive, locally limit the along-isopycnal tracer diffusivity to keep the + ! diffusive CFL locally at or below this value. The number of diffusive + ! iterations is often this value or the next greater integer. + +! === module MOM_neutral_diffusion === +! This module implements neutral diffusion of tracers +USE_NEUTRAL_DIFFUSION = True ! [Boolean] default = False + ! If true, enables the neutral diffusion module. + +! === module MOM_sum_output === +MAXTRUNC = 1000 ! [truncations save_interval-1] default = 0 + ! The run will be stopped, and the day set to a very large value if the velocity + ! is truncated more than MAXTRUNC times between energy saves. Set MAXTRUNC to 0 + ! to stop if there is any truncation of velocities. + +! === module ocean_model_init === + +! === module MOM_surface_forcing === +OCEAN_SURFACE_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the surface velocity field that is + ! returned to the coupler. Valid values include + ! 'A', 'B', or 'C'. + +MAX_P_SURF = 0.0 ! [Pa] default = -1.0 + ! The maximum surface pressure that can be exerted by the atmosphere and + ! floating sea-ice or ice shelves. This is needed because the FMS coupling + ! structure does not limit the water that can be frozen out of the ocean and the + ! ice-ocean heat fluxes are treated explicitly. No limit is applied if a + ! negative value is used. +WIND_STAGGER = "A" ! default = "C" + ! A case-insensitive character string to indicate the + ! staggering of the input wind stress field. Valid + ! values are 'A', 'B', or 'C'. +! === module MOM_restart === + +! === module MOM_file_parser === diff --git a/tests/parm/aqm/aqm.rc b/tests/parm/aqm/aqm.rc new file mode 100644 index 0000000000..94454f96c3 --- /dev/null +++ b/tests/parm/aqm/aqm.rc @@ -0,0 +1,424 @@ +################################################ +# # +# NOAA Air Quality Model (AQM) Resource File # +# # +################################################ + +# +# General settings +# +ae_matrix_nml: AE_cb6r3_ae6_aq.nml +gc_matrix_nml: GC_cb6r3_ae6_aq.nml +nr_matrix_nml: NR_cb6r3_ae6_aq.nml +tr_matrix_nml: Species_Table_TR_0.nml + +csqy_data: CSQY_DATA_cb6r3_ae6_aq +optics_data: PHOT_OPTICS.dat +omi_data: omi_cmaq_2015_361X179.dat + +init_concentrations: true + +run_aerosol: true + +mp_tracer_map: gfdl +dy_tracer_map_start: 9 + +ctm_aod: true +ctm_pmdiag: true +ctm_wb_dust: true + +ctm_stdout: maintask + +# +# Input emissions +# +# emission_sources: anthro fire pt dust prod +# emission_sources: anthro dust prod +emission_sources: anthro pt fire dust prod + +# +# Anthropogenic +# +anthro_type: anthropogenic + +# supported file formats are: +# - binary (Fortran unformatted) +# - netcdf (netCDF) +# +anthro_format: netcdf + +# emissions directory (optional) +# is replaced with the tile number in case of multitile grids, or removed otherwise +# +#anthro_path: + +# emissions file name +anthro_file: NEXUS/NEXUS_Expt.nc + +# emissions time dependency +# supported settings are: +# NetCDF only: +# - hourly read data every hour +# - daily read data every day +# - weekly read data every 7 days +# - monthly read data every calendar month +# Binary/NetCDF: +# - static read data only at startup time +# +anthro_frequency: hourly + +# list of emission species +# input emissions can be manipulated by adding multiple +# sources/sinks to the same CMAQ species, scaled by the +# provided factors (positive for sources, negative for sinks). +# For instance: +# +# NO2 0.75000 no2_source_1 kg/s +# NO2 0.25000 no2_source_2 kg/s +# NO2 -0.05000 no2_sink_1 kg/s +# +anthro_species:: + ACET 0.00000 ACET KG/M2/S + ACROLEIN 0.00000 ACROLEIN KG/M2/S + ALD2 0.00000 ALD2 KG/M2/S + ALD2_PRIMARY 0.00000 ALD2_PRIMARY KG/M2/S + ALDX 0.00000 ALDX KG/M2/S + BENZ 0.00000 BENZ KG/M2/S + BUTADIENE13 0.00000 BUTADIENE13 KG/M2/S + CH4 0.00000 CH4 KG/M2/S + CH4_INV 0.00000 CH4_INV KG/M2/S + CL2 0.00000 CL2 KG/M2/S + CO 0.00000 CO KG/M2/S + CO2_INV 0.00000 CO2_INV KG/M2/S + ETH 0.00000 ETH KG/M2/S + ETHA 0.00000 ETHA KG/M2/S + ETHY 0.00000 ETHY KG/M2/S + ETOH 0.00000 ETOH KG/M2/S + FORM 0.00000 FORM KG/M2/S + FORM_PRIMARY 0.00000 FORM_PRIMARY KG/M2/S + HCL 0.00000 HCL KG/M2/S + HONO 0.00000 HONO KG/M2/S + IOLE 0.00000 IOLE KG/M2/S + ISOP 0.00000 ISOP KG/M2/S + KET 0.00000 KET KG/M2/S + MEOH 0.00000 MEOH KG/M2/S + NAPH 0.00000 NAPH KG/M2/S + NH3 0.00000 NH3 KG/M2/S + NH3_FERT 0.00000 NH3_FERT KG/M2/S + NO 0.00000 NO KG/M2/S + NO2 0.00000 NO2 KG/M2/S + OLE 0.00000 OLE KG/M2/S + PAL 0.00000 PAL KG/M2/S + PAR 0.00000 PAR KG/M2/S + PCA 0.00000 PCA KG/M2/S + PCL 0.00000 PCL KG/M2/S + PEC 0.00000 PEC KG/M2/S + PFE 0.00000 PFE KG/M2/S + PH2O 0.00000 PH2O KG/M2/S + PK 0.00000 PK KG/M2/S + PMC 0.00000 PMC KG/M2/S + PMG 0.00000 PMG KG/M2/S + PMN 0.00000 PMN KG/M2/S + PMOTHR 0.00000 PMOTHR KG/M2/S + PNA 0.00000 PNA KG/M2/S + PNCOM 0.00000 PNCOM KG/M2/S + PNH4 0.00000 PNH4 KG/M2/S + PNO3 0.00000 PNO3 KG/M2/S + POC 0.00000 POC KG/M2/S + PRPA 0.00000 PRPA KG/M2/S + PSI 0.00000 PSI KG/M2/S + PSO4 0.00000 PSO4 KG/M2/S + PTI 0.00000 PTI KG/M2/S + SO2 0.00000 SO2 KG/M2/S + SOAALK 0.00000 SOAALK KG/M2/S + SULF 0.00000 SULF KG/M2/S + TERP 0.00000 TERP KG/M2/S + TOL 0.00000 TOL KG/M2/S + XYLMN 0.00000 XYLMN KG/M2/S + AACD + FACD + GLYXL + HGIIGAS + HGNRVA + PACD + SESQ + TOLU +:: +# +# Fengsha Dust Emission Option +# +dust_type: fengsha + +dust_format: netcdf + +dust_frequency: monthly + +#dust_file: FENGSHA_p8_10km_inputs_RRFS_CONUScompact_13km.nc +dust_file: FENGSHA_p8_10km_inputs_CONUS_775.nc + +dust_alpha: 0.05 + +dust_species:: + clayf 1.00000 clayfrac 1 + sandf 1.00000 sandfrac 1 + drag 1.00000 albedo_drag 1 + uthr 1.00000 uthres 1 +:: + +# +# Biogenic +# +bio_type: biogenic + +bio_format: netcdf + +bio_file: BEIS_RRFScmaq_C775.ncf + +bio_frequency: static + +bio_period: summer + +bio_speciation_file: gspro_biogenics_1mar2017.txt + +bio_speciation_profile: B10C6 + +bio_species:: + AVG_NOAG_GROW 1.00000 AVG_NOAG_GROW gmN/hr + AVG_NOAG_NONGROWNB3 1.00000 AVG_NOAG_NONGROW gmN/hr + AVG_NONONAG 1.00000 AVG_NONONAG gmN/hr + AVG_ACETS 1.00000 AVG_ACETS gmC/hr + AVG_ACETW 1.00000 AVG_ACETW gmC/hr + AVG_ACTACS 1.00000 AVG_ACTACS gmC/hr + AVG_ACTACW 1.00000 AVG_ACTACW gmC/hr + AVG_ACTALS 1.00000 AVG_ACTALS gmC/hr + AVG_ACTALW 1.00000 AVG_ACTALW gmC/hr + AVG_APINS 1.00000 AVG_APINS gmC/hr + AVG_APINW 1.00000 AVG_APINW gmC/hr + AVG_ATERPS 1.00000 AVG_ATERPS gmC/hr + AVG_ATERPW 1.00000 AVG_ATERPW gmC/hr + AVG_ATHUS 1.00000 AVG_ATHUS gmC/hr + AVG_ATHUW 1.00000 AVG_ATHUW gmC/hr + AVG_BPHES 1.00000 AVG_BPHES gmC/hr + AVG_BPHEW 1.00000 AVG_BPHEW gmC/hr + AVG_BPINS 1.00000 AVG_BPINS gmC/hr + AVG_BPINW 1.00000 AVG_BPINW gmC/hr + AVG_BUTES 1.00000 AVG_BUTES gmC/hr + AVG_BUTEW 1.00000 AVG_BUTEW gmC/hr + AVG_BUTOS 1.00000 AVG_BUTOS gmC/hr + AVG_BUTOW 1.00000 AVG_BUTOW gmC/hr + AVG_CAMPHS 1.00000 AVG_CAMPHS gmC/hr + AVG_CAMPHW 1.00000 AVG_CAMPHW gmC/hr + AVG_COS 1.00000 AVG_COS gmC/hr + AVG_COW 1.00000 AVG_COW gmC/hr + AVG_D3CARS 1.00000 AVG_D3CARS gmC/hr + AVG_D3CARW 1.00000 AVG_D3CARW gmC/hr + AVG_DLIMS 1.00000 AVG_DLIMS gmC/hr + AVG_DLIMW 1.00000 AVG_DLIMW gmC/hr + AVG_ETHAS 1.00000 AVG_ETHAS gmC/hr + AVG_ETHAW 1.00000 AVG_ETHAW gmC/hr + AVG_ETHES 1.00000 AVG_ETHES gmC/hr + AVG_ETHEW 1.00000 AVG_ETHEW gmC/hr + AVG_ETHOS 1.00000 AVG_ETHOS gmC/hr + AVG_ETHOW 1.00000 AVG_ETHOW gmC/hr + AVG_FORACS 1.00000 AVG_FORACS gmC/hr + AVG_FORACW 1.00000 AVG_FORACW gmC/hr + AVG_FORMS 1.00000 AVG_FORMS gmC/hr + AVG_FORMW 1.00000 AVG_FORMW gmC/hr + AVG_GTERPS 1.00000 AVG_GTERPS gmC/hr + AVG_GTERPW 1.00000 AVG_GTERPW gmC/hr + AVG_HEXAS 1.00000 AVG_HEXAS gmC/hr + AVG_HEXAW 1.00000 AVG_HEXAW gmC/hr + AVG_HEXES 1.00000 AVG_HEXES gmC/hr + AVG_HEXEW 1.00000 AVG_HEXEW gmC/hr + AVG_HEXYS 1.00000 AVG_HEXYS gmC/hr + AVG_HEXYW 1.00000 AVG_HEXYW gmC/hr + AVG_ISOPS 1.00000 AVG_ISOPS gmC/hr + AVG_ISOPW 1.00000 AVG_ISOPW gmC/hr + AVG_MBOS 1.00000 AVG_MBOS gmC/hr + AVG_MBOW 1.00000 AVG_MBOW gmC/hr + AVG_METHS 1.00000 AVG_METHS gmC/hr + AVG_METHW 1.00000 AVG_METHW gmC/hr + AVG_MYRCS 1.00000 AVG_MYRCS gmC/hr + AVG_MYRCW 1.00000 AVG_MYRCW gmC/hr + AVG_OCIMS 1.00000 AVG_OCIMS gmC/hr + AVG_OCIMW 1.00000 AVG_OCIMW gmC/hr + AVG_ORVOCS 1.00000 AVG_ORVOCS gmC/hr + AVG_ORVOCW 1.00000 AVG_ORVOCW gmC/hr + AVG_PCYMS 1.00000 AVG_PCYMS gmC/hr + AVG_PCYMW 1.00000 AVG_PCYMW gmC/hr + AVG_PROPES 1.00000 AVG_PROPES gmC/hr + AVG_PROPEW 1.00000 AVG_PROPEW gmC/hr + AVG_SABIS 1.00000 AVG_SABIS gmC/hr + AVG_SABIW 1.00000 AVG_SABIW gmC/hr + AVG_SESQTS 1.00000 AVG_SESQTS gmC/hr + AVG_SESQTW 1.00000 AVG_SESQTW gmC/hr + AVG_TRPOS 1.00000 AVG_TRPOS gmC/hr + AVG_TRPOW 1.00000 AVG_TRPOW gmC/hr + LAI_ISOPS 1.00000 LAI_ISOPS 1 + LAI_ISOPW 1.00000 LAI_ISOPW 1 + LAI_MBOS 1.00000 LAI_MBOS 1 + LAI_MBOW 1.00000 LAI_MBOW 1 + LAI_METHS 1.00000 LAI_METHS 1 + LAI_METHW 1.00000 LAI_METHW 1 +:: + +# +# Fire emissions from GBBEPx +# +fire_type: gbbepx + +# +# Note: regional_workflow sets aqm_rc_fire_file_fp from input +# parameters 'aqm_fire_dir','aqm_fire_file', and 'cdate'. +# +fire_file: Hourly_Emissions_regrid_rrfs_13km_20190801_t12z_h72.nc + +fire_frequency: hourly + +fire_plume_rise: sofiev + +fire_species:: + PAL 0.0006 PM2.5 KG/M2/S + PCA 0.0039 PM2.5 KG/M2/S + PCL 0.0415 PM2.5 KG/M2/S + PEC 0.0949 PM2.5 KG/M2/S + PFE 0.0004 PM2.5 KG/M2/S + PK 0.0294 PM2.5 KG/M2/S + PMG 0.0003 PM2.5 KG/M2/S + PMN 0.0000 PM2.5 KG/M2/S + PMOTHR 0.0137 PM2.5 KG/M2/S + PNA 0.0057 PM2.5 KG/M2/S + PNCOM 0.3232 PM2.5 KG/M2/S + PNH4 0.0088 PM2.5 KG/M2/S + PNO3 0.0013 PM2.5 KG/M2/S + POC 0.4618 PM2.5 KG/M2/S + PSI 0.0018 PM2.5 KG/M2/S + PSO4 0.0126 PM2.5 KG/M2/S + PTI 0.0001 PM2.5 KG/M2/S + NO 0.013 CO KG/M2/S + NO2 0.037 CO KG/M2/S + SO2 0.008 CO KG/M2/S + NH3 0.015 CO KG/M2/S + CO 1.000 CO KG/M2/S + ACET 0.001092 CO KG/M2/S + ALD2 0.0009828 CO KG/M2/S + ALDX 0.0030368 CO KG/M2/S + BENZ 0.0009612 CO KG/M2/S + CH4 0.0092508 CO KG/M2/S + ETH 0.0022048 CO KG/M2/S + ETHA 0.0011804 CO KG/M2/S + ETHY 0.0005304 CO KG/M2/S + ETOH 3.64e-05 CO KG/M2/S + FORM 0.0043316 CO KG/M2/S + IOLE 0.0004836 CO KG/M2/S + ISOP 0.0001976 CO KG/M2/S + KET 0.0002652 CO KG/M2/S + MEOH 0.0039364 CO KG/M2/S + OLE 0.0034424 CO KG/M2/S + PAR 0.0074776 CO KG/M2/S + PRPA 0.0004888 CO KG/M2/S + TERP 0.0004316 CO KG/M2/S + TOL 0.0013208 CO KG/M2/S + UNR 0.0100516 CO KG/M2/S + XYL 0.0002964 CO KG/M2/S + FRP 1000000 MeanFRP 1 +:: + + +pt_type: point-source + +pt_file: pt-2019080112.nc + +pt_frequency: hourly + +pt_plume_rise: default +pt_layers: 8 + +pt_latlon_names: LATITUDE LONGITUDE +pt_stack_diameter: STKDM +pt_stack_height: STKHT +pt_stack_temperature: STKTK +pt_stack_velocity: STKVE + +pt_species:: + ACET 1.0000 ACET MOL/S + ACROLEIN 1.0000 ACROLEIN MOL/S + ALD2 1.0000 ALD2 MOL/S + ALD2_PRIMARY 1.0000 ALD2_PRIMARY MOL/S + ALDX 1.0000 ALDX MOL/S + BENZ 1.0000 BENZ MOL/S + BUTADIENE13 1.0000 BUTADIENE13 MOL/S + CH4 1.0000 CH4 MOL/S + CL2 1.0000 CL2 MOL/S + CO 1.0000 CO MOL/S + ETH 1.0000 ETH MOL/S + ETHA 1.0000 ETHA MOL/S + ETHY 1.0000 ETHY MOL/S + ETOH 1.0000 ETOH MOL/S + FORM 1.0000 FORM MOL/S + FORM_PRIMARY 1.0000 FORM_PRIMARY MOL/S + HCL 1.0000 HCL MOL/S + HONO 1.0000 HONO MOL/S + IOLE 1.0000 IOLE MOL/S + ISOP 1.0000 ISOP MOL/S + KET 1.0000 KET MOL/S + MEOH 1.0000 MEOH MOL/S + NAPH 1.0000 NAPH MOL/S + NH3 1.0000 NH3 MOL/S + NH3_FERT 1.0000 NH3_FERT MOL/S + NO 1.0000 NO MOL/S + NO2 1.0000 NO2 MOL/S + NVOL 1.0000 NVOL MOL/S + OLE 1.0000 OLE MOL/S + PAL 1.0000 PAL G/S + PAR 1.0000 PAR MOL/S + PCA 1.0000 PCA G/S + PCL 1.0000 PCL G/S + PEC 1.0000 PEC G/S + PFE 1.0000 PFE G/S + PH2O 1.0000 PH2O G/S + PK 1.0000 PK G/S + PMC 1.0000 PMC G/S + PMG 1.0000 PMG G/S + PMN 1.0000 PMN G/S + PMOTHR 1.0000 PMOTHR G/S + PNA 1.0000 PNA G/S + PNCOM 1.0000 PNCOM G/S + PNH4 1.0000 PNH4 G/S + PNO3 1.0000 PNO3 G/S + POC 1.0000 POC G/S + PRPA 1.0000 PRPA MOL/S + PSI 1.0000 PSI G/S + PSO4 1.0000 PSO4 G/S + PTI 1.0000 PTI G/S + SO2 1.0000 SO2 MOL/S + SOAALK 1.0000 SOAALK MOL/S + SULF 1.0000 SULF MOL/S + TERP 1.0000 TERP MOL/S + TOL 1.0000 TOL MOL/S + UNR 1.0000 UNR MOL/S + VOC_INV 1.0000 VOC_INV G/S + XYLMN 1.0000 XYLMN MOL/S +:: + +# +# Output products +# +prod_type: product + +prod_file: aqm.prod.nc + +prod_frequency: hourly + +prod_sync: true + +prod_species:: + O3 ozone instantaneous + O3 o3min min + O3 o3max max + O3 o3ave average + PM2.5 pm25 instantaneous + PM2.5 pm25min min + PM2.5 pm25max max + PM2.5 pm25ave average +:: diff --git a/tests/parm/control.nml.IN b/tests/parm/control.nml.IN index 135ca807bf..82ddffa9c5 100644 --- a/tests/parm/control.nml.IN +++ b/tests/parm/control.nml.IN @@ -197,8 +197,10 @@ deflate_level=1 rrtmgp_nGptsLW = 128 rrtmgp_nBandsLW = 16 rrtmgp_nBandsSW = 14 + rrtmgp_lw_phys_blksz = 16 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] + progsigma = @[PROGSIGMA] / &gfdl_cloud_microphysics_nml diff --git a/tests/parm/control_thompson.nml.IN b/tests/parm/control_gfsv17.nml.IN similarity index 82% rename from tests/parm/control_thompson.nml.IN rename to tests/parm/control_gfsv17.nml.IN index 732c1f321c..b472bc2505 100644 --- a/tests/parm/control_thompson.nml.IN +++ b/tests/parm/control_gfsv17.nml.IN @@ -7,6 +7,7 @@ &diag_manager_nml prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] / &fms_io_nml @@ -60,7 +61,7 @@ deflate_level=1 nwat = 6 na_init = @[NA_INIT] d_ext = 0. - dnats = 0 + dnats = @[DNATS] fv_sg_adj = 450 d2_bg = 0. nord = 2 @@ -84,7 +85,7 @@ deflate_level=1 hord_tr = 8 adjust_dry_mass = .false. consv_te = 1. - do_sat_adj = .false. + do_sat_adj = .true. consv_am = .false. fill = .true. dwind_2d = .false. @@ -106,28 +107,23 @@ deflate_level=1 / &gfs_physics_nml - fhzero = 6 + fhzero = @[FHZERO] h2o_phys = .true. - ldiag3d = .false. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + print_diff_pgr = @[PRINT_DIFF_PGR] fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = @[IMP_PHYSICS] - ltaerosol = @[LTAEROSOL] - lradar = @[LRADAR] - ttendlim = 0.004 - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] - ext_diag_thompson = @[EXT_DIAG_THOMPSON] + imp_physics = 11 pdfcld = .false. fhswr = 3600. fhlwr = 3600. - ialb = @[IALB] - iems = @[IEMS] + ialb = 1 + iems = 1 iaer = @[IAER] - icliq_sw = @[ICLIQ_SW] + icliq_sw = 2 iovr = @[IOVR] - icloud = @[ICLOUD] ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -144,12 +140,14 @@ deflate_level=1 isatmedmf = 1 lheatstrg = @[LHEATSTRG] lseaspray = @[LSEASPRAY] - random_clds = .false. + random_clds = @[RANDOM_CLDS] trans_trac = .true. - cnvcld = .true. - imfshalcnv = 2 - imfdeepcnv = 2 + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] cdmbgwd = @[CDMBWD] + progsigma = @[PROGSIGMA] prslrd0 = 0. ivegsrc = 1 isot = 1 @@ -175,6 +173,10 @@ deflate_level=1 nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 + lgfdlmprad = .true. + cplchm = @[CPLCHM] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] effr_in = .true. ldiag_ugwp = .false. do_ugwp = .false. @@ -184,6 +186,20 @@ deflate_level=1 do_skeb = @[DO_SKEB] lndp_type = @[LNDP_TYPE] n_var_lndp = @[N_VAR_LNDP] + fscav_aero = @[FSCAV_AERO] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] / &gfdl_cloud_microphysics_nml @@ -253,8 +269,8 @@ deflate_level=1 FNVEGC = 'global_vegfrac.0.144.decpercent.grb' FNVETC = @[FNVETC] FNSOTC = @[FNSOTC] - FNSMCC = 'global_soilmgldas.statsgo.t1534.3072.1536.grb' - FNMSKH = 'global_slmask.t1534.3072.1536.grb' + FNSMCC = @[FNSMCC_control] + FNMSKH = @[FNMSKH_control] FNTSFA = '' FNACNA = '' FNSNOA = '' @@ -288,6 +304,7 @@ deflate_level=1 / &nam_stochy + STOCHINI=@[STOCHINI], SKEBNORM=1, SKEB_NPASS=30, SKEB_VDOF=5, @@ -312,9 +329,12 @@ deflate_level=1 &nam_sfcperts lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] LNDP_TAU=21600, LNDP_LSCALE=500000, ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &cires_ugwp_nml diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 8fcd55c175..5658f8e3e8 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -222,12 +222,15 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] + doGP_sgs_cnv = @[DOGP_SGS_CNV] + use_med_flux = @[USE_MED_FLUX] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] cplflx = @[CPLFLX] cplice = @[CPLICE] cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] + cpllnd = @[CPLLND] do_ca = @[DO_CA] ca_global = @[CA_GLOBAL] ca_sgs = @[CA_SGS] @@ -321,7 +324,7 @@ deflate_level=1 FNZORC = 'igbp' FNALBC = @[FNALBC] FNALBC2 = @[FNALBC2] - FNAISC = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' FNTG3C = @[FNTG3C] FNVEGC = @[FNVEGC] FNVETC = @[FNVETC] diff --git a/tests/parm/cpld_control_gfsv17.nml.IN b/tests/parm/cpld_control_gfsv17.nml.IN new file mode 100644 index 0000000000..0dc59e6b8d --- /dev/null +++ b/tests/parm/cpld_control_gfsv17.nml.IN @@ -0,0 +1,384 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = @[DOMAINS_STACK_SIZE] + print_memory_usage = .false. +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + npz = @[NPZ] + dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 10.0 + rf_cutoff = 7.5e2 + d2_bg_k1 = @[D2_BG_K1] + d2_bg_k2 = @[D2_BG_K2] + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = @[DDDMP] + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = @[DO_SAT_ADJ] + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = @[RES_LATLON_DYNAMICS] +/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = @[FHZERO] + h2o_phys = .true. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + print_diff_pgr = @[PRINT_DIFF_PGR] + fhcyc = @[FHCYC] + use_ufo = .true. + pre_rad = .false. + imp_physics = @[IMP_PHYSICS] + iovr = 3 + ltaerosol = .false. + lradar = .false. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = .false. + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + min_lakeice = 0.15 + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = @[IALB] + iems = @[IEMS] + iaer = @[IAER] + icliq_sw = 2 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + progsigma = @[PROGSIGMA] + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] + trans_trac = .true. + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] + cdmbgwd = @[CDMBWD] + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = @[IOPT_SFC] + iopt_trs = @[IOPT_TRS] + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = @[IOPT_STC] + debug = .false. + nstf_name = @[NSTF_NAME] + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = @[LGFDLMPRAD] + effr_in = .true. + ldiag_ugwp = @[LDIAG_UGWP] + fscav_aero = @[FSCAV_AERO] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + use_med_flux = @[USE_MED_FLUX] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + do_ca = @[DO_CA] + ca_global = @[CA_GLOBAL] + ca_sgs = @[CA_SGS] + nca = @[NCA] + ncells = @[NCELLS] + nlives = @[NLIVES] + nseed = @[NSEED] + nfracseed = @[NFRACSEED] + nthresh = @[NTHRESH] + ca_trigger = @[CA_TRIGGER] + nspinup = @[NSPINUP] + iseed_ca = @[ISEED_CA] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = @[KNOB_UGWP_VERSION] + launch_level = 54 +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG =.false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = @[LANDICE] + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] +/ + +&MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override'/ diff --git a/tests/parm/cpt.nml.IN b/tests/parm/cpt.nml.IN index 6b9422259a..1db708b122 100644 --- a/tests/parm/cpt.nml.IN +++ b/tests/parm/cpt.nml.IN @@ -94,20 +94,6 @@ z_tracer = .true. / -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - &external_ic_nml filtered_terrain = .true. levp = @[NPZP] diff --git a/tests/parm/csawmg3shoc127.nml.IN b/tests/parm/csawmg3shoc127.nml.IN index b03422b2ec..137187536a 100644 --- a/tests/parm/csawmg3shoc127.nml.IN +++ b/tests/parm/csawmg3shoc127.nml.IN @@ -94,20 +94,6 @@ res_latlon_dynamics = "fv3_increment.nc" / -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - &external_ic_nml filtered_terrain = .true. levp = @[NPZP] diff --git a/tests/parm/csawmgshoc.nml.IN b/tests/parm/csawmgshoc.nml.IN index 53923ad26d..c941ef2a19 100644 --- a/tests/parm/csawmgshoc.nml.IN +++ b/tests/parm/csawmgshoc.nml.IN @@ -93,20 +93,6 @@ res_latlon_dynamics = "fv3_increment.nc" / -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - &external_ic_nml filtered_terrain = .true. levp = @[NPZP] diff --git a/tests/parm/datm.streams.IN b/tests/parm/datm.streams.IN index 51a91f0770..ce6ae22883 100644 --- a/tests/parm/datm.streams.IN +++ b/tests/parm/datm.streams.IN @@ -1,5 +1,5 @@ stream_info: @[FILENAME_BASE]01 -taxmode01: cycle +taxmode01: limit mapalgo01: bilinear tInterpAlgo01: linear readMode01: single @@ -8,7 +8,7 @@ stream_offset01: 0 yearFirst01: @[SYEAR] yearLast01: @[SYEAR] yearAlign01: @[SYEAR] -stream_vectors01: "u:v" +stream_vectors01: "Sa_u:Sa_v" stream_mesh_file01: @[MESH_ATM] stream_lev_dimname01: null stream_data_files01: @[stream_files] diff --git a/tests/parm/datm.streams.multi.IN b/tests/parm/datm.streams.multi.IN new file mode 100644 index 0000000000..0132b50cea --- /dev/null +++ b/tests/parm/datm.streams.multi.IN @@ -0,0 +1,61 @@ +stream_info: CLMGSWP3v1.Solar01 CLMGSWP3v1.Precip02 CLMGSWP3v1.TPQW03 topo.observed04 + +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: coszen +readMode01: single +dtlimit01: 1.5 +stream_offset01: 0 +yearFirst01: @[SDATE] +yearLast01: @[EDATE] +yearAlign01: @[SDATE] +stream_vectors01: null +stream_mesh_file01: @[MESH_ATM_DATA] +stream_lev_dimname01: null +stream_data_files01: @[DATA_ATM01] +stream_data_variables01: "FSDS Faxa_swdn" + +taxmode02: limit +mapalgo02: bilinear +tInterpAlgo02: nearest +readMode02: single +dtlimit02: 1.5 +stream_offset02: 0 +yearFirst02: @[SDATE] +yearLast02: @[EDATE] +yearAlign02: @[SDATE] +stream_vectors02: null +stream_mesh_file02: @[MESH_ATM_DATA] +stream_lev_dimname02: null +stream_data_files02: @[DATA_ATM02] +stream_data_variables02: "PRECTmms Faxa_precn" + +taxmode03: limit +mapalgo03: bilinear +tInterpAlgo03: linear +readMode03: single +dtlimit03: 1.5 +stream_offset03: 0 +yearFirst03: @[SDATE] +yearLast03: @[EDATE] +yearAlign03: @[SDATE] +stream_vectors03: null +stream_mesh_file03: @[MESH_ATM_DATA] +stream_lev_dimname03: null +stream_data_files03: @[DATA_ATM03] +stream_data_variables03: "TBOT Sa_tbot" "WIND Sa_wind" "QBOT Sa_shum" "PSRF Sa_pbot" "PSRF Sa_pslv" "FLDS Faxa_lwdn" + +taxmode04: cycle +mapalgo04: bilinear +tInterpAlgo04: lower +readMode04: single +dtlimit04: 1.5 +stream_offset04: 0 +yearFirst04: 1 +yearLast04: 1 +yearAlign04: 1 +stream_vectors04: null +stream_mesh_file04: @[MESH_ATM_TOPO] +stream_lev_dimname04: null +stream_data_files04: @[DATA_ATM04] +stream_data_variables04: "TOPO Sa_topo" diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index 8a16417183..267dce2bd1 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -6,7 +6,6 @@ start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] -calendar: 'julian' fhrot: @[FHROT] nfhout: @[NFHOUT] nfhmax_hf: -1 diff --git a/tests/parm/diag_table/diag_additional_control_dtend b/tests/parm/diag_table/diag_additional_control_dtend index 6107eb51ad..7fd7d31365 100644 --- a/tests/parm/diag_table/diag_additional_control_dtend +++ b/tests/parm/diag_table/diag_additional_control_dtend @@ -28,6 +28,7 @@ "gfs_phys", "dtend_u_phys", "dtend_u_phys", "fv3_history", "all", .false., "none", 2 "gfs_phys", "dtend_v_phys", "dtend_v_phys", "fv3_history", "all", .false., "none", 2 + "gfs_dyn", "dtend_temp_nophys", "dtend_temp_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_u_nophys", "dtend_u_nophys", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "dtend_v_nophys", "dtend_v_nophys", "fv3_history", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_GOCART b/tests/parm/diag_table/diag_table_GOCART index 0d2d779137..d69c943eee 100644 --- a/tests/parm/diag_table/diag_table_GOCART +++ b/tests/parm/diag_table/diag_table_GOCART @@ -140,6 +140,13 @@ "gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 @@ -290,6 +297,12 @@ "gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 #============================================================================================= # diff --git a/tests/parm/diag_table/diag_table_aod b/tests/parm/diag_table/diag_table_aod index 21a6a24dc5..6519990155 100644 --- a/tests/parm/diag_table/diag_table_aod +++ b/tests/parm/diag_table/diag_table_aod @@ -115,6 +115,13 @@ "gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_aqm b/tests/parm/diag_table/diag_table_aqm new file mode 100644 index 0000000000..3b0c02483a --- /dev/null +++ b/tests/parm/diag_table/diag_table_aqm @@ -0,0 +1,519 @@ +20190801.12Z.C775.32bit.non-hydro.regional +2019 08 01 12 00 00 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_4xdaily", 6, "hours", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### + "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "h1000", "h1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h850", "h850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h700", "h700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h500", "h500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h200", "h200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h100", "h100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h50", "h50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "h10", "h10", "atmos_4xdaily", "all", .false., "none", 2 +#### +#"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 + +### +# chemical tracers advected by FV3 +### +"gfs_dyn", "no2", "no2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no", "no", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3", "o3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3", "no3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "h2o2", "h2o2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "n2o5", "n2o5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hno3", "hno3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hono", "hono", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pna", "pna", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sulf", "sulf", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pan", "pan", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pacd", "pacd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aacd", "aacd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ald2", "ald2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "panx", "panx", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "form", "form", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "mepx", "mepx", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "meoh", "meoh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rooh", "rooh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ntr1", "ntr1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ntr2", "ntr2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "facd", "facd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "co", "co", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aldx", "aldx", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "glyd", "glyd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "gly", "gly", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "mgly", "mgly", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "etha", "etha", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "etoh", "etoh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ket", "ket", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "par", "par", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acet", "acet", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "prpa", "prpa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ethy", "ethy", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "eth", "eth", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ole", "ole", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "iole", "iole", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "isop", "isop", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ispd", "ispd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "intr", "intr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ispx", "ispx", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hpld", "hpld", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "opo3", "opo3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "epox", "epox", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "terp", "terp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "benzene", "benzene", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cres", "cres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "open", "open", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "tol", "tol", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "xopn", "xopn", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "xylmn", "xylmn", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "naph", "naph", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cat1", "cat1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cron", "cron", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "opan", "opan", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ech4", "ech4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cl2", "cl2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hocl", "hocl", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "fmcl", "fmcl", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hcl", "hcl", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "clno2", "clno2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sesq", "sesq", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "soaalk", "soaalk", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vlvpo1", "vlvpo1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvpo1", "vsvpo1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvpo2", "vsvpo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvpo3", "vsvpo3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vivpo1", "vivpo1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vlvoo1", "vlvoo1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vlvoo2", "vlvoo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvoo1", "vsvoo1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvoo2", "vsvoo2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vsvoo3", "vsvoo3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pcvoc", "pcvoc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "form_primary", "form_primary", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ald2_primary", "ald2_primary", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "butadiene13", "butadiene13", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acrolein", "acrolein", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acro_primary", "acro_primary", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "tolu", "tolu", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hg", "hg", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hgiigas", "hgiigas", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aso4j", "aso4j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aso4i", "aso4i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "anh4j", "anh4j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "anh4i", "anh4i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ano3j", "ano3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ano3i", "ano3i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aalk1j", "aalk1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aalk2j", "aalk2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "axyl1j", "axyl1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "axyl2j", "axyl2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "axyl3j", "axyl3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atol1j", "atol1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atol2j", "atol2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atol3j", "atol3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "abnz1j", "abnz1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "abnz2j", "abnz2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "abnz3j", "abnz3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "apah1j", "apah1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "apah2j", "apah2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "apah3j", "apah3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atrp1j", "atrp1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atrp2j", "atrp2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aiso1j", "aiso1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aiso2j", "aiso2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asqtj", "asqtj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aorgcj", "aorgcj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aecj", "aecj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aeci", "aeci", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aothrj", "aothrj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aothri", "aothri", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "afej", "afej", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aalj", "aalj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asij", "asij", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "atij", "atij", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acaj", "acaj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "amgj", "amgj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "akj", "akj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "amnj", "amnj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acors", "acors", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asoil", "asoil", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "numatkn", "numatkn", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "numacc", "numacc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "numcor", "numcor", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srfatkn", "srfatkn", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srfacc", "srfacc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srfcor", "srfcor", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah2oj", "ah2oj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah2oi", "ah2oi", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah3opj", "ah3opj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah3opi", "ah3opi", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "anaj", "anaj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "anai", "anai", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aclj", "aclj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "acli", "acli", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aseacat", "aseacat", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aclk", "aclk", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aso4k", "aso4k", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "anh4k", "anh4k", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ano3k", "ano3k", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah2ok", "ah2ok", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ah3opk", "ah3opk", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aiso3j", "aiso3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aolgaj", "aolgaj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aolgbj", "aolgbj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aglyj", "aglyj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "apcsoj", "apcsoj", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvpo1i", "alvpo1i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvpo1i", "asvpo1i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvpo2i", "asvpo2i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvpo1j", "alvpo1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvpo1j", "asvpo1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvpo2j", "asvpo2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvpo3j", "asvpo3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "aivpo1j", "aivpo1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvoo1i", "alvoo1i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvoo2i", "alvoo2i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvoo1i", "asvoo1i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvoo2i", "asvoo2i", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvoo1j", "alvoo1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "alvoo2j", "alvoo2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvoo1j", "asvoo1j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvoo2j", "asvoo2j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "asvoo3j", "asvoo3j", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_alk1", "sv_alk1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_alk2", "sv_alk2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_xyl1", "sv_xyl1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_xyl2", "sv_xyl2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_tol1", "sv_tol1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_tol2", "sv_tol2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_bnz1", "sv_bnz1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_bnz2", "sv_bnz2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_pah1", "sv_pah1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_pah2", "sv_pah2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_trp1", "sv_trp1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_trp2", "sv_trp2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_iso1", "sv_iso1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_iso2", "sv_iso2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sv_sqt", "sv_sqt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "lv_pcsog", "lv_pcsog", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3_ave", "o3_ave", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no_ave", "no_ave", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no2_ave", "no2_ave", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25_ave", "pm25_ave", "fv3_history", "all", .false., "none", 2 + +### +# aerosol diagnostics +### +"gfs_dyn", "pm25at", "pm25at", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25ac", "pm25ac", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25co", "pm25co", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25_tot", "pm25_tot", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "aod", "aod", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_gfsv16 b/tests/parm/diag_table/diag_table_gfsv16 index 9f45077058..f4ad6dcf0c 100644 --- a/tests/parm/diag_table/diag_table_gfsv16 +++ b/tests/parm/diag_table/diag_table_gfsv16 @@ -71,6 +71,13 @@ "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 #"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag b/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag index 43fcd7e5e5..841fa0b1ad 100644 --- a/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag +++ b/tests/parm/diag_table/diag_table_gfsv16_thompson_extdiag @@ -71,6 +71,13 @@ "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 #"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_p7.2_template b/tests/parm/diag_table/diag_table_gfsv17_template similarity index 96% rename from tests/parm/diag_table/diag_table_p7.2_template rename to tests/parm/diag_table/diag_table_gfsv17_template index 59f0d9e37f..609f806054 100644 --- a/tests/parm/diag_table/diag_table_p7.2_template +++ b/tests/parm/diag_table/diag_table_gfsv17_template @@ -111,6 +111,13 @@ "gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 @@ -159,6 +166,7 @@ "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hafs b/tests/parm/diag_table/diag_table_hafs index cfa7e4a362..9a4ddfe0ec 100644 --- a/tests/parm/diag_table/diag_table_hafs +++ b/tests/parm/diag_table/diag_table_hafs @@ -155,6 +155,13 @@ "gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hafs_template b/tests/parm/diag_table/diag_table_hafs_template index c0df92f55c..802adbdc4b 100644 --- a/tests/parm/diag_table/diag_table_hafs_template +++ b/tests/parm/diag_table/diag_table_hafs_template @@ -195,6 +195,13 @@ ufs.hafs "gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hrrr b/tests/parm/diag_table/diag_table_hrrr index ba355a93e4..ec67502b39 100644 --- a/tests/parm/diag_table/diag_table_hrrr +++ b/tests/parm/diag_table/diag_table_hrrr @@ -131,6 +131,13 @@ "gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_hrrr_stoch b/tests/parm/diag_table/diag_table_hrrr_stoch index 813861f854..df6b2b859a 100644 --- a/tests/parm/diag_table/diag_table_hrrr_stoch +++ b/tests/parm/diag_table/diag_table_hrrr_stoch @@ -131,6 +131,13 @@ "gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_lam b/tests/parm/diag_table/diag_table_lam index 953e6dfd2f..03548ec076 100644 --- a/tests/parm/diag_table/diag_table_lam +++ b/tests/parm/diag_table/diag_table_lam @@ -1,9 +1,9 @@ -20181015.00Z.C3357.32bit.non-hydro -2018 10 15 00 0 0 +20220823.06Z +2022 08 23 06 0 0 #output files "grid_spec", -1, "months", 1, "days", "time" "atmos_static", -1, "hours", 1, "hours", "time" -#"atmos_4xdaily", 6, "hours", 1, "days", "time" +###"atmos_4xdaily", 6, "hours", 1, "days", "time" "fv3_history", 3, "hours", 1, "hours", "time" "fv3_history2d", 3, "hours", 1, "hours", "time" @@ -22,75 +22,75 @@ ### # 4x daily output ### -# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 #### -# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 #### -# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 #### #"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 #### -# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 #### -# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 -# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +##"dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 ### # gfs static data ### @@ -100,28 +100,32 @@ "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 ### -# FV3 variabls needed for NGGPS evaluation -### +#============================================================================================= "gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "q_rimef", "q_rimef", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "q_rimef", "q_rimef", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 -"gfs_dyn", "pfnh", "pfnh", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "pfhy", "preshy", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pfnh", "presnh", "fv3_history", "all", .false., "none", 2 #"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 #"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 -#"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 + +### +# Max hourly fields +### "gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 @@ -144,9 +148,18 @@ "gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +# Reflectivity from microphysics "gfs_phys", "refl_10cm", "refl_10cm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 @@ -168,24 +181,24 @@ "gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 @@ -193,11 +206,69 @@ "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 #"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 + +#"gfs_phys", "pahi", "pahi", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "pah_ave", "pah_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "ecan_acc", "ecan_acc", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "etran_acc", "etran_acc", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "edir_acc", "edir_acc", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "wa_acc", "wa_acc", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "lfrac", "lfrac", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 + "gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "rainc", "cnvprcp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 @@ -257,50 +328,10 @@ "gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 -"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + # Aerosols (CCN, IN) from Thompson microphysics -"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 -"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +#"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 "gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_gfsv16_merra2 b/tests/parm/diag_table/diag_table_mr2 similarity index 94% rename from tests/parm/diag_table/diag_table_gfsv16_merra2 rename to tests/parm/diag_table/diag_table_mr2 index 091492358c..4c7e9cda7e 100644 --- a/tests/parm/diag_table/diag_table_gfsv16_merra2 +++ b/tests/parm/diag_table/diag_table_mr2 @@ -1,5 +1,5 @@ -20210322.06Z.C96.64bit.non-mono -2021 03 22 06 0 0 +20161003.00Z.C96.64bit.non-mono +2016 10 03 00 0 0 "fv3_history", 0, "hours", 1, "hours", "time" "fv3_history2d", 0, "hours", 1, "hours", "time" @@ -71,9 +71,18 @@ "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 #"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 "gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_noquilt b/tests/parm/diag_table/diag_table_noquilt new file mode 100644 index 0000000000..f82a10b687 --- /dev/null +++ b/tests/parm/diag_table/diag_table_noquilt @@ -0,0 +1,345 @@ +20181015.00Z +2018 10 15 00 0 0 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +"atmos_4xdaily", 6, "hours", 1, "days", "time" +"fv3_history", 3, "hours", 1, "hours", "time" +"fv3_history2d", 3, "hours", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### + "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +#"dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### + "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 + "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "q_rimef", "q_rimef", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pfnh", "pfnh", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "cld_amt", "cld_amt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refl_10cm", "refl_10cm", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_p8_gocart_micro b/tests/parm/diag_table/diag_table_p8_gocart_micro new file mode 100644 index 0000000000..c9d938dc2b --- /dev/null +++ b/tests/parm/diag_table/diag_table_p8_gocart_micro @@ -0,0 +1,313 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +# chemical tracers advected by FV3 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_p8_template b/tests/parm/diag_table/diag_table_p8_template new file mode 100644 index 0000000000..609f806054 --- /dev/null +++ b/tests/parm/diag_table/diag_table_p8_template @@ -0,0 +1,311 @@ +@[SYEAR]@[SMONTH]@[SDAY].@[SHOUR]Z.@[ATMRES].64bit.non-mono +@[SYEAR] @[SMONTH] @[SDAY] @[SHOUR] 0 0 + +"fv3_history", 0, "hours", 1, "hours", "time" +"fv3_history2d", 0, "hours", 1, "hours", "time" +###################### +"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "1901 1 1 0 0 0" +"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +############################################## +# static fields + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + +# ocean output TSUV and others + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# save daily SST + "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + +# Z-Space Fields Provided for CMIP6 (CMOR Names): +#=============================================== + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + +# forcing + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +# +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +# chemical tracers advected by FV3 +"gfs_dyn", "so2", "so2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "so4", "so4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dms", "dms", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "msa", "msa", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc1", "bc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "bc2", "bc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc1", "oc1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "oc2", "oc2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust1", "dust1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust2", "dust2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust3", "dust3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust4", "dust4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "dust5", "dust5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas1", "seas1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas2", "seas2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas3", "seas3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas4", "seas4", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "seas5", "seas5", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh3", "nh3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "nh4a", "nh4a", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an1", "no3an1", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an2", "no3an2", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "no3an3", "no3an3", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm25", "pm25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "pm10", "pm10", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cldfra", "cldfra", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "AOD_550", "aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DU_AOD_550", "du_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SU_AOD_550", "su_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "BC_AOD_550", "bc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "OC_AOD_550", "oc_aod550", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "SS_AOD_550", "ss_aod550", "fv3_history2d", "all", .false., "none", 2 +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_rap b/tests/parm/diag_table/diag_table_rap index 73572a1d97..e2dd3144dd 100644 --- a/tests/parm/diag_table/diag_table_rap +++ b/tests/parm/diag_table/diag_table_rap @@ -111,6 +111,13 @@ #"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 #"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 @@ -300,6 +307,44 @@ "gfs_sfc", "snowfall_acc", "snowfall_acc", "fv3_history2d", "all", .false., "none", 2 "gfs_sfc", "swe_snowfall_acc", "swe_snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +# Diagnostic variables for Unified Gravity Wave Physics (UGWP) +"gfs_phys", "dws3dt_ogw", "dws3dt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_obl", "dws3dt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_oss", "dws3dt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dws3dt_ofd", "dws3dt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ogw", "ldu3dt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_obl", "ldu3dt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_oss", "ldu3dt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ofd", "ldu3dt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldu3dt_ngw", "ldu3dt_ngw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldv3dt_ngw", "ldv3dt_ngw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ldt3dt_ngw", "ldt3dt_ngw", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "dudt_ogw", "dudt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_ogw", "dvdt_ogw", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_obl", "dudt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_obl", "dvdt_obl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_oss", "dudt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_oss", "dvdt_oss", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dudt_ofd", "dudt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvdt_ofd", "dvdt_ofd", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_ogwcol", "du_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_ogwcol", "dv_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_oblcol", "du_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_oblcol", "dv_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_osscol", "du_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_osscol", "dv_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du_ofdcol", "du_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv_ofdcol", "dv_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_ogwcol", "du3_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_ogwcol", "dv3_ogwcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_oblcol", "du3_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_oblcol", "dv3_oblcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_osscol", "du3_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_osscol", "dv3_osscol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "du3_ofdcol", "du3_ofdcol", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dv3_ofdcol", "dv3_ofdcol", "fv3_history2d", "all", .false., "none", 2 + #============================================================================================= # #====> This file can be used with diag_manager/v2.0a (or higher) <==== diff --git a/tests/parm/diag_table/diag_table_rap_noah b/tests/parm/diag_table/diag_table_rap_noah index f964f995f1..00fe068944 100644 --- a/tests/parm/diag_table/diag_table_rap_noah +++ b/tests/parm/diag_table/diag_table_rap_noah @@ -111,6 +111,13 @@ #"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 #"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_regional b/tests/parm/diag_table/diag_table_regional index e519db93b0..f82a10b687 100644 --- a/tests/parm/diag_table/diag_table_regional +++ b/tests/parm/diag_table/diag_table_regional @@ -147,6 +147,13 @@ "gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "refl_10cm", "refl_10cm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_rrfs_a b/tests/parm/diag_table/diag_table_rrfs_a new file mode 100644 index 0000000000..152269f36e --- /dev/null +++ b/tests/parm/diag_table/diag_table_rrfs_a @@ -0,0 +1,384 @@ +20210531.03Z.C3359.32bit.non-hydro.regional +2021 05 31 03 00 00 + +"grid_spec", -1, "months", 1, "days", "time" +"atmos_static", -1, "hours", 1, "hours", "time" +#"atmos_4xdaily", 1, "hours", 1, "days", "time" +"fv3_history", 1, "years", 1, "hours", "time" +"fv3_history2d", 1, "years", 1, "hours", "time" + +# +#======================= +# ATMOSPHERE DIAGNOSTICS +#======================= +### +# grid_spec +### + "dynamics", "grid_lon", "grid_lon", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lat", "grid_lat", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_lont", "grid_lont", "grid_spec", "all", .false., "none", 2, + "dynamics", "grid_latt", "grid_latt", "grid_spec", "all", .false., "none", 2, + "dynamics", "area", "area", "grid_spec", "all", .false., "none", 2, +### +# 4x daily output +### +# "dynamics", "slp", "slp", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort850", "vort850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vort200", "vort200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "us", "us", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u1000", "u1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u850", "u850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u700", "u700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u500", "u500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u200", "u200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u100", "u100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u50", "u50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "u10", "u10", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "vs", "vs", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v1000", "v1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v850", "v850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v700", "v700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v500", "v500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v200", "v200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v100", "v100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v50", "v50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "v10", "v10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "tm", "tm", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t1000", "t1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t850", "t850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t700", "t700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t500", "t500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t200", "t200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t100", "t100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t50", "t50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "t10", "t10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "z1000", "z1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z850", "z850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z700", "z700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z500", "z500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z200", "z200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z100", "z100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z50", "z50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "z10", "z10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "w1000", "w1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w850", "w850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w700", "w700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w500", "w500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "w200", "w200", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "q1000", "q1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q850", "q850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q700", "q700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q500", "q500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q200", "q200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q100", "q100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q50", "q50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "q10", "q10", "atmos_4xdaily", "all", .false., "none", 2 +#### +# "dynamics", "rh1000", "rh1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh850", "rh850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh700", "rh700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh500", "rh500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "rh200", "rh200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg1000", "omg1000", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg850", "omg850", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg700", "omg700", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg500", "omg500", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg200", "omg200", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg100", "omg100", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg50", "omg50", "atmos_4xdaily", "all", .false., "none", 2 +# "dynamics", "omg10", "omg10", "atmos_4xdaily", "all", .false., "none", 2 +### +# gfs static data +### + "dynamics", "pk", "pk", "atmos_static", "all", .false., "none", 2 + "dynamics", "bk", "bk", "atmos_static", "all", .false., "none", 2 + "dynamics", "hyam", "hyam", "atmos_static", "all", .false., "none", 2 + "dynamics", "hybm", "hybm", "atmos_static", "all", .false., "none", 2 + "dynamics", "zsurf", "zsurf", "atmos_static", "all", .false., "none", 2 +### +# FV3 variabls needed for NGGPS evaluation +### +"gfs_dyn", "ucomp", "ugrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vcomp", "vgrd", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "sphum", "spfh", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "temp", "tmp", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "liq_wat", "clwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "o3mr", "o3mr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delp", "dpres", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "delz", "delz", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "w", "dzdt", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ice_wat", "icmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "rainwat", "rwmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "snowwat", "snmr", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "graupel", "grle", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "ps", "pressfc", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "hs", "hgtsfc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "refl_10cm" "refl_10cm" "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 +#"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 + +"gfs_dyn", "wmaxup", "upvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "wmaxdn", "dnvvelmax", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax03", "uhmax03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmax25", "uhmax25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin03", "uhmin03", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "uhmin25", "uhmin25", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort01", "maxvort01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 + +"gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcp_ave", "prate_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "totprcpb_ave", "prateb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRF", "dlwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DLWRFI", "dlwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRF", "ulwrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFI", "ulwrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRF", "dswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFI", "dswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRF", "uswrf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFI", "uswrf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "DSWRFtoa", "dswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "USWRFtoa", "uswrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ULWRFtoa", "ulwrf_avetoa","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gflux_ave", "gflux_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hpbl", "hpbl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl_ave", "lhtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl_ave", "shtfl_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pwat", "pwatclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "soilm", "soilm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_aveclm", "tcdc_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avebndcl", "tcdc_avebndcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avehcl", "tcdc_avehcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avelcl", "tcdc_avelcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDC_avemcl", "tcdc_avemcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TCDCcnvcl", "tcdccnvcl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclt", "prescnvclt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PREScnvclb", "prescnvclb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehct", "pres_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avehcb", "pres_avehcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avehct", "tmp_avehct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemct", "pres_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avemcb", "pres_avemcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avemct", "tmp_avemct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelct", "pres_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "PRES_avelcb", "pres_avelcb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "TEMP_avelct", "tmp_avelct", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u-gwd_ave", "u-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v-gwd_ave", "v-gwd_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +#"gfs_phys", "cnvw", "cnvcldwat", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "u10max", "u10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10max", "v10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spd10max", "spd10max", "fv3_history2d", "all", .false., "none", 2 +"gfs_dyn", "ustm", "ustm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "vstm", "vstm", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh01", "srh01", "fv3_history", "all", .false., "none", 2 +"gfs_dyn", "srh03", "srh03", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "pratemax", "pratemax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax", "refdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "refdmax263k","refdmax263k","fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02max", "t02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "t02min", "t02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02max", "rh02max", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rh02min", "rh02min", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "crain", "crain", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tprcp", "tprcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hgtsfc", "orog", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "weasd", "weasd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "f10m", "f10m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "q2m", "spfh2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "t2m", "tmp2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tsfc", "tmpsfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vtype", "vtype", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "stype", "sotyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slmsksfc", "land", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "vfracsfc", "veg", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zorlsfc", "sfcr", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "uustar", "fricv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt1", "soilt1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt2", "soilt2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt3", "soilt3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt4", "soilt4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt5", "soilt5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt6", "soilt6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt7", "soilt7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt8", "soilt8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilt9", "soilt9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw1", "soilw1" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw2", "soilw2" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw3", "soilw3" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw4", "soilw4" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw5", "soilw5" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw6", "soilw6" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw7", "soilw7" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw8", "soilw8" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "soilw9", "soilw9" "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_1", "soill1", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_2", "soill2", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_3", "soill3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_4", "soill4", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_5", "soill5", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_6", "soill6", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_7", "soill7", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_8", "soill8", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slc_9", "soill9", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "slope", "sltyp", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnsf", "alnsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alnwf", "alnwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvsf", "alvsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "alvwf", "alvwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "canopy", "cnwat", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facsf", "facsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "facwf", "facwf", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffhh", "ffhh", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "ffmm", "ffmm", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "fice", "icec", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "hice", "icetk", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snoalb", "snoalb", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmax", "shdmax", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "shdmin", "shdmin", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "snowd", "snod", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tg3", "tg3", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tisfc", "tisfc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "tref", "tref", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "z_c", "zc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_0", "c0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "c_d", "cd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_0", "w0", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "w_d", "wd", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xt", "xt", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xz", "xz", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "dt_cool", "dtcool", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xs", "xs", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xu", "xu", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xv", "xv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xtts", "xtts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "xzts", "xzts", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "d_conv", "dconv", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "qrain", "qrain", "fv3_history2d", "all", .false., "none", 2 + +"gfs_phys", "acond", "acond", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cduvb_ave", "cduvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cpofp", "cpofp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "duvb_ave", "duvb_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdlf_ave", "csdlf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_ave", "csusf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csusf_avetoa", "csusftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csdsf_ave", "csdsf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_ave", "csulf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "csulf_avetoa", "csulftoa", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "cwork_ave", "cwork_aveclm", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evbs_ave", "evbs_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "evcw_ave", "evcw_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "fldcp", "fldcp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wet1", "wet1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "hgt_hyblev1", "hgt_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfh_hyblev1", "spfh_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ugrd_hyblev1", "ugrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vgrd_hyblev1", "vgrd_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmp_hyblev1", "tmp_hyblev1", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "gfluxi", "gflux", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "lhtfl", "lhtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "shtfl", "shtfl", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr", "pevpr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "pevpr_ave", "pevpr_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sbsno_ave", "sbsno_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sfexc", "sfexc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snohf", "snohf", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "snowc_ave", "snowc_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmax2m", "spfhmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "spfhmin2m", "spfhmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmax2m", "tmax_max2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tmpmin2m", "tmin_min2m", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "ssrun_acc", "ssrun_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "sunsd_acc", "sunsd_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "watr_acc", "watr_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "wilt", "wilt", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vbdsf_ave", "vbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "vddsf_ave", "vddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nbdsf_ave", "nbdsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "nddsf_ave", "nddsf_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "trans_ave", "trans_ave", "fv3_history2d", "all", .false., "none", 2 +# Aerosols (CCN, IN) from Thompson microphysics +"gfs_phys", "nwfa", "nwfa", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "nifa", "nifa", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "nwfa2d", "nwfa2d", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "nifa2d", "nifa2d", "fv3_history2d", "all", .false., "none", 2 +# Cloud effective radii from Thompson and WSM6 microphysics +"gfs_phys", "cleffr", "cleffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cieffr", "cieffr", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "cseffr", "cseffr", "fv3_history", "all", .false., "none", 2 +# Prognostic/diagnostic variables from MYNN +"gfs_phys", "QC_BL", "qc_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "CLDFRA_BL", "cldfra_bl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "EL_PBL", "el_pbl", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "QKE", "qke", "fv3_history", "all", .false., "none", 2 +"gfs_sfc", "maxmf", "maxmf", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "nupdraft", "nupdrafts", "fv3_history2d", "all", .false., "none", 2 +#"gfs_sfc", "ktop_shallow", "ktop_shallow", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "zol", "zol", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flhc", "flhc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "flqc", "flqc", "fv3_history2d", "all", .false., "none", 2 +# Prognostic/diagnostic variables from RUC LSM +"gfs_sfc", "snowfall_acc", "snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +"gfs_sfc", "swe_snowfall_acc", "swe_snowfall_acc", "fv3_history2d", "all", .false., "none", 2 +# Stochastic physics +"gfs_phys", "sppt_wts", "sppt_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebu_wts", "skebu_wts", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "skebv_wts", "skebv_wts", "fv3_history", "all", .false., "none", 2 +"dynamics", "diss_est", "diss_est", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "shum_wts", "shum_wts", "fv3_history", "all", .false., "none", 2 + +#============================================================================================= +# +#====> This file can be used with diag_manager/v2.0a (or higher) <==== +# +# +# FORMATS FOR FILE ENTRIES (not all input values are used) +# ------------------------ +# +#"file_name", output_freq, "output_units", format, "time_units", "long_name", +# +# +#output_freq: > 0 output frequency in "output_units" +# = 0 output frequency every time step +# =-1 output frequency at end of run +# +#output_units = units used for output frequency +# (years, months, days, minutes, hours, seconds) +# +#time_units = units used to label the time axis +# (days, minutes, hours, seconds) +# +# +# FORMAT FOR FIELD ENTRIES (not all input values are used) +# ------------------------ +# +#"module_name", "field_name", "output_name", "file_name" "time_sampling", time_avg, "other_opts", packing +# +#time_avg = .true. or .false. +# +#packing = 1 double precision +# = 2 float +# = 4 packed 16-bit integers +# = 8 packed 1-byte (not tested?) diff --git a/tests/parm/diag_table/diag_table_template b/tests/parm/diag_table/diag_table_template index 184005e457..37f7765f67 100644 --- a/tests/parm/diag_table/diag_table_template +++ b/tests/parm/diag_table/diag_table_template @@ -84,6 +84,13 @@ #"gfs_dyn", "ice_nc", "nicp", "fv3_history", "all", .false., "none", 2 #"gfs_dyn", "rain_nc", "ntrnc", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_thompson b/tests/parm/diag_table/diag_table_thompson index c5468b9f6c..588b58b98f 100644 --- a/tests/parm/diag_table/diag_table_thompson +++ b/tests/parm/diag_table/diag_table_thompson @@ -122,6 +122,13 @@ "gfs_dyn", "maxvort02", "maxvort02", "fv3_history", "all", .false., "none", 2 "gfs_dyn", "maxvorthy1", "maxvorthy1", "fv3_history", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "ALBDO_ave", "albdo_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcp_ave", "cprat_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "cnvprcpb_ave", "cpratb_ave", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/diag_table/diag_table_wam b/tests/parm/diag_table/diag_table_wam index 02becf1843..4f55f96e4c 100644 --- a/tests/parm/diag_table/diag_table_wam +++ b/tests/parm/diag_table/diag_table_wam @@ -69,6 +69,13 @@ "gfs_phys", "dusfc", "uflx_ave", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "dvsfc", "vflx_ave", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzr", "frzr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frzrb", "frzrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozr", "frozr", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "frozrb", "frozrb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowp", "tsnowp", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "tsnowpb", "tsnowpb", "fv3_history2d", "all", .false., "none", 2 +"gfs_phys", "rhonewsn", "rhonewsn", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "psurf", "pressfc", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "u10m", "ugrd10m", "fv3_history2d", "all", .false., "none", 2 "gfs_phys", "v10m", "vgrd10m", "fv3_history2d", "all", .false., "none", 2 diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 7a571e8f71..d5d70f28f1 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -37,6 +37,10 @@ canonical_units: kg m-2 s-1 description: atmosphere export # + - standard_name: Faxa_ocph + canonical_units: kg m-2 s-1 + description: atmosphere export + # - standard_name: Faxa_dstdry canonical_units: kg m-2 s-1 description: atmosphere export @@ -65,6 +69,7 @@ description: atmosphere export # - standard_name: Faxa_rainc + alias: mean_prec_rate_conv canonical_units: kg m-2 s-1 description: atmosphere export # @@ -120,6 +125,11 @@ canonical_units: Pa description: atmosphere export - pressure at lowest model layer # + - standard_name: Sa_prsl + alias: inst_pres_height_lowest_from_phys + canonical_units: Pa + description: atmosphere export - pressure at lowest model layer + # - standard_name: Sa_pslv alias: inst_pres_height_surface canonical_units: Pa @@ -134,6 +144,11 @@ canonical_units: kg kg-1 description: atmosphere export - bottom layer specific humidity # + - standard_name: Sa_qa + alias: inst_spec_humid_height_lowest_from_phys + canonical_units: kg kg-1 + description: atmosphere export - bottom layer specific humidity + # - standard_name: Sa_tbot alias: inst_temp_height_lowest canonical_units: K @@ -146,6 +161,11 @@ canonical_units: K description: atmosphere export - sea surface skin temperature # + - standard_name: Sa_ta + alias: inst_temp_height_lowest_from_phys + canonical_units: K + description: atmosphere export - bottom layer temperature + # - standard_name: Sa_u alias: inst_zonal_wind_height_lowest canonical_units: m s-1 @@ -156,6 +176,16 @@ canonical_units: m s-1 description: atmosphere export - bottom layer meridional wind # + - standard_name: Sa_ua + alias: inst_zonal_wind_height_lowest_from_phys + canonical_units: m s-1 + description: atmosphere export - bottom layer zonal wind + # + - standard_name: Sa_va + alias: inst_merid_wind_height_lowest_from_phys + canonical_units: m s-1 + description: atmosphere export - bottom layer meridional wind + # - standard_name: Sa_wspd alias: inst_wind_speed_height_lowest canonical_units: m s-1 @@ -181,16 +211,40 @@ canonical_units: N m-2 description: atmosphere export - meridional component of momentum flux # + - standard_name: Faxx_evap + canonical_units: kg m-2 s-1 + description: atmosphere import + # - standard_name: Faxa_lat alias: mean_laten_heat_flx canonical_units: W m-2 description: atmosphere export - latent heat flux # + - standard_name: Faxx_lat + alias: mean_laten_heat_flx + canonical_units: W m-2 + description: atmosphere import + # - standard_name: Faxx_lwup alias: mean_up_lw_flx canonical_units: W m-2 description: atmosphere import - merged ocn/ice flux # + - standard_name: Faxx_sen + alias: mean_sensi_heat_flx + canonical_units: W m-2 + description: atmosphere import + # + - standard_name: Faxx_taux + alias: mean_zonal_moment_flx + canonical_units: N m-2 + description: atmosphere import - zonal component of momentum flux + # + - standard_name: Faxx_tauy + alias: mean_merid_moment_flx + canonical_units: N m-2 + description: atmosphere import - meridional component of momentum flux + # - standard_name: Sa_ofrac alias: openwater_frac_in_atm canonical_units: 1 @@ -249,6 +303,16 @@ canonical_units: m description: orography # + - standard_name: Sa_exner + alias: inst_exner_function_height_lowest + canonical_units: 1 + description: dimensionless exner function at surface adjacent layer + # + - standard_name: Sa_ustar + alias: surface_friction_velocity + canonical_units: m s-1 + description: surface friction velocity + # #----------------------------------- # section: sea-ice export #----------------------------------- @@ -415,6 +479,14 @@ canonical_units: m description: sea-ice export - volume of snow per unit area # + - standard_name: Si_thick + canonical_units: m + description: sea-ice export - ice thickness + # + - standard_name: Si_floediam + canonical_units: m + description: sea-ice export - ice floe diameter + # #----------------------------------- # section: ocean export to mediator #----------------------------------- @@ -625,6 +697,35 @@ description: mediator calculation - atm/ocn specific humidity flux # #----------------------------------- + # fields to use fluxes from mediator + #----------------------------------- + # + - standard_name: Faox_lat + alias: mean_laten_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface latent heat flux + # + - standard_name: Faox_sen + alias: mean_sensi_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface sensible heat flux + # + - standard_name: Faox_lwup + alias: mean_up_lw_flx_ocn + canonical_units: W m-2 + description: mediator export - long wave radiation flux over the ocean + # + - standard_name: Faox_taux + alias: stress_on_air_ocn_zonal + canonical_units: N m-2 + description: mediator export + # + - standard_name: Faox_tauy + alias: stress_on_air_ocn_merid + canonical_units: N m-2 + description: mediator export + # + #----------------------------------- # section: atmosphere fields that need to be defined but are not used #----------------------------------- # @@ -795,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 @@ -809,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 @@ -907,6 +993,48 @@ - standard_name: Sw_wavsvv alias: wavsvv # + - 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 #----------------------------------- @@ -999,6 +1127,32 @@ canonical_units: K description: two meter temperature # + #----------------------------------- + # section: land export + #----------------------------------- + # + - standard_name: Sl_lfrac + canonical_units: 1 + description: land export + # + - standard_name: Sl_lfrin + canonical_units: 1 + description: land export + # + - standard_name: Sl_t + canonical_units: K + description: land export + # - standard_name: inst_tracer_diag_aod canonical_units: 1 description: AOD + # + - standard_name: Fall_lat + alias: mean_laten_heat_flx_lnd_to_atm + canonical_units: W m-2 + description: land export to atm - atm/lnd latent heat flux + # + - standard_name: Fall_sen + alias: mean_sensi_heat_flx_lnd_to_atm + canonical_units: W m-2 + description: land export to atm - atm/lnd sensible heat flux diff --git a/tests/parm/field_table/field_table_aqm b/tests/parm/field_table/field_table_aqm new file mode 100644 index 0000000000..349817bf59 --- /dev/null +++ b/tests/parm/field_table/field_table_aqm @@ -0,0 +1,979 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "rainwat" + "longname", "rain mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "snowwat" + "longname", "snow mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic air quality tracers + "TRACER", "atmos_mod", "NO2" + "longname", "NO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NO" + "longname", "NO" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "O3" + "longname", "O3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NO3" + "longname", "NO3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "H2O2" + "longname", "H2O2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "N2O5" + "longname", "N2O5" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HNO3" + "longname", "HNO3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HONO" + "longname", "HONO" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PNA" + "longname", "PNA" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SO2" + "longname", "SO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SULF" + "longname", "SULF" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PAN" + "longname", "PAN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PACD" + "longname", "PACD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AACD" + "longname", "AACD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALD2" + "longname", "ALD2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PANX" + "longname", "PANX" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "FORM" + "longname", "FORM" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "MEPX" + "longname", "MEPX" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "MEOH" + "longname", "MEOH" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ROOH" + "longname", "ROOH" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NTR1" + "longname", "NTR1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NTR2" + "longname", "NTR2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "FACD" + "longname", "FACD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CO" + "longname", "CO" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALDX" + "longname", "ALDX" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "GLYD" + "longname", "GLYD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "GLY" + "longname", "GLY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "MGLY" + "longname", "MGLY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ETHA" + "longname", "ETHA" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ETOH" + "longname", "ETOH" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "KET" + "longname", "KET" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PAR" + "longname", "PAR" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACET" + "longname", "ACET" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PRPA" + "longname", "PRPA" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ETHY" + "longname", "ETHY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ETH" + "longname", "ETH" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "OLE" + "longname", "OLE" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "IOLE" + "longname", "IOLE" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ISOP" + "longname", "ISOP" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ISPD" + "longname", "ISPD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "INTR" + "longname", "INTR" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ISPX" + "longname", "ISPX" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HPLD" + "longname", "HPLD" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "OPO3" + "longname", "OPO3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "EPOX" + "longname", "EPOX" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "TERP" + "longname", "TERP" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "BENZENE" + "longname", "BENZENE" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CRES" + "longname", "CRES" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "OPEN" + "longname", "OPEN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "TOL" + "longname", "TOL" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "XOPN" + "longname", "XOPN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "XYLMN" + "longname", "XYLMN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NAPH" + "longname", "NAPH" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CAT1" + "longname", "CAT1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CRON" + "longname", "CRON" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "OPAN" + "longname", "OPAN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ECH4" + "longname", "ECH4" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CL2" + "longname", "CL2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HOCL" + "longname", "HOCL" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "FMCL" + "longname", "FMCL" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HCL" + "longname", "HCL" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "CLNO2" + "longname", "CLNO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SESQ" + "longname", "SESQ" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SOAALK" + "longname", "SOAALK" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VLVPO1" + "longname", "VLVPO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVPO1" + "longname", "VSVPO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVPO2" + "longname", "VSVPO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVPO3" + "longname", "VSVPO3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VIVPO1" + "longname", "VIVPO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VLVOO1" + "longname", "VLVOO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VLVOO2" + "longname", "VLVOO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVOO1" + "longname", "VSVOO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVOO2" + "longname", "VSVOO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "VSVOO3" + "longname", "VSVOO3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "PCVOC" + "longname", "PCVOC" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "FORM_PRIMARY" + "longname", "FORM_PRIMARY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALD2_PRIMARY" + "longname", "ALD2_PRIMARY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "BUTADIENE13" + "longname", "BUTADIENE13" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACROLEIN" + "longname", "ACROLEIN" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACRO_PRIMARY" + "longname", "ACRO_PRIMARY" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "TOLU" + "longname", "TOLU" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HG" + "longname", "HG" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "HGIIGAS" + "longname", "HGIIGAS" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASO4J" + "longname", "ASO4J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASO4I" + "longname", "ASO4I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANH4J" + "longname", "ANH4J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANH4I" + "longname", "ANH4I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANO3J" + "longname", "ANO3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANO3I" + "longname", "ANO3I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AALK1J" + "longname", "AALK1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AALK2J" + "longname", "AALK2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AXYL1J" + "longname", "AXYL1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AXYL2J" + "longname", "AXYL2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AXYL3J" + "longname", "AXYL3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATOL1J" + "longname", "ATOL1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATOL2J" + "longname", "ATOL2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATOL3J" + "longname", "ATOL3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ABNZ1J" + "longname", "ABNZ1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ABNZ2J" + "longname", "ABNZ2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ABNZ3J" + "longname", "ABNZ3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "APAH1J" + "longname", "APAH1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "APAH2J" + "longname", "APAH2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "APAH3J" + "longname", "APAH3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATRP1J" + "longname", "ATRP1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATRP2J" + "longname", "ATRP2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AISO1J" + "longname", "AISO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AISO2J" + "longname", "AISO2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASQTJ" + "longname", "ASQTJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AORGCJ" + "longname", "AORGCJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AECJ" + "longname", "AECJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AECI" + "longname", "AECI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AOTHRJ" + "longname", "AOTHRJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AOTHRI" + "longname", "AOTHRI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AFEJ" + "longname", "AFEJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AALJ" + "longname", "AALJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASIJ" + "longname", "ASIJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ATIJ" + "longname", "ATIJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACAJ" + "longname", "ACAJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AMGJ" + "longname", "AMGJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AKJ" + "longname", "AKJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AMNJ" + "longname", "AMNJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACORS" + "longname", "ACORS" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASOIL" + "longname", "ASOIL" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NUMATKN" + "longname", "NUMATKN" + "units", "num/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NUMACC" + "longname", "NUMACC" + "units", "num/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NUMCOR" + "longname", "NUMCOR" + "units", "num/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SRFATKN" + "longname", "SRFATKN" + "units", "m2/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SRFACC" + "longname", "SRFACC" + "units", "m2/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SRFCOR" + "longname", "SRFCOR" + "units", "m2/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH2OJ" + "longname", "AH2OJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH2OI" + "longname", "AH2OI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH3OPJ" + "longname", "AH3OPJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH3OPI" + "longname", "AH3OPI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANAJ" + "longname", "ANAJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANAI" + "longname", "ANAI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACLJ" + "longname", "ACLJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACLI" + "longname", "ACLI" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASEACAT" + "longname", "ASEACAT" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ACLK" + "longname", "ACLK" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASO4K" + "longname", "ASO4K" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANH4K" + "longname", "ANH4K" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ANO3K" + "longname", "ANO3K" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH2OK" + "longname", "AH2OK" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AH3OPK" + "longname", "AH3OPK" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AISO3J" + "longname", "AISO3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AOLGAJ" + "longname", "AOLGAJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AOLGBJ" + "longname", "AOLGBJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AGLYJ" + "longname", "AGLYJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "APCSOJ" + "longname", "APCSOJ" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVPO1I" + "longname", "ALVPO1I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVPO1I" + "longname", "ASVPO1I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVPO2I" + "longname", "ASVPO2I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVPO1J" + "longname", "ALVPO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVPO1J" + "longname", "ASVPO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVPO2J" + "longname", "ASVPO2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVPO3J" + "longname", "ASVPO3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "AIVPO1J" + "longname", "AIVPO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVOO1I" + "longname", "ALVOO1I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVOO2I" + "longname", "ALVOO2I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVOO1I" + "longname", "ASVOO1I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVOO2I" + "longname", "ASVOO2I" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVOO1J" + "longname", "ALVOO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ALVOO2J" + "longname", "ALVOO2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVOO1J" + "longname", "ASVOO1J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVOO2J" + "longname", "ASVOO2J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "ASVOO3J" + "longname", "ASVOO3J" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "NH3" + "longname", "NH3" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_ALK1" + "longname", "SV_ALK1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_ALK2" + "longname", "SV_ALK2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_XYL1" + "longname", "SV_XYL1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_XYL2" + "longname", "SV_XYL2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_TOL1" + "longname", "SV_TOL1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_TOL2" + "longname", "SV_TOL2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_BNZ1" + "longname", "SV_BNZ1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_BNZ2" + "longname", "SV_BNZ2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_PAH1" + "longname", "SV_PAH1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_PAH2" + "longname", "SV_PAH2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_TRP1" + "longname", "SV_TRP1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_TRP2" + "longname", "SV_TRP2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_ISO1" + "longname", "SV_ISO1" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_ISO2" + "longname", "SV_ISO2" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "SV_SQT" + "longname", "SV_SQT" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / + "TRACER", "atmos_mod", "LV_PCSOG" + "longname", "LV_PCSOG" + "units", "ppmV" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=1.e-7" / +# diagnostic air quality tracers + "TRACER", "atmos_mod", "PM25AT" + "longname", "PM2.5 fraction of Aitken mode" + "units", "1" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "PM25AC" + "longname", "PM2.5 fraction of accumulation mode" + "units", "1" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "PM25CO" + "longname", "PM2.5 fraction of coarse mode" + "units", "1" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "PM25_TOT" + "longname", "PM 2.5 from AQM model" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / +# non-prognostic cloud amount + "TRACER", "atmos_mod", "cld_amt" + "longname", "cloud amount" + "units", "1" + "profile_type", "fixed", "surface_value=1.e30" / diff --git a/tests/parm/field_table/field_table_gfsv16_progsigma b/tests/parm/field_table/field_table_gfsv16_progsigma new file mode 100644 index 0000000000..851726d387 --- /dev/null +++ b/tests/parm/field_table/field_table_gfsv16_progsigma @@ -0,0 +1,47 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "rainwat" + "longname", "rain mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "snowwat" + "longname", "snow mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognotsitc sigmab tracer + "TRACER", "atmos_mod", "sigmab" + "longname", "sigma fraction" + "units", "fraction" + "profile_type", "fixed", "surface_value=0.0" / +# non-prognostic cloud amount + "TRACER", "atmos_mod", "cld_amt" + "longname", "cloud amount" + "units", "1" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_mr2 b/tests/parm/field_table/field_table_mr2 new file mode 100644 index 0000000000..cc34cb3069 --- /dev/null +++ b/tests/parm/field_table/field_table_mr2 @@ -0,0 +1,65 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_regional b/tests/parm/field_table/field_table_regional old mode 100755 new mode 100644 index 6fe75f5e2d..6fea174372 --- a/tests/parm/field_table/field_table_regional +++ b/tests/parm/field_table/field_table_regional @@ -45,8 +45,7 @@ "units", "kg/kg" "profile_type", "fixed", "surface_value=1.e30" / # prognostic subgrid scale turbulent kinetic energy - "TRACER", "atmos_mod", "sgs_tke" - "longname", "subgrid scale turbulent kinetic energy" - "units", "m2/s2" - "profile_type", "fixed", "surface_value=0.0" / - + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_regional_rrfs_a b/tests/parm/field_table/field_table_regional_rrfs_a new file mode 100644 index 0000000000..7a8ad3bfcc --- /dev/null +++ b/tests/parm/field_table/field_table_regional_rrfs_a @@ -0,0 +1,65 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic graupel mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_thompson_aero_tke_GOCART b/tests/parm/field_table/field_table_thompson_aero_tke_GOCART new file mode 100644 index 0000000000..2d18a37826 --- /dev/null +++ b/tests/parm/field_table/field_table_thompson_aero_tke_GOCART @@ -0,0 +1,192 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration - not for non-aerosol runs + "TRACER", "atmos_mod", "water_nc" + "longname", "cloud liquid water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic aerosols + "TRACER", "atmos_mod", "so2" + "longname", "so2 mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "so4" + "longname", "sulfate mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dms" + "longname", "DMS mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "msa" + "longname", "msa mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc1" + "longname", "hydrophobic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc2" + "longname", "hydrophillic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc1" + "longname", "hydrophobic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc2" + "longname", "hydrophillic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust1" + "longname", "fine dust1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust2" + "longname", "fine dust2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust3" + "longname", "coarse dust3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust4" + "longname", "coarse dust4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust5" + "longname", "coarse dust5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas1" + "longname", "seasalt1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas2" + "longname", "seasalt2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas3" + "longname", "seasalt3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas4" + "longname", "seasalt4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas5" + "longname", "seasalt5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh3" + "longname", "primary NH3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh4a" + "longname", "primary NH4a mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an1" + "longname", "primary NO3an1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an2" + "longname", "primary NO3an2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an3" + "longname", "primary NO3an3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / +# diagnostic PM tracers + "TRACER", "atmos_mod", "pm25" + "longname", "primary PM25 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "pm10" + "longname", "primary PM10 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / +# water- and ice-friendly aerosols (Thompson) + "TRACER", "atmos_mod", "liq_aero" + "longname", "water-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "ice_aero" + "longname", "ice-friendly aerosol number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART_progsigma b/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART_progsigma new file mode 100644 index 0000000000..66b7f62489 --- /dev/null +++ b/tests/parm/field_table/field_table_thompson_noaero_tke_GOCART_progsigma @@ -0,0 +1,197 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration - not for non-aerosol runs +# "TRACER", "atmos_mod", "water_nc" +# "longname", "cloud liquid water number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) - not for non-aerosol runs +# "TRACER", "atmos_mod", "liq_aero" +# "longname", "water-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# "TRACER", "atmos_mod", "ice_aero" +# "longname", "ice-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognotsitc sigmab tracer + "TRACER", "atmos_mod", "sigmab" + "longname", "sigma fraction" + "units", "fraction" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic aerosols + "TRACER", "atmos_mod", "so2" + "longname", "so2 mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "so4" + "longname", "sulfate mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dms" + "longname", "DMS mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "msa" + "longname", "msa mixing ratio" + "units", "ppm" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc1" + "longname", "hydrophobic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "bc2" + "longname", "hydrophillic black carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc1" + "longname", "hydrophobic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "oc2" + "longname", "hydrophillic organic carbon mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust1" + "longname", "fine dust1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust2" + "longname", "fine dust2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust3" + "longname", "coarse dust3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust4" + "longname", "coarse dust4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "dust5" + "longname", "coarse dust5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas1" + "longname", "seasalt1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas2" + "longname", "seasalt2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas3" + "longname", "seasalt3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas4" + "longname", "seasalt4 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "seas5" + "longname", "seasalt5 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh3" + "longname", "primary NH3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "nh4a" + "longname", "primary NH4a mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an1" + "longname", "primary NO3an1 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an2" + "longname", "primary NO3an2 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "no3an3" + "longname", "primary NO3an3 mixing ratio" + "units", "ug/kg" + "tracer_usage", "chemistry" + "profile_type", "fixed", "surface_value=0.0" / +# diagnostic PM tracers + "TRACER", "atmos_mod", "pm25" + "longname", "primary PM25 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / + "TRACER", "atmos_mod", "pm10" + "longname", "primary PM10 mixing ratio" + "units", "ug/m3" + "tracer_usage", "chemistry", "type=diagnostic" + "profile_type", "fixed", "surface_value=0.0" / diff --git a/tests/parm/field_table/field_table_thompson_noaero_tke_progsigma b/tests/parm/field_table/field_table_thompson_noaero_tke_progsigma new file mode 100644 index 0000000000..f424eb0d21 --- /dev/null +++ b/tests/parm/field_table/field_table_thompson_noaero_tke_progsigma @@ -0,0 +1,70 @@ +# added by FRE: sphum must be present in atmos +# specific humidity for moist runs + "TRACER", "atmos_mod", "sphum" + "longname", "specific humidity" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=3.e-6" / +# prognostic cloud water mixing ratio + "TRACER", "atmos_mod", "liq_wat" + "longname", "cloud water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic ice water mixing ratio + "TRACER", "atmos_mod", "ice_wat" + "longname", "cloud ice mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic rain water mixing ratio + "TRACER", "atmos_mod", "rainwat" + "longname", "rain water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic snow water mixing ratio + "TRACER", "atmos_mod", "snowwat" + "longname", "snow water mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic Grau water mixing ratio + "TRACER", "atmos_mod", "graupel" + "longname", "graupel mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# prognostic cloud water number concentration - not for non-aerosol runs +# "TRACER", "atmos_mod", "water_nc" +# "longname", "cloud liquid water number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic cloud ice number concentration + "TRACER", "atmos_mod", "ice_nc" + "longname", "cloud ice water number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic rain number concentration + "TRACER", "atmos_mod", "rain_nc" + "longname", "rain number concentration" + "units", "/kg" + "profile_type", "fixed", "surface_value=0.0" / +# prognostic ozone mixing ratio tracer + "TRACER", "atmos_mod", "o3mr" + "longname", "ozone mixing ratio" + "units", "kg/kg" + "profile_type", "fixed", "surface_value=1.e30" / +# water- and ice-friendly aerosols (Thompson) - not for non-aerosol runs +# "TRACER", "atmos_mod", "liq_aero" +# "longname", "water-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# "TRACER", "atmos_mod", "ice_aero" +# "longname", "ice-friendly aerosol number concentration" +# "units", "/kg" +# "profile_type", "fixed", "surface_value=0.0" / +# prognostic subgrid scale turbulent kinetic energy + "TRACER", "atmos_mod", "sgs_tke" + "longname", "subgrid scale turbulent kinetic energy" + "units", "m2/s2" + "profile_type", "fixed", "surface_value=0.0" / +# prognotsitc sigmab tracer + "TRACER", "atmos_mod", "sigmab" + "longname", "sigma fraction" + "units", "fraction" + "profile_type", "fixed", "surface_value=0.0" / \ No newline at end of file diff --git a/tests/parm/field_table/field_table_wam b/tests/parm/field_table/field_table_wam old mode 100755 new mode 100644 diff --git a/tests/parm/gocart/AERO.rc b/tests/parm/gocart/AERO.rc index fa861cc836..ff40fba2aa 100644 --- a/tests/parm/gocart/AERO.rc +++ b/tests/parm/gocart/AERO.rc @@ -1,5 +1,6 @@ - NX: 4 - NY: 24 +NX: 4 +NY: 24 + # Atmospheric Model Configuration Parameters # ------------------------------------------ IOSERVER_NODES: 0 diff --git a/tests/parm/gocart/AERO_ExtData.rc b/tests/parm/gocart/AERO_ExtData.rc index 809e7f9b47..dddf4bb4c5 100644 --- a/tests/parm/gocart/AERO_ExtData.rc +++ b/tests/parm/gocart/AERO_ExtData.rc @@ -1,99 +1,81 @@ - PrimaryExports%% # -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------| # Import | | | Regrid | Refresh | OffSet | Scale | Variable On | File | # Name | Units | Clim | Method | Time Template | Factor | Factor | File | Template | # -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------| -# SS Temporary imports -#FROCEAN '1' Y N 0 0.0 1.0 FROCEAN /dev/null:1.0 -#FRACI '1' Y N 0 0.0 1.0 FRACI /dev/null:1.0 -#LWI '1' Y N 0 0.0 1.0 LWI /dev/null:1.0 -#U10M 'm s-1' Y N 0 0.0 1.0 U10M /dev/null:1.0 -#V10M 'm s-1' Y N 0 0.0 1.0 V10M /dev/null:1.0 -#USTAR 'm s-1' Y N 0 0.0 1.0 USTAR /dev/null:1.0 -#TS 'K' Y N 0 0.0 1.0 TS /dev/null:1.0 -#DZ 'm' Y N 0 0.0 1.0 DZ /dev/null:1.0 -#FRLAKE '1' Y N 0 0.0 1.0 FRLAKE /dev/null:1.0 -#AREA 'm^2' Y N 0 0.0 1.0 AREA /dev/null:1.0 -#ZPBL 'm' Y N 0 0.0 1.0 ZPBL /dev/null:1.0 -#SH 'w m-2' Y N 0 0.0 1.0 SH /dev/null:1.0 -#Z0H 'm' Y N 0 0.0 1.0 Z0H /dev/null:1.0 -#CN_PRCP 'kg/m^2/s' Y N 0 0.0 1.0 CN_PRCP /dev/null:1.0 -#NCN_PRCP 'kg/m^2/s' Y N 0 0.0 1.0 NCN_PRCP /dev/null:1.0 -#AIRDENS 'kg/m^2/s' Y N 0 0.0 1.0 AIRDENS /dev/null:1.22 -#DELP 'Pa' Y N 0 0.0 1.0 DELP /dev/null:1.0 -#T 'k' Y N 0 0.0 1.0 T /dev/null:300.0 -#RH2 '1' Y N 0 0.0 1.0 RH2 /dev/null:0.1 -#ZLE 'm' Y N 0 0.0 1.0 ZLE /dev/null:1.0 -#PLE 'Pa' Y N 0 0.0 1.0 PLE /dev/null:1.0 -#PFL_LSAN 'kg/m2/s' Y N 0 0.0 1.0 PFL_LSAN /dev/null:0.0 -#PFI_LSAN 'kg/m2/s' Y N 0 0.0 1.0 PFI_LSAN /dev/null:0.0 -#WET1 'kg/m2/s' Y N 0 0.0 1.0 WET1 /dev/null:0.0 -#U 'm s-1' Y N 0 0.0 1.0 U /dev/null:10.0 -#V 'm s-1' Y N 0 0.0 1.0 V /dev/null:2.0 -#PS 'Pa' Y N 0 0.0 1.0 PS /dev/null:101325.24 -#FCLD '1' Y N 0 0.0 1.0 FCLD /dev/null:0.01 -#FRSNOW '1' Y N 0 0.0 1.0 FRSNOW /dev/null:0.01 -TROPP 'Pa' Y N 0 0.0 1.0 TROPP /dev/null:10000.0 - -# dust component -# Ginoux input file -DU_SRC NA N Y - none none du_src ExtData/dust/gocart.dust_source.v5a.x1152_y721.nc -#DU_SRC NA N Y - none none du_src ExtData/Dust/gocart.dust_source.v5a.x1152_y721.nc +#====== Atmospheric Parameters ======================================= +TROPP 'Pa' Y N - 0.0 1.0 TROPP /dev/null:10000. + +#====== Dust Imports ================================================= # FENGSHA input files. Note: regridding should be N or E -DU_CLAY '1' Y E - none none clayfrac ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc -DU_SAND '1' Y E - none none sandfrac ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc -DU_SILT '1' Y E - none none siltfrac ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc -DU_SSM '1' Y E - none none ssm ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc -DU_RDRAG '1' Y E - none none drag_part ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc -DU_UTHRES '1' Y E - none none uthres ExtData/dust/FENGSHA_DUST_INPUTS_v0.6.nc - -# sulfate -SU_regionMask '1' Y N 0 0.0 1.0 SU_regionMask /dev/null:1.00 -pSO2_OCS '1' Y N 0 0.0 1.0 pSO2_OCS /dev/null:0.00 -SU_AIRCRAFT '1' Y N 0 0.0 1.0 SU_AIRCRAFT /dev/null:0.00 -SU_BIOMASS '1' Y N 0 0.0 1.0 SU_BIOMASS /dev/null:0.00 -SU_ANTHROL1 '1' Y N 0 0.0 1.0 SU_ANTHROL1 /dev/null:0.00 -SU_ANTHROL2 '1' Y N 0 0.0 1.0 SU_ANTHROL2 /dev/null:0.00 -SU_SHIPSO2 '1' Y N 0 0.0 1.0 SU_SHIPSO2 /dev/null:0.00 -SU_SHIPSO4 '1' Y N 0 0.0 1.0 SU_SHIPSO4 /dev/null:0.00 -SU_DMSO '1' Y N 0 0.0 1.0 SU_DMSO /dev/null:0.00 -SU_H2O2 '1' Y N 0 0.0 1.0 SU_DMSO /dev/null:0.00 -SU_NO3 '1' Y N 0 0.0 1.0 SU_DMSO /dev/null:0.00 -SU_OH '1' Y N 0 0.0 1.0 SU_DMSO /dev/null:0.00 -SU_AVIATION_LTO '1' Y N 0 0.0 1.0 SU_AVIATION_LTO /dev/null:0.00 -SU_AVIATION_CDS '1' Y N 0 0.0 1.0 SU_AVIATION_CDS /dev/null:0.00 -SU_AVIATION_CRS '1' Y N 0 0.0 1.0 SU_AVIATION_CRS /dev/null:0.00 - -# CA +DU_CLAY '1' Y E - none none clayfrac ExtData/dust/FENGSHA_p81_10km_inputs.nc +DU_SAND '1' Y E - none none sandfrac ExtData/dust/FENGSHA_p81_10km_inputs.nc +DU_SILT '1' Y E - none none siltfrac /dev/null +DU_SSM '1' Y E %y4-%m2-%d2T12:00:00 none none ssm /dev/null:1.0 +DU_RDRAG NA Y N %y4-%m2-%d2t12:00:00 none none albedo_drag ExtData/dust/FENGSHA_p81_10km_inputs.nc +DU_UTHRES '1' Y E - none none uthres ExtData/dust/FENGSHA_p81_10km_inputs.nc + +#====== BIOMASS BURNING EMISSIONS ======================================= + +# QFED +#-------------------------------------------------------------------------------------------------------------------------------- +SU_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none none biomass ExtData/QFED/%y4/%m2/qfed2.emis_so2.006.%y4%m2%d2.nc4 +OC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none none biomass ExtData/QFED/%y4/%m2/qfed2.emis_oc.006.%y4%m2%d2.nc4 +BC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none none biomass ExtData/QFED/%y4/%m2/qfed2.emis_bc.006.%y4%m2%d2.nc4 +EMI_NH3_BB NA N Y %y4-%m2-%d2t12:00:00 none none biomass ExtData/QFED/%y4/%m2/qfed2.emis_nh3.006.%y4%m2%d2.nc4 + +#====== Sulfate Sources ================================================= +# Anthropogenic (BF & FF) emissions -- allowed to input as two layers +SU_ANTHROL1 NA N Y %y4-%m2-%d2t12:00:00 none none SO2 ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +SU_ANTHROL2 NA N Y %y4-%m2-%d2t12:00:00 none none SO2_elev ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc -# -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------| -# Import | | | Regrid | Refresh | OffSet | Scale | Variable On | File | -# Name | Units | Clim | Method | Time Template | Factor | Factor | File | Template | -# -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------| +# Ship emissions +SU_SHIPSO2 NA N Y %y4-%m2-%d2t12:00:00 none none SO2_ship ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +SU_SHIPSO4 NA N Y %y4-%m2-%d2t12:00:00 none none SO4_ship ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc + +# Aircraft fuel consumption +SU_AIRCRAFT NA Y Y %y4-%m2-%d2t12:00:00 none none none /dev/null + +# DMS concentration +SU_DMSO NA Y Y %y4-%m2-%d2t12:00:00 none none conc ExtData/MERRA2/sfc/DMSclim_sfcconcentration.x360_y181_t12.Lana2011.nc4 + +# Aviation emissions during the three phases of flight +SU_AVIATION_LTO NA Y Y %y4-%m2-%d2t12:00:00 none none so2_aviation ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_so2.aviation_lto.x3600_y1800_t12.2010.nc4 +SU_AVIATION_CDS NA Y Y %y4-%m2-%d2t12:00:00 none none so2_aviation ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_so2.aviation_cds.x3600_y1800_t12.2010.nc4 +SU_AVIATION_CRS NA Y Y %y4-%m2-%d2t12:00:00 none none so2_aviation ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_so2.aviation_crs.x3600_y1800_t12.2010.nc4 + +# H2O2, OH and NO3 mixing ratios +# -------------------------------------------------------------- +SU_H2O2 NA N Y %y4-%m2-%d2t12:00:00 none none h2o2 ExtData/PIESA/L127/A2_ACCMIP_gmic_MERRA_oh_h2o2_no3.x144_y91_z127_t14.%y4.nc +SU_OH NA N Y %y4-%m2-%d2t12:00:00 none none oh ExtData/PIESA/L127/A2_ACCMIP_gmic_MERRA_oh_h2o2_no3.x144_y91_z127_t14.%y4.nc +SU_NO3 NA N Y %y4-%m2-%d2t12:00:00 none none no3 ExtData/PIESA/L127/A2_ACCMIP_gmic_MERRA_oh_h2o2_no3.x144_y91_z127_t14.%y4.nc +#--------------------------------------------------------------- + +# Production of SO2 from OCS oxidation +pSO2_OCS NA Y Y %y4-%m2-%d2t12:00:00 none none biofuel /dev/null + +#SU_regionMask NA N v - none none REGION_MASK /dev/null #=========== Carbonaceous aerosol sources =========================================== # ORGANIC CARBON # --------------- -# Biomass burning -- QFED-v2.x -OC_BIOMASS NA N Y - none none biomass ExtData/PIESA/sfc/QFED/NRT/v2.5/qfed2.emis_oc.nc4 -# VOCs -OC_ISOPRENE NA Y Y %y4-%m2-%d2t12:00:00 none none isoprene /dev/null -OC_LIMO NA Y Y %y4-%m2-%d2t12:00:00 none none limo /dev/null -OC_MTPA NA Y Y %y4-%m2-%d2t12:00:00 none none mtpa /dev/null -OC_MTPO NA Y Y %y4-%m2-%d2t12:00:00 none none mtpo /dev/null +# VOCs - OFFLINE MEGAN BIOG +OC_ISOPRENE NA N Y %y4-%m2-%d2t12:00:00 none none isoprene ExtData/MEGAN_OFFLINE_BVOC/v2019-10/%y4/MEGAN.OFFLINE.BIOVOC.%y4.emis.%y4%m2%d2.nc +OC_LIMO NA N Y %y4-%m2-%d2t12:00:00 none none limo ExtData/MEGAN_OFFLINE_BVOC/v2019-10/%y4/MEGAN.OFFLINE.BIOVOC.%y4.emis.%y4%m2%d2.nc +OC_MTPA NA N Y %y4-%m2-%d2t12:00:00 none none mtpa ExtData/MEGAN_OFFLINE_BVOC/v2019-10/%y4/MEGAN.OFFLINE.BIOVOC.%y4.emis.%y4%m2%d2.nc +OC_MTPO NA N Y %y4-%m2-%d2t12:00:00 none none mtpo ExtData/MEGAN_OFFLINE_BVOC/v2019-10/%y4/MEGAN.OFFLINE.BIOVOC.%y4.emis.%y4%m2%d2.nc # Biofuel Source -- Included in AeroCom anthropogenic emissions OC_BIOFUEL NA Y Y %y4-%m2-%d2t12:00:00 none none biofuel /dev/null # Anthropogenic (BF & FF) emissions -- allowed to input as two layers -OC_ANTEOC1 NA Y Y %y4-%m2-%d2t12:00:00 none none anteoc1 ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_oc.surface.x3600_y1800_t12.2010.nc4 -OC_ANTEOC2 NA Y Y %y4-%m2-%d2t12:00:00 none none anteoc2 ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_oc.elevated.x3600_y1800_t12.2010.nc4 +OC_ANTEOC1 NA N Y %y4-%m2-%d2t12:00:00 none none OC ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +OC_ANTEOC2 NA N Y %y4-%m2-%d2t12:00:00 none none OC_elev ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc # EDGAR based ship emissions -OC_SHIP NA Y Y %y4-%m2-%d2t12:00:00 none none oc_ship ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_oc.ships.x3600_y1800_t12.2010.nc4 +OC_SHIP NA N Y %y4-%m2-%d2t12:00:00 none none OC_ship ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc # Aircraft fuel consumption OC_AIRCRAFT NA N Y %y4-%m2-%d2t12:00:00 none none oc_aviation /dev/null @@ -109,18 +91,16 @@ pSOA_ANTHRO_VOC NA Y Y %y4-%m2-%d2t12:00:00 none none biofuel /dev/null #============================================================================================================ # BLACK CARBON # ------------ -# QFED v2.x -BC_BIOMASS NA N Y - none none biomass ExtData/PIESA/sfc/QFED/NRT/v2.5/qfed2.emis_bc.nc4 # Biofuel Source -- Included in AeroCom anthropogenic emissions BC_BIOFUEL NA Y Y %y4-%m2-%d2t12:00:00 none none biofuel /dev/null # Anthropogenic (BF & FF) emissions -- allowed to input as two layers -BC_ANTEBC1 NA Y Y %y4-%m2-%d2t12:00:00 none none antebc1 ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_bc.surface.x3600_y1800_t12.2010.nc4 -BC_ANTEBC2 NA Y Y %y4-%m2-%d2t12:00:00 none none antebc2 ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_bc.elevated.x3600_y1800_t12.2010.nc4 +BC_ANTEBC1 NA N Y %y4-%m2-%d2t12:00:00 none none BC ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +BC_ANTEBC2 NA N Y %y4-%m2-%d2t12:00:00 none none BC_elev ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc # EDGAR based ship emissions -BC_SHIP NA Y Y %y4-%m2-%d2t12:00:00 none none bc_ship ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_bc.ships.x3600_y1800_t12.2010.nc4 +BC_SHIP NA N Y %y4-%m2-%d2t12:00:00 none none BC_ship ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc # Aircraft fuel consumption BC_AIRCRAFT NA N Y %y4-%m2-%d2t12:00:00 none none bc_aviation /dev/null @@ -134,7 +114,7 @@ BC_AVIATION_CRS NA Y Y %y4-%m2-%d2t12:00:00 none none bc_aviation ExtData/PIESA # BROWN CARBON # ------------ # Biomass burning -- QFED-v2.x -BRC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none none biomass /dev/null # ExtData/PIESA/sfc/QFED/NRT/v2.5r1_0.1_deg/Y%y4/M%m2/qfed2.emis_oc.006.%y4%m2%d2.nc4 +BRC_BIOMASS NA N Y %y4-%m2-%d2t12:00:00 none none biomass /dev/null # Terpene emission BRC_TERPENE NA Y Y %y4-%m2-%d2t12:00:00 none none terpene /dev/null @@ -160,27 +140,17 @@ BRC_AVIATION_CRS NA Y Y %y4-%m2-%d2t12:00:00 none none oc_aviation /dev/null # SOA production pSOA_BIOB_VOC NA Y Y %y4-%m2-%d2t12:00:00 none none biofuel /dev/null - -# NI - -# -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------|---------- -# Import | | | Regrid | Refresh | OffSet | Scale | Variable On | File | File -# Name | Units | Clim | Method | Time Template | Factor | Factor | File | Template | Frequency -# -------------|-------|-------|--------|----------------------|--------|--------|-------------|----------|----------- - # ======= Nitrate Sources ======== -# EMI_NH3_BB 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none biomass ExtData/PIESA/sfc/QFED/NRT/v2.5r1_0.1_deg/Y%y4/M%m2/qfed2.emis_nh3.006.%y4%m2%d2.nc4 -EMI_NH3_BB 'kg m-2 s-1' N Y - none none biomass ExtData/PIESA/sfc/QFED/NRT/v2.5/qfed2.emis_nh3.nc4 -EMI_NH3_AG 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none nh3_emis ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_nh3.agriculture.x3600_y1800_t12.2010.nc4 -EMI_NH3_EN 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none nh3_emis ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_nh3.energy.x3600_y1800_t12.2010.nc4 -EMI_NH3_IN 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none nh3_emis ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_nh3.industry.x3600_y1800_t12.2010.nc4 -EMI_NH3_RE 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none nh3_emis ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_nh3.residential.x3600_y1800_t12.2010.nc4 -EMI_NH3_TR 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none nh3_emis ExtData/PIESA/sfc/HTAP/v2.2/htap-v2.2.emis_nh3.transport.x3600_y1800_t12.2010.nc4 -EMI_NH3_OC 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none emiss_ocn ExtData/PIESA/sfc/GEIA.emis_NH3.ocean.x576_y361.t12.20080715_12z.nc4 -# EMI_NH3_OC 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none emiss_ocn /dev/null:0.0 - -NITRATE_HNO3 'mol mol-1' Y N %y4-%m2-%d2T12:00:00 none 0.20 hno3 /dev/null # ExtData/PIESA/L72/GMI.vmr_HNO3.x144_y91.t12.2006.nc4 - -NI_regionMask NA Y V - none none REGION_MASK ExtData/PIESA/sfc/ARCTAS.region_mask.x540_y361.2008.nc +EMI_NH3_AG 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none NH3_ag ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +EMI_NH3_EN 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none NH3_en /dev/null +EMI_NH3_IN 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none NH3_in ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +EMI_NH3_RE 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none NH3_re ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +EMI_NH3_TR 'kg m-2 s-1' N Y %y4-%m2-%d2T12:00:00 none none NH3_tr ExtData/CEDS/v2019/%y4/CEDS.2019.emis.%y4%m2%d2.nc +EMI_NH3_OC 'kg m-2 s-1' Y Y %y4-%m2-%d2T12:00:00 none none emiss_ocn ExtData/PIESA/sfc/GEIA.emis_NH3.ocean.x576_y361.t12.20080715_12z.nc4 + +# -------------------------------------------------------------- +NITRATE_HNO3 'mol mol-1' Y N %y4-%m2-%d2T12:00:00 none 0.20 hno3 ExtData/PIESA/L127/GMI.vmr_HNO3.x144_y91.t12.2006.nc4 +# -------------------------------------------------------------- +NI_regionMask NA Y V - none none REGION_MASK ExtData/PIESA/sfc/ARCTAS.region_mask.x540_y361.2008.nc %% diff --git a/tests/parm/gocart/AERO_HISTORY.rc b/tests/parm/gocart/AERO_HISTORY.rc.IN similarity index 87% rename from tests/parm/gocart/AERO_HISTORY.rc rename to tests/parm/gocart/AERO_HISTORY.rc.IN index d8c915b78a..8a2671b19f 100644 --- a/tests/parm/gocart/AERO_HISTORY.rc +++ b/tests/parm/gocart/AERO_HISTORY.rc.IN @@ -9,7 +9,22 @@ EXPSRC: GEOSgcm-v10.16.0 COLLECTIONS: 'inst_aod' - 'tavg_cmass' +# 'inst_du_ss' +# 'inst_ca' +# 'inst_ni' +# 'inst_su' +# 'inst_du_bin' +# 'inst_ss_bin' +# 'inst_ca_bin' +# 'inst_ni_bin' +# 'inst_su_bin' +# 'inst_2d' +# 'inst_3d' +# 'inst_aod' +# 'tavg_du_ss' +# 'tavg_du_bin' +# 'tavg_2d_rad' +# 'tavg_3d_rad' :: ################################################## @@ -43,7 +58,7 @@ PC720x361-DC.LM: 72 inst_du_ss.mode: 'instantaneous', inst_du_ss.grid_label: PC720x361-DC , inst_du_ss.splitField: 1, - inst_du_ss.frequency: 010000 , + inst_du_ss.frequency: 120000 , inst_du_ss.duration: 010000 , inst_du_ss.ref_time: 000000 , inst_du_ss.nbits: 10, @@ -51,12 +66,26 @@ PC720x361-DC.LM: 72 'SS' , 'SS' , :: + tavg_du_ss.format: 'CFIO' , + tavg_du_ss.descr: '3d,Hourly,Instantaneous,Model-Level,Aerosol Concentrations', + tavg_du_ss.template: '%y4%m2%d2_%h2%n2z.nc4', + tavg_du_ss.mode: 'time-averaged', + tavg_du_ss.grid_label: PC720x361-DC , + tavg_du_ss.splitField: 1, + tavg_du_ss.frequency: 120000 , + tavg_du_ss.duration: 010000 , + tavg_du_ss.ref_time: 000000 , + tavg_du_ss.nbits: 10, + tavg_du_ss.fields: 'DU' , 'DU' , + 'SS' , 'SS' , + :: + inst_ca.format: 'CFIO' , inst_ca.descr: '3d,Hourly,Instantaneous,Model-Level,Aerosol Concentrations', inst_ca.template: '%y4%m2%d2_%h2%n2z.nc4', inst_ca.mode: 'instantaneous', inst_ca.grid_label: PC720x361-DC , - inst_ca.frequency: 010000 , + inst_ca.frequency: 120000 , inst_ca.duration: 010000 , inst_ca.ref_time: 000000 , inst_ca.nbits: 10, @@ -71,7 +100,7 @@ PC720x361-DC.LM: 72 inst_ni.template: '%y4%m2%d2_%h2%n2z.nc4', inst_ni.mode: 'instantaneous', inst_ni.grid_label: PC720x361-DC , - inst_ni.frequency: 010000 , + inst_ni.frequency: 120000 , inst_ni.duration: 010000 , inst_ni.ref_time: 000000 , inst_ni.nbits: 10, @@ -87,7 +116,7 @@ PC720x361-DC.LM: 72 inst_su.template: '%y4%m2%d2_%h2%n2z.nc4', inst_su.mode: 'instantaneous', inst_su.grid_label: PC720x361-DC , - inst_su.frequency: 010000 , + inst_su.frequency: 120000 , inst_su.duration: 010000 , inst_su.ref_time: 000000 , inst_su.nbits: 10, @@ -117,13 +146,30 @@ PC720x361-DC.LM: 72 'DUSV' , 'DU' , :: + tavg_du_bin.format: 'CFIO' , + tavg_du_bin.descr: '2d,Hourly,Instantaneous' + tavg_du_bin.template: '%y4%m2%d2_%h2%n2z.nc4', + tavg_du_bin.mode: 'time-averaged' + tavg_du_bin.grid_label: PC720x361-DC , + tavg_du_bin.splitField: 1, + tavg_du_bin.frequency: 030000 , + tavg_du_bin.duration: 010000 , + tavg_du_bin.ref_time: 000000 , + tavg_du_bin.nbits: 10, + tavg_du_bin.fields: 'DUEM' , 'DU' , + 'DUSD' , 'DU' , + 'DUDP' , 'DU' , + 'DUWT' , 'DU' , + 'DUSV' , 'DU' , + :: + inst_ss_bin.format: 'CFIO' , inst_ss_bin.descr: '2d,Hourly,Instantaneous' inst_ss_bin.template: '%y4%m2%d2_%h2%n2z.nc4', inst_ss_bin.mode: 'instantaneous' inst_ss_bin.grid_label: PC720x361-DC , inst_ss_bin.splitField: 1, - inst_ss_bin.frequency: 010000 , + inst_ss_bin.frequency: 060000 , inst_ss_bin.duration: 010000 , inst_ss_bin.ref_time: 000000 , inst_ss_bin.nbits: 10, @@ -140,7 +186,7 @@ PC720x361-DC.LM: 72 inst_ca_bin.mode: 'instantaneous' inst_ca_bin.grid_label: PC720x361-DC , inst_ca_bin.splitField: 1, - inst_ca_bin.frequency: 010000 , + inst_ca_bin.frequency: 120000 , inst_ca_bin.duration: 010000 , inst_ca_bin.ref_time: 000000 , inst_ca_bin.nbits: 10, @@ -162,7 +208,7 @@ PC720x361-DC.LM: 72 inst_ni_bin.mode: 'instantaneous', inst_ni_bin.grid_label: PC720x361-DC , inst_ni_bin.splitField: 1, - inst_ni_bin.frequency: 010000 , + inst_ni_bin.frequency: 120000 , inst_ni_bin.duration: 010000 , inst_ni_bin.ref_time: 000000 , inst_ni_bin.nbits: 10, @@ -179,7 +225,7 @@ PC720x361-DC.LM: 72 inst_su_bin.mode: 'instantaneous', inst_su_bin.grid_label: PC720x361-DC , inst_su_bin.splitField: 1, - inst_su_bin.frequency: 010000 , + inst_su_bin.frequency: 120000 , inst_su_bin.duration: 010000 , inst_su_bin.ref_time: 000000 , inst_su_bin.nbits: 10, @@ -198,8 +244,8 @@ PC720x361-DC.LM: 72 inst_2d.template: '%y4%m2%d2_%h2%n2z.nc4', inst_2d.archive: '%c/Y%y4', inst_2d.mode: 'instantaneous' - inst_2d.frequency: 010000, - inst_2d.duration: 010000, + inst_2d.frequency: 030000, + inst_2d.duration: 030000, inst_2d.ref_time: 000000, inst_2d.grid_label: PC720x361-DC inst_2d.fields: 'DUSMASS' , 'DU' , @@ -290,32 +336,6 @@ PC720x361-DC.LM: 72 'SO2EMVE' , 'SU' , :: - tavg_cmass.format: 'CFIO' , - tavg_cmass.descr: '2d,3-hourly,Time-averaged' - tavg_cmass.template: '%y4%m2%d2_%h2%n2z.nc4', - tavg_cmass.archive: '%c/Y%y4', - tavg_cmass.mode: 'time-averaged' - tavg_cmass.frequency: 030000, - tavg_cmass.duration: 030000, - tavg_cmass.ref_time: 000000, - tavg_cmass.grid_label: PC720x361-DC - tavg_cmass.fields: 'DUCMASS' , 'DU' , - 'DUCMASS25' , 'DU' , - 'SSCMASS' , 'SS' , - 'SSCMASS25' , 'SS' , - 'CACMASSCA.bc' , 'CA.bc' , - 'CACMASSCA.oc' , 'CA.oc' , - 'HNO3CMASS' , 'NI' , - 'NH3CMASS' , 'NI' , - 'NH4CMASS' , 'NI' , - 'NICMASS' , 'NI' , - 'NICMASS25' , 'NI' , - 'SO2CMASS' , 'SU' , - 'SO4CMASS' , 'SU' , - 'DMSCMASS' , 'SU' , - 'MSACMASS' , 'SU' , - :: - # # 3d diagnostics # @@ -323,7 +343,7 @@ PC720x361-DC.LM: 72 inst_3d.template: '%y4%m2%d2_%h2%n2z.nc4' , inst_3d.archive: '%c/Y%y4' , inst_3d.mode: 'instantaneous' - inst_3d.frequency: 010000, + inst_3d.frequency: 060000, inst_3d.duration: 010000, inst_3d.ref_time: 000000, inst_3d.grid_label: PC720x361-DC @@ -361,12 +381,12 @@ PC720x361-DC.LM: 72 inst_aod.template: '%y4%m2%d2_%h2%n2z.nc4' , inst_aod.archive: '%c/Y%y4' , inst_aod.mode: 'instantaneous' - inst_aod.frequency: 010000, + inst_aod.frequency: @[AOD_FRQ], inst_aod.duration: 010000, inst_aod.ref_time: 000000, inst_aod.grid_label: PC720x361-DC - inst_aod.fields: 'CAEXTTAUCA.bc' , 'CA.bc' , 'AOD_BC', - 'CAEXTTAUCA.oc' , 'CA.oc' , 'AOD_OC', + inst_aod.fields: 'CA.bcEXTTAU' , 'CA.bc' , 'AOD_BC', + 'CA.ocEXTTAU' , 'CA.oc' , 'AOD_OC', 'DUEXTTAU' , 'DU' , 'AOD_DU', 'NIEXTTAU' , 'NI' , 'AOD_NI', 'SSEXTTAU' , 'SS' , 'AOD_SS', @@ -379,8 +399,8 @@ PC720x361-DC.LM: 72 tavg_2d_rad.template: '%y4%m2%d2_%h2%n2z.nc4', tavg_2d_rad.archive: '%c/Y%y4', tavg_2d_rad.mode: 'time-averaged', - tavg_2d_rad.frequency: 030000, - tavg_2d_rad.duration: 030000, + tavg_2d_rad.frequency: 120000, + tavg_2d_rad.duration: 120000, tavg_2d_rad.ref_time: 000000, tavg_2d_rad.grid_label: PC720x361-DC tavg_2d_rad.fields: 'CAEXTTAUCA.bc' , 'CA.bc' , @@ -413,8 +433,8 @@ PC720x361-DC.LM: 72 tavg_3d_rad.template: '%y4%m2%d2_%h2%n2z.nc4', tavg_3d_rad.archive: '%c/Y%y4', tavg_3d_rad.mode: 'time-averaged', - tavg_3d_rad.frequency: 030000, - tavg_3d_rad.duration: 030000, + tavg_3d_rad.frequency: 120000, + tavg_3d_rad.duration: 120000, tavg_3d_rad.ref_time: 000000, tavg_3d_rad.grid_label: PC720x361-DC tavg_3d_rad.splitField: 1, diff --git a/tests/parm/gocart/CAP.rc b/tests/parm/gocart/CAP.rc index d8b0352e55..64425b1bb4 100644 --- a/tests/parm/gocart/CAP.rc +++ b/tests/parm/gocart/CAP.rc @@ -58,10 +58,10 @@ CAP_EXPORTS: MSA,SU msa SO2,SU so2 SO4,SU so4 - CAphobicCA.bc,CA.bc bc1 - CAphilicCA.bc,CA.bc bc2 - CAphobicCA.oc,CA.oc oc1 - CAphilicCA.oc,CA.oc oc2 + CA.bcphobic,CA.bc bc1 + CA.bcphilic,CA.bc bc2 + CA.ocphobic,CA.oc oc1 + CA.ocphilic,CA.oc oc2 NH3,NI nh3 NH4a,NI nh4a NO3an1,NI no3an1 diff --git a/tests/parm/gocart/DU2G_instance_DU.rc b/tests/parm/gocart/DU2G_instance_DU.rc index e252fbf8a2..d98e65186f 100644 --- a/tests/parm/gocart/DU2G_instance_DU.rc +++ b/tests/parm/gocart/DU2G_instance_DU.rc @@ -38,9 +38,9 @@ nbins: 5 pressure_lid_in_hPa: 0.01 # Emissions methods -emission_scheme: ginoux # choose among: fengsha, ginoux, k14 +emission_scheme: fengsha # choose among: fengsha, ginoux, k14 # FENGSHA settings -alpha: 0.7 -gamma: 1.0 +alpha: 0.039 +gamma: 0.8 vertical_to_horizontal_flux_ratio_limit: 2.e-04 diff --git a/tests/parm/hafs_datm.streams.era5.IN b/tests/parm/hafs_datm.streams.era5.IN index 2ff5456953..6b155b848a 100644 --- a/tests/parm/hafs_datm.streams.era5.IN +++ b/tests/parm/hafs_datm.streams.era5.IN @@ -8,7 +8,7 @@ stream_offset01: 0 yearFirst01: @[SYEAR] yearLast01: @[SYEAR] yearAlign01: @[SYEAR] -stream_vectors01: "u:v" +stream_vectors01: "Sa_u10m:Sa_v10m" stream_mesh_file01: @[MESH_ATM] stream_lev_dimname01: null stream_data_files01: @[DATA_ATM]" diff --git a/tests/parm/ice_in_template b/tests/parm/ice_in_template index 7717645576..76f199ad56 100644 --- a/tests/parm/ice_in_template +++ b/tests/parm/ice_in_template @@ -57,6 +57,9 @@ nslyr = 1 nblyr = 1 nfsd = 1 + grid_atm = '@[GRIDATM]' + grid_ocn = '@[GRIDOCN]' + grid_ice = '@[GRIDICE]' / &tracer_nml @@ -66,8 +69,6 @@ restart_FY = .false. tr_lvl = .true. restart_lvl = .false. - tr_pond_cesm = .false. - restart_pond_cesm = .false. tr_pond_topo = .false. restart_pond_topo = .false. tr_pond_lvl = .true. diff --git a/tests/parm/input_global_hafs.nml.IN b/tests/parm/input_global_hafs.nml.IN index 16387f8005..e1164b45fb 100644 --- a/tests/parm/input_global_hafs.nml.IN +++ b/tests/parm/input_global_hafs.nml.IN @@ -194,7 +194,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 3.5,0.25 + cdmbgwd = 1.0,1.0,1.0,1.0 sfc_z0_type = 6 prslrd0 = 0. ivegsrc = 1 @@ -238,6 +238,15 @@ do_skeb = .false. lndp_type = 0 n_var_lndp = 0 + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = .false. + do_ugwp_v1_w_gsldrag = .false. + do_ugwp_v1_orog_only = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_ugwp_v0_orog_only = .false. / &gfdl_cloud_microphysics_nml @@ -302,7 +311,7 @@ !FNZORC = "global_zorclim.1x1.grb", FNALBC = "global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb", FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNAISC = "IMS-NIC.blended.ice.monthly.clim.grb", FNTG3C = "global_tg3clim.2.6x1.5.grb", FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = "global_vegtype.igbp.t1534.3072.1536.rg.grb", diff --git a/tests/parm/input_nest02.nml.IN b/tests/parm/input_nest02.nml.IN index 820e687e50..b20e8ca6d2 100644 --- a/tests/parm/input_nest02.nml.IN +++ b/tests/parm/input_nest02.nml.IN @@ -229,7 +229,7 @@ FNZORC = "igbp", FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNAISC = "IMS-NIC.blended.ice.monthly.clim.grb", FNTG3C = "global_tg3clim.2.6x1.5.grb", FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", diff --git a/tests/parm/input_nest_hafs.nml.IN b/tests/parm/input_nest_hafs.nml.IN index 9196de1971..286a4155c4 100644 --- a/tests/parm/input_nest_hafs.nml.IN +++ b/tests/parm/input_nest_hafs.nml.IN @@ -69,7 +69,7 @@ nwat = @[NWAT] na_init = @[NA_INIT] d_ext = 0.0 - dnats = 1 + dnats = @[DNATS] fv_sg_adj = 300 d2_bg = 0. nord = 2 @@ -93,7 +93,7 @@ hord_tr = 8 adjust_dry_mass = .false. consv_te = 0. - do_sat_adj = .true. + do_sat_adj = @[DO_SAT_ADJ] consv_am = .false. fill = .true. dwind_2d = .false. @@ -143,7 +143,14 @@ fhcyc = @[FHCYC] use_ufo = .true. pre_rad = .false. - imp_physics = 11 + imp_physics = @[IMP_PHYSICS] + ltaerosol = .false. + lradar = .true. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + ext_diag_thompson = .false. pdfcld = .false. fhswr = @[FHSWR] fhlwr = @[FHLWR] @@ -174,7 +181,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 0.88,0.04 + cdmbgwd = 1.0,1.0,1.0,1.0 sfc_z0_type = 6 prslrd0 = 0. ivegsrc = 1 @@ -218,6 +225,15 @@ do_skeb = .false. lndp_type = 0 n_var_lndp = 0 + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = .false. + do_ugwp_v1_w_gsldrag = .false. + do_ugwp_v1_orog_only = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_ugwp_v0_orog_only = .false. / &gfdl_cloud_microphysics_nml @@ -282,7 +298,7 @@ !FNZORC = "global_zorclim.1x1.grb", FNALBC = "global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb", FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNAISC = "IMS-NIC.blended.ice.monthly.clim.grb", FNTG3C = "global_tg3clim.2.6x1.5.grb", FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = "global_vegtype.igbp.t1534.3072.1536.rg.grb", diff --git a/tests/parm/input_regional_hafs.nml.IN b/tests/parm/input_regional_hafs.nml.IN index 09f80e56c4..e801986dc1 100644 --- a/tests/parm/input_regional_hafs.nml.IN +++ b/tests/parm/input_regional_hafs.nml.IN @@ -205,7 +205,7 @@ cnvcld = .true. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 0.88,0.04 + cdmbgwd = 1.0,1.0,1.0,1.0 sfc_z0_type = 6 prslrd0 = 0. ivegsrc = 1 @@ -249,6 +249,15 @@ do_skeb = .false. lndp_type = 0 n_var_lndp = 0 + gwd_opt = 2 + do_ugwp_v0 = .false. + do_ugwp_v1 = .false. + do_ugwp_v1_w_gsldrag = .false. + do_ugwp_v1_orog_only = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_ugwp_v0_orog_only = .false. / &gfdl_cloud_microphysics_nml @@ -313,7 +322,7 @@ !FNZORC = "global_zorclim.1x1.grb", FNALBC = "global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb", FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNAISC = "IMS-NIC.blended.ice.monthly.clim.grb", FNTG3C = "global_tg3clim.2.6x1.5.grb", FNVEGC = "global_vegfrac.0.144.decpercent.grb", FNVETC = "global_vegtype.igbp.t1534.3072.1536.rg.grb", diff --git a/tests/parm/merra2_thompson.nml.IN b/tests/parm/merra2_thompson.nml.IN new file mode 100644 index 0000000000..f8aa4fc59c --- /dev/null +++ b/tests/parm/merra2_thompson.nml.IN @@ -0,0 +1,384 @@ +&atmos_model_nml + blocksize = 32 + chksum_debug = .false. + dycore_only = .false. + ccpp_suite = '@[CCPP_SUITE]' +/ + +&diag_manager_nml + prepend_date = .false. + max_output_fields = @[MAX_OUTPUT_FIELDS] +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&mpp_io_nml +shuffle=1 +deflate_level=1 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = @[DOMAINS_STACK_SIZE] + print_memory_usage = .false. +/ + +&fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = @[NPX] + npy = @[NPY] + ntiles = 6 + npz = @[NPZ] + dz_min = @[DZ_MIN] + psm_bc = @[PSM_BC] + grid_type = -1 + make_nh = @[MAKE_NH] + fv_debug = .false. + range_warn = .true. + reset_eta = .false. + n_sponge = 42 + nudge_qv = .true. + nudge_dz = .false. + tau = 10.0 + rf_cutoff = 7.5e2 + d2_bg_k1 = @[D2_BG_K1] + d2_bg_k2 = @[D2_BG_K2] + kord_tm = -9 + kord_mt = 9 + kord_wz = 9 + kord_tr = 9 + hydrostatic = .false. + phys_hydrostatic = .false. + use_hydro_pressure = .false. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 6 + nwat = 6 + na_init = @[NA_INIT] + d_ext = 0. + dnats = @[DNATS] + fv_sg_adj = 450 + d2_bg = 0. + nord = 2 + dddmp = @[DDDMP] + d4_bg = 0.12 + vtdm4 = 0.02 + delt_max = 0.002 + ke_bg = 0. + do_vort_damp = .true. + external_ic = @[EXTERNAL_IC] + external_eta = .true. + gfs_phil = .false. + nggps_ic = @[NGGPS_IC] + mountain = @[MOUNTAIN] + ncep_ic = .false. + d_con = 1. + hord_mt = 5 + hord_vt = 5 + hord_tm = 5 + hord_dp = -5 + hord_tr = 8 + adjust_dry_mass = .false. + dry_mass=98320.0 + consv_te = 1. + do_sat_adj = @[DO_SAT_ADJ] + consv_am = .false. + fill = .true. + dwind_2d = .false. + print_freq = 6 + warm_start = @[WARM_START] + no_dycore = .false. + z_tracer = .true. + agrid_vel_rst = .true. + read_increment = @[READ_INCREMENT] + res_latlon_dynamics = @[RES_LATLON_DYNAMICS] +/ + +&external_ic_nml + filtered_terrain = .true. + levp = @[NPZP] + gfs_dwinds = .true. + checker_tr = .false. + nt_checker = 0 +/ + +&gfs_physics_nml + fhzero = @[FHZERO] + h2o_phys = .true. + ldiag3d = @[LDIAG3D] + qdiag3d = @[QDIAG3D] + print_diff_pgr = @[PRINT_DIFF_PGR] + fhcyc = @[FHCYC] + use_ufo = .true. + pre_rad = .false. + imp_physics = @[IMP_PHYSICS] + iovr = 3 + ltaerosol = @[LTAEROSOL] + mraerosol = @[MRAEROSOL] + lradar = .false. + ttendlim = -999 + dt_inner = @[DT_INNER] + sedi_semi = @[SEDI_SEMI] + decfl = @[DECFL] + oz_phys = .false. + oz_phys_2015 = .true. + lsoil_lsm = 4 + do_mynnedmf = .false. + do_mynnsfclay = .false. + icloud_bl = 1 + bl_mynn_edmf = 1 + bl_mynn_tkeadvect = .true. + bl_mynn_edmf_mom = 1 + do_ugwp = .false. + do_tofd = .false. + gwd_opt = @[GWD_OPT] + do_ugwp_v0 = @[DO_UGWP_V0] + do_ugwp_v1 = @[DO_UGWP_V1] + do_ugwp_v0_orog_only = .false. + do_ugwp_v0_nst_only = @[DO_UGWP_V0_NST_ONLY] + do_gsl_drag_ls_bl = @[DO_GSL_DRAG_LS_BL] + do_gsl_drag_ss = @[DO_GSL_DRAG_SS] + do_gsl_drag_tofd = @[DO_GSL_DRAG_TOFD] + do_ugwp_v1_orog_only = @[DO_UGWP_V1_OROG_ONLY] + min_lakeice = 0.15 + min_seaice = @[MIN_SEAICE] + use_cice_alb = @[USE_CICE_ALB] + pdfcld = .false. + fhswr = 3600. + fhlwr = 3600. + ialb = @[IALB] + iems = @[IEMS] + iaer = @[IAER] + icliq_sw = 2 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .true. + shal_cnv = .true. + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + satmedmf = .true. + isatmedmf = 1 + lheatstrg = @[LHEATSTRG] + lseaspray = @[LSEASPRAY] + random_clds = @[RANDOM_CLDS] + trans_trac = .true. + cnvcld = @[CNVCLD] + imfshalcnv = @[IMFSHALCNV] + imfdeepcnv = @[IMFDEEPCNV] + ras = @[RAS] + cdmbgwd = @[CDMBWD] + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsoil = 4 + lsm = @[LSM] + iopt_dveg = @[IOPT_DVEG] + iopt_crs = @[IOPT_CRS] + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = @[IOPT_SFC] + iopt_trs = @[IOPT_TRS] + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = @[IOPT_RAD] + iopt_alb = @[IOPT_ALB] + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = @[IOPT_STC] + debug = .false. + nstf_name = @[NSTF_NAME] + nst_anl = .true. + psautco = 0.0008,0.0005 + prautco = 0.00015,0.00015 + lgfdlmprad = @[LGFDLMPRAD] + effr_in = .true. + ldiag_ugwp = @[LDIAG_UGWP] + fscav_aero = @[FSCAV_AERO] + do_sppt = @[DO_SPPT] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + do_RRTMGP = @[DO_RRTMGP] + active_gases = 'h2o_co2_o3_n2o_ch4_o2' + ngases = 6 + lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' + lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' + sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' + sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' + rrtmgp_nGptsSW = 112 + rrtmgp_nGptsLW = 128 + rrtmgp_nBandsLW = 16 + rrtmgp_nBandsSW = 14 + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + use_med_flux = @[USE_MED_FLUX] + frac_grid = @[FRAC_GRID] + cplchm = @[CPLCHM] + cplflx = @[CPLFLX] + cplice = @[CPLICE] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + do_ca = @[DO_CA] + ca_global = @[CA_GLOBAL] + ca_sgs = @[CA_SGS] + nca = @[NCA] + ncells = @[NCELLS] + nlives = @[NLIVES] + nseed = @[NSEED] + nfracseed = @[NFRACSEED] + nthresh = @[NTHRESH] + ca_trigger = @[CA_TRIGGER] + nspinup = @[NSPINUP] + iseed_ca = @[ISEED_CA] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = @[KNOB_UGWP_VERSION] + launch_level = 54 +/ + +&gfdl_cloud_microphysics_nml + sedi_transport = .true. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .false. + const_vs = .false. + const_vg = .false. + const_vr = .false. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 225. + tau_v2l = 150. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 150. + reiflag = 2 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&namsfc + FNGLAC = 'global_glacier.2x2.grb' + FNMXIC = 'global_maxice.2x2.grb' + FNTSFC = 'RTGSST.1982.2012.monthly.clim.grb' + FNSNOC = 'global_snoclim.1.875.grb' + FNZORC = 'igbp' + FNALBC = @[FNALBC] + FNALBC2 = @[FNALBC2] + FNAISC = 'IMS-NIC.blended.ice.monthly.clim.grb' + FNTG3C = @[FNTG3C] + FNVEGC = @[FNVEGC] + FNVETC = @[FNVETC] + FNSOTC = @[FNSOTC] + FNSMCC = @[FNSMCC] + FNMSKH = @[FNMSKH] + FNTSFA = '' + FNACNA = '' + FNSNOA = '' + FNVMNC = @[FNVMNC] + FNVMXC = @[FNVMXC] + FNSLPC = @[FNSLPC] + FNABSC = @[FNABSC] + LDEBUG =.false. + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + LANDICE = @[LANDICE] + FTSFS = 90 + FAISL = 99999 + FAISS = 99999 + FSNOL = 99999 + FSNOS = 99999 + FSICL = @[FSICL] + FSICS = @[FSICS] + FTSFL = 99999 + FVETL = 99999 + FSOTL = 99999 + FvmnL = 99999 + FvmxL = 99999 + FSLPL = 99999 + FABSL = 99999 +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&nam_stochy +/ + +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] +/ + +&MOM_input_nml + output_directory = 'MOM6_OUTPUT/', + input_filename = '@[MOM6_RESTART_SETTING]' + restart_input_dir = 'INPUT/', + restart_output_dir = 'RESTART/', + parameter_filename = 'INPUT/MOM_input', + 'INPUT/MOM_override'/ diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 099e4e2d98..32f6cf7ded 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -8,7 +8,6 @@ nhours_fcst: @[FHMAX] fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] -calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. diff --git a/tests/parm/model_configure_atmaq.IN b/tests/parm/model_configure_atmaq.IN new file mode 100644 index 0000000000..b4ce5b3acf --- /dev/null +++ b/tests/parm/model_configure_atmaq.IN @@ -0,0 +1,34 @@ +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +dt_atmos: @[DT_ATMOS] +restart_interval: @[RESTART_INTERVAL] +write_dopost: @[WRITE_DOPOST] +ideflate: @[IDEFLATE] +nbits: @[NBITS] +quilting: @[QUILTING] + +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +num_files: @[NUM_FILES] +filename_base: @[FILENAME_BASE] +output_file: @[OUTPUT_FILE] +output_fh: @[OUTPUT_FH] +nsout: @[NSOUT] +output_grid: @[OUTPUT_GRID] + +cen_lon: @[CEN_LON] +cen_lat: @[CEN_LAT] +stdlat1: @[STDLAT1] +stdlat2: @[STDLAT2] +nx: @[NX] +ny: @[NY] +lon1: @[LON1] +lat1: @[LAT1] +dx: @[DX] +dy: @[DY] + diff --git a/tests/parm/model_configure_fhout.IN b/tests/parm/model_configure_fhout.IN index 8fb5493018..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] @@ -8,7 +7,6 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] -calendar: 'julian' restart_interval: @[RESTART_INTERVAL] fhrot: @[FHROT] output_1st_tstep_rst: .false. diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 4ab33e554e..1a06e96e63 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -6,7 +6,6 @@ start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] -calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN index 3f321bc234..a46a9a4ef7 100644 --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -1,65 +1,54 @@ -start_year: 2018 -start_month: 10 -start_day: 15 -start_hour: 00 +start_year: 2022 +start_month: 08 +start_day: 24 +start_hour: 0 start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] fhrot: @[FHROT] - -dt_atmos: 225 -calendar: 'julian' +dt_atmos: 36 restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. +cpl: .false. +write_dopost: @[WRITE_DOPOST] +output_history: .true. quilting: @[QUILTING] write_groups: 1 -write_tasks_per_group: 8 -itasks: @[ITASKS] -write_dopost: @[WRITE_DOPOST] +write_tasks_per_group: 10 num_files: 2 -filename_base: 'dyn' 'phy' +filename_base: 'dyn''phy' output_file: @[OUTPUT_FILE] +write_nemsioflip: .false. +write_fsyncflag: .false. ideflate: @[IDEFLATE] +nbits: 0 ichunk2d: -1 jchunk2d: -1 ichunk3d: -1 jchunk3d: -1 kchunk3d: -1 -# output_grid: 'gaussian_grid' -# imo: 384 -# jmo: 190 - -# output_grid: 'regional_latlon' -# lon1: 225.0 -# lon2: 300.0 -# lat1: 10.0 -# lat2: 60.0 -# dlon: 0.2 -# dlat: 0.2 - - output_grid: 'rotated_latlon' - cen_lon: -97.5 # central longitude - cen_lat: 34.5 # central latitude - lon1: -24.0 # longitude of lower-left point in rotated coordinate system (in degrees) - lat1: -22.0 # latitude of lower-left . . . . - lon2: 24.0 # longitude of upper-right . . . . - lat2: 22.0 # latitude of upper-right . . . . - dlon: 0.2 - dlat: 0.2 +output_grid: 'lambert_conformal' +cen_lon: -120.0 +cen_lat: 38.0 +stdlat1: 38.0 +stdlat2: 38.0 +nx: 320 +ny: 192 +lon1: -125.25 +lat1: 35.3 +dx: 3000.0 +dy: 3000.0 -# output_grid: 'lambert_conformal' -# cen_lon: -97.5 # central longitude -# cen_lat: 34.0 # central latitude -# stdlat1: 30.0 -# stdlat2: 60.0 -# nx: 450 # Number of points along x-axis. -# ny: 430 # Number of points along y-axis. -# lon1: -116.0 # longitude of first grid point (lower-left) (in degrees) -# lat1: 13.0 # latitude of first grid point (lower-left) (in degrees) -# dx: 10000.0 # x-direction grid length -# dy: 10000.0 # y-direction grid length +#output_grid: 'rotated_latlon' +#cen_lon: -113.0 # central longitude +#cen_lat: 55.0 # central latitude +#lon1: -61.0 # longitude of lower-left point in rotated coordinate system (in degrees) +#lat1: -37.0 # latitude of lower-left ... +#lon2: 61.0 # longitude of upper-right ... +#lat2: 37.0 # latitude of upper-right ... +#dlon: 0.025 +#dlat: 0.025 output_fh: @[OUTPUT_FH] nsout: -1 diff --git a/tests/parm/model_configure_regional_3km.IN b/tests/parm/model_configure_regional_3km.IN deleted file mode 100644 index d956cf80bb..0000000000 --- a/tests/parm/model_configure_regional_3km.IN +++ /dev/null @@ -1,57 +0,0 @@ -start_year: 2022 -start_month: 2 -start_day: 18 -start_hour: 0 -start_minute: 0 -start_second: 0 -nhours_fcst: @[FHMAX] -fhrot: @[FHROT] - -dt_atmos: 40 -calendar: 'julian' -restart_interval: @[RESTART_INTERVAL] -output_1st_tstep_rst: .false. - -quilting: @[QUILTING] -write_groups: 1 -write_tasks_per_group: 10 -itasks: @[ITASKS] -write_dopost: @[WRITE_DOPOST] -num_files: 2 -filename_base: 'dyn' 'phy' -output_file: 'netcdf' 'netcdf' -ideflate: 0 -ichunk2d: -1 -jchunk2d: -1 -ichunk3d: -1 -jchunk3d: -1 -kchunk3d: -1 - -output_grid: 'lambert_conformal' -# -# Parameter definitions for an output grid of type "lambert_conformal": -# -# cen_lon: Longitude of center of grid (degrees). -# cen_lat: Latitude of center of grid (degrees). -# stdlat1: Latitude of first standard parallel (degrees). -# stdlat2: Latitude of second standard parallel (degrees). -# nx: Number of grid cells along x-axis in Lambert conformal (x,y) plane. -# ny: Number of grid cells along y-axis in Lambert conformal (x,y) plane. -# lon1: Longitude of center of grid cell at bottom-left corner of grid (degrees). -# lat1: Latitude of center of grid cell at bottom-left corner of grid (degrees). -# dx: Grid cell size in x direction (meters). -# dy: Grid cell size in y direction (meters). -# -cen_lon: -120.0 -cen_lat: 38.0 -stdlat1: 38.0 -stdlat2: 38.0 -nx: 320 -ny: 192 -lon1: -125.25 -lat1: 35.3 -dx: 3000.0 -dy: 3000.0 - -output_fh: @[OUTPUT_FH] -nsout: -1 diff --git a/tests/parm/model_configure_regional_rrfs_a.IN b/tests/parm/model_configure_regional_rrfs_a.IN new file mode 100644 index 0000000000..d553ba6fef --- /dev/null +++ b/tests/parm/model_configure_regional_rrfs_a.IN @@ -0,0 +1,90 @@ +start_year: 2021 +start_month: 5 +start_day: 31 +start_hour: 3 +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +dt_atmos: 60 +cpl: .false. +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. +quilting: @[QUILTING] + + +# +# Write-component (quilting) computational parameters. +# +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +num_files: 2 +filename_base: 'dyn''phy' +output_file: 'netcdf' +write_nemsioflip: .false. +# +# Write-component output frequency parameter definitions: +# +# nfhout: +# Output frequency in hours after forecast hour "nfhmax_hf". +# +# nfhmax_hf: +# Number of forecast hours until output frequency "nfhout" takes affect. +# +# nfhout_hf: +# Output frequency in hours until forecast hour "nfhmax_hf". +# +# nsout: +# Output frequency in time steps (positive values override "nfhout" and +# "nfhout_hf"). +# +nfhout: 1 +nfhmax_hf: 60 +nfhout_hf: 1 +nsout: 0 +# +# Coordinate system used by the output grid. +# +output_grid: 'lambert_conformal' +# +# Parameter definitions for an output grid of type "lambert_conformal": +# +# cen_lon: +# Longitude of center of grid (degrees). +# +# cen_lat: +# Latitude of center of grid (degrees). +# +# stdlat1: +# Latitude of first standard parallel (degrees). +# +# stdlat2: +# Latitude of second standard parallel (degrees). +# +# nx: +# Number of grid cells along x-axis in Lambert conformal (x,y) plane. +# +# ny: +# Number of grid cells along y-axis in Lambert conformal (x,y) plane. +# +# lon1: +# Longitude of center of grid cell at bottom-left corner of grid (degrees). +# +# lat1: +# Latitude of center of grid cell at bottom-left corner of grid (degrees). +# +# dx: +# Grid cell size in x direction (meters). +# +# dy: +# Grid cell size in y direction (meters). +# +cen_lon: -97.5 +cen_lat: 38.5 +stdlat1: 38.5 +stdlat2: 38.5 +nx: 1799 +ny: 1059 +lon1: -122.719528 +lat1: 21.138123 +dx: 3000.0 +dy: 3000.0 diff --git a/tests/parm/model_configure_regional_stoch.IN b/tests/parm/model_configure_regional_stoch.IN index f1b51342e6..77ccf60c3a 100644 --- a/tests/parm/model_configure_regional_stoch.IN +++ b/tests/parm/model_configure_regional_stoch.IN @@ -8,7 +8,6 @@ nhours_fcst: @[FHMAX] fhrot: @[FHROT] dt_atmos: 36 -calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. diff --git a/tests/parm/model_configure_rrfs_conus13km.IN b/tests/parm/model_configure_rrfs_conus13km.IN index 800162c727..5be098edfb 100644 --- a/tests/parm/model_configure_rrfs_conus13km.IN +++ b/tests/parm/model_configure_rrfs_conus13km.IN @@ -5,9 +5,9 @@ start_hour: @[SHOUR] start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] +fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] -calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. diff --git a/tests/parm/nems.configure b/tests/parm/nems.configure deleted file mode 100644 index e8dadbe9eb..0000000000 --- a/tests/parm/nems.configure +++ /dev/null @@ -1,6 +0,0 @@ - logKindFlag: ESMF_LOGKIND_MULTI - EARTH_component_list: ATM - ATM_model: fv3 - runSeq:: - ATM - :: diff --git a/tests/parm/nems.configure.atm.IN b/tests/parm/nems.configure.atm.IN new file mode 100644 index 0000000000..5cc4cfcb66 --- /dev/null +++ b/tests/parm/nems.configure.atm.IN @@ -0,0 +1,27 @@ +############################################# +#### 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 new file mode 100644 index 0000000000..939c96e219 --- /dev/null +++ b/tests/parm/nems.configure.atm_lnd.IN @@ -0,0 +1,126 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM LND +EARTH_attributes:: + Verbosity = 0 +:: + +# 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 + ATM_model = @[atm_model] + LND_model = @[lnd_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_lnd = 96 + history_n_lnd_inst = 6 + history_option_lnd_inst = nhours +:: + +# 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 +:: + +# 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] + layout = @[layout_x]:@[layout_y] # need to be consistent with number of PEs + num_soil_levels = 4 + forcing_height = 10 + soil_level_thickness = 0.10:0.30:0.60:1.00 + soil_level_nodes = 0.05:0.25:0.70:1.50 + dynamic_vegetation_option = 4 + canopy_stomatal_resistance_option = 2 + soil_wetness_option = 1 + runoff_option = 1 + surface_exchange_option = 3 + supercooled_soilwater_option = 1 + frozen_soil_adjust_option = 1 + radiative_transfer_option = 3 + snow_albedo_option = 1 + 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 + glacier_option = 1 + surface_thermal_roughness_option = 2 + output_freq = 10800 + calc_snet = @[CALC_SNET] +:: + +# cold +runSeq:: +@@[coupling_interval_sec] + MED med_phases_prep_atm + MED -> ATM :remapMethod=redist + ATM + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + MED med_phases_prep_lnd + MED -> LND :remapMethod=redist + LND + LND -> MED :remapMethod=redist + MED med_phases_post_lnd + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: +:: + +ALLCOMP_attributes:: + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxNextSwCday = 3 # required for data atmosphere configurations + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 2.5e-1 + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 + read_restart = @[READRESTART] + mediator_present = true +:: diff --git a/tests/parm/nems.configure.atm_aerosols.IN b/tests/parm/nems.configure.atmaero.IN similarity index 83% rename from tests/parm/nems.configure.atm_aerosols.IN rename to tests/parm/nems.configure.atmaero.IN index cee9daf9b1..690a60ede8 100644 --- a/tests/parm/nems.configure.atm_aerosols.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 new file mode 100644 index 0000000000..5bb92e1359 --- /dev/null +++ b/tests/parm/nems.configure.atmaq.IN @@ -0,0 +1,41 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: ATM AQM +EARTH_attributes:: + Verbosity = max +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] +ATM_attributes:: + Verbosity = 0 +:: + +# AQM # +AQM_model: @[aqm_model] +AQM_petlist_bounds: @[aqm_petlist_bounds] +AQM_omp_num_threads: @[aqm_omp_num_threads] +AQM_attributes:: + Verbosity = 0 +:: + +# Run Sequence # +runSeq:: + @180 + ATM phase1 + ATM -> AQM + AQM + AQM -> ATM + ATM phase2 + @ +:: + 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 8b4c1f8a04..3f4da44a0f 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -4,9 +4,10 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # -EARTH_component_list: MED ATM OCN ICE +EARTH_component_list: MED ATM CHM OCN ICE WAV EARTH_attributes:: Verbosity = 0 :: @@ -14,11 +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 @@ -26,9 +28,18 @@ ATM_attributes:: OverwriteSlice = true :: +# CHM # +CHM_model: @[chm_model] +CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] +CHM_attributes:: + Verbosity = 0 +:: + # 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 +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 @@ -51,6 +63,19 @@ ICE_attributes:: stop_ymd = -999 :: +# 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 + diro = "." + logfile = wav.log + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] +:: + # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] @@ -60,14 +85,24 @@ runSeq:: @@[coupling_interval_fast_sec] MED med_phases_prep_atm MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - ATM + MED -> WAV :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 ICE + WAV ATM -> MED :remapMethod=redist MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -85,6 +120,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] + WAV_model = @[wav_model] history_n = 1 history_option = nhours history_ymd = -999 diff --git a/tests/parm/nems.configure.cpld_agrid.IN b/tests/parm/nems.configure.cpld_agrid.IN new file mode 100644 index 0000000000..6afb2fa618 --- /dev/null +++ b/tests/parm/nems.configure.cpld_agrid.IN @@ -0,0 +1,129 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHOCN_ICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_aofluxes_run + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + aoflux_grid = 'agrid' + aoflux_code = 'ccpp' + aoflux_ccpp_suite = 'FV3_sfc_ocean' + ccpp_restart_interval = @[RESTART_N_SEC] + ccpp_input_dir = 'INPUT/' + ccpp_nstf_name = @[NSTF_NAME] + ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' + ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' + ccpp_ini_layout = @[INPES],@[JNPES] + ccpp_ini_read = false +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/nems.configure.cpld_aero_wave.IN b/tests/parm/nems.configure.cpld_esmfthreads.IN similarity index 80% rename from tests/parm/nems.configure.cpld_aero_wave.IN rename to tests/parm/nems.configure.cpld_esmfthreads.IN index 166fa4419a..3f4da44a0f 100644 --- a/tests/parm/nems.configure.cpld_aero_wave.IN +++ b/tests/parm/nems.configure.cpld_esmfthreads.IN @@ -3,7 +3,8 @@ ############################################# # ESMF # - logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -14,11 +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 @@ -29,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 :: @@ -36,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 @@ -47,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 @@ -61,9 +66,14 @@ 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 + diro = "." + logfile = wav.log + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] :: # CMEPS warm run sequence @@ -71,17 +81,15 @@ runSeq:: @@[coupling_interval_slow_sec] MED med_phases_prep_ocn_avg MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 OCN @@[coupling_interval_fast_sec] MED med_phases_prep_atm MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - WAV -> ATM :srcMaskValues=1 - ATM -> WAV - ICE -> WAV + MED -> WAV :remapMethod=redist ATM phase1 ATM -> CHM CHM @@ -93,6 +101,8 @@ runSeq:: MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav MED med_phases_prep_ocn_accum @ OCN -> MED :remapMethod=redist @@ -110,6 +120,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] + WAV_model = @[wav_model] history_n = 1 history_option = nhours history_ymd = -999 diff --git a/tests/parm/nems.configure.cpld_noaero.IN b/tests/parm/nems.configure.cpld_noaero.IN new file mode 100644 index 0000000000..d12b8e836d --- /dev/null +++ b/tests/parm/nems.configure.cpld_noaero.IN @@ -0,0 +1,137 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true + +# EARTH # +EARTH_component_list: MED ATM OCN ICE WAV +EARTH_attributes:: + Verbosity = 0 +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] +:: + +# 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 + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHOCN_ICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# 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 + diro = "." + logfile = wav.log + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + WAV_model = @[wav_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/parm/nems.configure.cpld_aero.IN b/tests/parm/nems.configure.cpld_noaero_nowave.IN similarity index 88% rename from tests/parm/nems.configure.cpld_aero.IN rename to tests/parm/nems.configure.cpld_noaero_nowave.IN index 48388bd808..6a5458756b 100644 --- a/tests/parm/nems.configure.cpld_aero.IN +++ b/tests/parm/nems.configure.cpld_noaero_nowave.IN @@ -3,10 +3,11 @@ ############################################# # ESMF # - logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true # EARTH # -EARTH_component_list: MED ATM CHM OCN ICE +EARTH_component_list: MED ATM OCN ICE EARTH_attributes:: Verbosity = 0 :: @@ -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 @@ -26,16 +29,10 @@ ATM_attributes:: OverwriteSlice = true :: -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_attributes:: - Verbosity = 0 -:: - # 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 @@ -47,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 @@ -69,11 +67,7 @@ runSeq:: MED med_phases_prep_ice MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 + ATM ICE ATM -> MED :remapMethod=redist MED med_phases_post_atm diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_noaero_outwav.IN similarity index 90% rename from tests/parm/nems.configure.cpld_wave.IN rename to tests/parm/nems.configure.cpld_noaero_outwav.IN index 107bb9d95d..bd0b82a57f 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_noaero_outwav.IN @@ -14,6 +14,7 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +:: # ATM # ATM_model: @[atm_model] @@ -56,35 +57,39 @@ WAV_petlist_bounds: @[wav_petlist_bounds] WAV_attributes:: Verbosity = 0 OverwriteSlice = false + diro = "." + logfile = wav.log + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] :: # CMEPS warm run sequence runSeq:: @@[coupling_interval_slow_sec] + MED med_phases_prep_wav_avg MED med_phases_prep_ocn_avg + MED -> WAV :remapMethod=redist MED -> OCN :remapMethod=redist - OCN -> WAV - WAV -> OCN :srcMaskValues=1 + WAV OCN @@[coupling_interval_fast_sec] MED med_phases_prep_atm MED med_phases_prep_ice MED -> ATM :remapMethod=redist MED -> ICE :remapMethod=redist - WAV -> ATM :srcMaskValues=1 - ATM -> WAV - ICE -> WAV ATM ICE - WAV ATM -> MED :remapMethod=redist MED med_phases_post_atm ICE -> MED :remapMethod=redist MED med_phases_post_ice MED med_phases_prep_ocn_accum + MED med_phases_prep_wav_accum @ OCN -> MED :remapMethod=redist + WAV -> MED :remapMethod=redist MED med_phases_post_ocn + MED med_phases_post_wav MED med_phases_restart_write @ :: @@ -98,6 +103,7 @@ MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] + WAV_model = @[wav_model] history_n = 1 history_option = nhours history_ymd = -999 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 dea3fdbab1..d72121d166 100644 --- a/tests/parm/nems.configure.hafs_atm.IN +++ b/tests/parm/nems.configure.hafs_atm.IN @@ -1,17 +1,33 @@ - logKindFlag: ESMF_LOGKIND_MULTI +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# - EARTH_component_list: ATM +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI +globalResourceControl: true - ATM_model: fv3 - 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 bc17c35015..1953903040 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -3,7 +3,8 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM OCN WAV @@ -14,8 +15,9 @@ 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 + Verbosity = 0 Diagnostic = 0 ATM_model = @[atm_model] OCN_model = @[ocn_model] @@ -32,8 +34,9 @@ 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 + Verbosity = 0 Diagnostic = 0 mesh_atm = @[MESH_ATM] stop_n = @[FHMAX] @@ -45,8 +48,9 @@ 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 + Verbosity = 0 Diagnostic = 0 cdf_impexp_freq = 3 cpl_hour = 0 @@ -74,13 +78,14 @@ OCN_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: - Verbosity = 1 + Verbosity = 0 Diagnostic = 0 OverwriteSlice = false merge_import = .true. - mask_value_water = 1 - mask_value_land = 0 + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] :: # Run Sequence # @@ -103,6 +108,7 @@ runSeq:: MED med_phases_post_atm MED med_phases_post_ocn MED med_phases_post_wav + MED med_phases_restart_write @ :: @@ -125,7 +131,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 0 + dbug_flag = 6 use_coldstart = true orb_eccen = 1.e36 orb_iyear = 2000 diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index adb601027c..dce5544c31 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -3,7 +3,8 @@ ############################################## # ESMF # -logKindFlag: ESMF_LOGKIND_MULTI +logKindFlag: ESMF_LOGKIND_MULTI_ON +globalResourceControl: true # EARTH # EARTH_component_list: MED ATM WAV @@ -14,8 +15,9 @@ 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 + Verbosity = 0 Diagnostic = 0 ATM_model = @[atm_model] WAV_model = @[wav_model] @@ -31,8 +33,9 @@ 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 + Verbosity = 0 Diagnostic = 0 mesh_atm = @[MESH_ATM] stop_n = @[FHMAX] @@ -41,43 +44,17 @@ ATM_attributes:: write_restart_at_endofrun = .true. :: -# OCN # -OCN_attributes:: - Verbosity = 1 - 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 = 1 + Verbosity = 0 Diagnostic = 0 OverwriteSlice = false merge_import = .true. - mask_value_water = 1 - mask_value_land = 0 + mesh_wav = @[MESH_WAV] + multigrid = @[MULTIGRID] :: # Run Sequence # @@ -94,6 +71,7 @@ runSeq:: WAV -> MED :remapMethod=redist MED med_phases_post_atm MED med_phases_post_wav + MED med_phases_restart_write @ :: @@ -115,7 +93,7 @@ ALLCOMP_attributes:: restart_n = 6 restart_option = nhours restart_ymd = -999 - dbug_flag = 20 + dbug_flag = 6 use_coldstart = true orb_eccen = 1.e36 orb_iyear = 2000 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/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100755 new mode 100644 diff --git a/tests/parm/post_itag b/tests/parm/post_itag index f9246e0458..0bc3d71a08 100644 --- a/tests/parm/post_itag +++ b/tests/parm/post_itag @@ -1,7 +1,6 @@ &MODEL_INPUTS -MODELNAME='GFS' + MODELNAME='GFS' / &NAMPGB - KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, - / -EOF + KPO=57,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,40.,30.,20.,15.,10.,7.,5.,3.,2.,1.,0.7,0.4,0.2,0.1,0.07,0.04,0.02,0.01, +/ diff --git a/tests/parm/post_itag_fv3lam b/tests/parm/post_itag_fv3lam index 108efc24f8..656941014c 100644 --- a/tests/parm/post_itag_fv3lam +++ b/tests/parm/post_itag_fv3lam @@ -1,6 +1,6 @@ &MODEL_INPUTS -MODELNAME='FV3R' + MODELNAME='FV3R' / - &NAMPGB +&NAMPGB KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., - / +/ diff --git a/tests/parm/post_itag_hafs b/tests/parm/post_itag_hafs index 9561a1c1f0..656941014c 100644 --- a/tests/parm/post_itag_hafs +++ b/tests/parm/post_itag_hafs @@ -1,7 +1,6 @@ &MODEL_INPUTS -MODELNAME='FV3R' + MODELNAME='FV3R' / &NAMPGB - KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., - / -EOF + KPO=47,PO=1000.,975.,950.,925.,900.,875.,850.,825.,800.,775.,750.,725.,700.,675.,650.,625.,600.,575.,550.,525.,500.,475.,450.,425.,400.,375.,350.,325.,300.,275.,250.,225.,200.,175.,150.,125.,100.,70.,50.,30.,20.,10.,7.,5.,3.,2.,1., +/ diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index 0e0401d868..db3ccdde66 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 219 -258 +264 PRSLEV 32769 ncep_nco @@ -3643,6 +3643,228 @@ surface ? ? ? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? 34 ACM_NCPCP_ON_SURFACE ? @@ -9009,7 +9231,7 @@ spec_hgt_lvl_above_grnd ? ? 423 -MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 @@ -9046,7 +9268,7 @@ isobaric_sfc ? ? 424 -MAX_MAXDVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 @@ -10801,7 +11023,7 @@ surface ? ? 423 -MAX_MAXUVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa hourly maximum Upward Vertical Velocity between 100-1000hpa 1 tmpl4_8 @@ -10838,7 +11060,7 @@ isobaric_sfc ? ? 424 -MAX_MAXDVV_ON_SPEC_PRES_LVL_ABOVE_GRND_100-1000hpa +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa hourly maximum Downward Vertical Velocity between 100-1000hpa 1 tmpl4_8 diff --git a/tests/parm/postxconfig-NT-hafs.txt b/tests/parm/postxconfig-NT-hafs.txt index d60fabd68e..fc6ea22296 100644 --- a/tests/parm/postxconfig-NT-hafs.txt +++ b/tests/parm/postxconfig-NT-hafs.txt @@ -1,5 +1,5 @@ 1 -89 +78 HURPRS 32769 ncep_nco @@ -349,80 +349,6 @@ isobaric_sfc ? ? ? -22 -TKE_ON_ISOBARIC_SFC -? -1 -tmpl4_0 -TKE -? -? -isobaric_sfc -0 -? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? -153 -CLMR_ON_ISOBARIC_SFC -? -1 -tmpl4_0 -CLMR -? -? -isobaric_sfc -0 -? -45 -200. 500. 700. 1000. 2000. 3000. 5000. 7000. 10000. 12500. 15000. 17500. 20000. 22500. 25000. 27500. 30000. 32500. 35000. 37500. 40000. 42500. 45000. 47500. 50000. 52500. 55000. 57500. 60000. 62500. 65000. 67500. 70000. 72500. 75000. 77500. 80000. 82500. 85000. 87500. 90000. 92500. 95000. 97500. 100000. -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -6.0 -0 -0 -0 -? -? -? 166 ICMR_ON_ISOBARIC_SFC ? @@ -904,80 +830,6 @@ spec_hgt_lvl_above_grnd ? ? ? -245 -GUST_ON_SURFACE -? -1 -tmpl4_0 -GUST -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? -? -? -158 -POT_ON_SPEC_HGT_LVL_ABOVE_GRND_10m -? -1 -tmpl4_0 -POT -? -? -spec_hgt_lvl_above_grnd -0 -? -1 -10. -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? -? -? 24 PRES_ON_SURFACE ? @@ -1052,80 +904,6 @@ surface ? ? ? -27 -POT_ON_SURFACE -? -1 -tmpl4_0 -POT -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? -? -? -28 -SPFH_ON_SURFACE -? -1 -tmpl4_0 -SPFH -? -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? 26 TMP_ON_SURFACE ? @@ -1163,43 +941,6 @@ surface ? ? ? -120 -SNOWC_ON_SURFACE -? -1 -tmpl4_0 -SNOWC -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? 169 SFEXC_ON_SURFACE ? @@ -1422,12 +1163,12 @@ surface ? ? ? -34 -ACM_NCPCP_ON_SURFACE +33 +ACM_ACPCP_ON_SURFACE ? 1 tmpl4_8 -NCPCP +ACPCP ? ACM surface @@ -1459,14 +1200,14 @@ surface ? ? ? -167 -INST_PRATE_ON_SURFACE +34 +ACM_NCPCP_ON_SURFACE ? 1 -tmpl4_0 -PRATE -? +tmpl4_8 +NCPCP ? +ACM surface 0 ? @@ -1489,59 +1230,22 @@ surface 0 0.0 1 -6.0 -0 -0 -0 -? -? -? -161 -INST_TCDC_ON_ENTIRE_ATMOS -? -1 -tmpl4_0 -TCDC -? -? -entire_atmos_single_lyr -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -4.0 +-4.0 0 0 0 ? ? ? -144 -AVE_TCDC_ON_ENTIRE_ATMOS +271 +AVE_PRATE_ON_SURFACE ? 1 tmpl4_8 -TCDC +PRATE ? AVE -entire_atmos_single_lyr +surface 0 ? 0 @@ -1570,51 +1274,14 @@ entire_atmos_single_lyr ? ? ? -139 -AVE_CDLYR_ON_ENTIRE_ATMOS +272 +AVE_CPRAT_ON_SURFACE ? 1 tmpl4_8 -CDLYR -NCEP -AVE -entire_atmos_single_lyr -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -3.0 -0 -0 -0 -? -? -? -141 -INST_USWRF_ON_SURFACE -? -1 -tmpl4_0 -USWRF -NCEP +CPRAT ? +AVE surface 0 ? @@ -1637,59 +1304,22 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -142 -INST_ULWRF_ON_SURFACE +161 +INST_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_0 -ULWRF -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -6.0 -0 -0 -0 -? -? +TCDC ? -126 -AVE_DSWRF_ON_SURFACE ? -1 -tmpl4_8 -DSWRF -NCEP -AVE -surface +entire_atmos_single_lyr 0 ? 0 @@ -1711,22 +1341,22 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -127 -AVE_DLWRF_ON_SURFACE +144 +AVE_TCDC_ON_ENTIRE_ATMOS ? 1 tmpl4_8 -DLWRF -NCEP +TCDC +? AVE -surface +entire_atmos_single_lyr 0 ? 0 @@ -1755,51 +1385,14 @@ surface ? ? ? -128 -AVE_USWRF_ON_SURFACE +141 +INST_USWRF_ON_SURFACE ? 1 -tmpl4_8 +tmpl4_0 USWRF NCEP -AVE -surface -0 -? -0 -? -? -0 ? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -6.0 -0 -0 -0 -? -? -? -129 -AVE_ULWRF_ON_SURFACE -? -1 -tmpl4_8 -ULWRF -NCEP -AVE surface 0 ? @@ -1822,22 +1415,22 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -130 -AVE_USWRF_ON_TOP_OF_ATMOS +142 +INST_ULWRF_ON_SURFACE ? 1 -tmpl4_8 -USWRF +tmpl4_0 +ULWRF NCEP -AVE -top_of_atmos +? +surface 0 ? 0 @@ -1866,15 +1459,15 @@ top_of_atmos ? ? ? -131 -AVE_ULWRF_ON_TOP_OF_ATMOS +126 +AVE_DSWRF_ON_SURFACE ? 1 tmpl4_8 -ULWRF +DSWRF NCEP AVE -top_of_atmos +surface 0 ? 0 @@ -1896,22 +1489,22 @@ top_of_atmos 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -274 -INST_ULWRF_ON_TOP_OF_ATMOS +127 +AVE_DLWRF_ON_SURFACE ? 1 -tmpl4_0 -ULWRF +tmpl4_8 +DLWRF NCEP -? -top_of_atmos +AVE +surface 0 ? 0 @@ -1940,15 +1533,15 @@ top_of_atmos ? ? ? -275 -BRTMP_ON_TOP_OF_ATMOS +128 +AVE_USWRF_ON_SURFACE ? 1 -tmpl4_0 -BRTMP -? -? -top_of_atmos +tmpl4_8 +USWRF +NCEP +AVE +surface 0 ? 0 @@ -1970,21 +1563,21 @@ top_of_atmos 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -156 -INST_DSWRF_ON_SURFACE +129 +AVE_ULWRF_ON_SURFACE ? 1 -tmpl4_0 -DSWRF +tmpl4_8 +ULWRF NCEP -? +AVE surface 0 ? @@ -2007,22 +1600,22 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -157 -INST_DLWRF_ON_SURFACE +130 +AVE_USWRF_ON_TOP_OF_ATMOS ? 1 -tmpl4_0 -DLWRF +tmpl4_8 +USWRF NCEP -? -surface +AVE +top_of_atmos 0 ? 0 @@ -2044,22 +1637,22 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -44 -SFCR_ON_SURFACE +131 +AVE_ULWRF_ON_TOP_OF_ATMOS ? 1 -tmpl4_0 -SFCR -? -? -surface +tmpl4_8 +ULWRF +NCEP +AVE +top_of_atmos 0 ? 0 @@ -2081,22 +1674,22 @@ surface 0 0.0 1 -6.0 +4.0 0 0 0 ? ? ? -45 -FRICV_ON_SURFACE +274 +INST_ULWRF_ON_TOP_OF_ATMOS ? 1 tmpl4_0 -FRICV +ULWRF NCEP ? -surface +top_of_atmos 0 ? 0 @@ -2125,12 +1718,12 @@ surface ? ? ? -132 -CD_ON_SURFACE +156 +INST_DSWRF_ON_SURFACE ? 1 tmpl4_0 -CD +DSWRF NCEP ? surface @@ -2162,13 +1755,13 @@ surface ? ? ? -133 -UFLX_ON_SURFACE +157 +INST_DLWRF_ON_SURFACE ? 1 tmpl4_0 -UFLX -? +DLWRF +NCEP ? surface 0 @@ -2199,12 +1792,12 @@ surface ? ? ? -134 -VFLX_ON_SURFACE +44 +SFCR_ON_SURFACE ? 1 tmpl4_0 -VFLX +SFCR ? ? surface @@ -2229,21 +1822,21 @@ surface 0 0.0 1 -4.0 +6.0 0 0 0 ? ? ? -43 -AVE_SHTFL_ON_SURFACE +45 +FRICV_ON_SURFACE ? 1 -tmpl4_8 -SHTFL +tmpl4_0 +FRICV +NCEP ? -AVE surface 0 ? @@ -2273,14 +1866,14 @@ surface ? ? ? -42 -AVE_LHTFL_ON_SURFACE +133 +UFLX_ON_SURFACE ? 1 -tmpl4_8 -LHTFL +tmpl4_0 +UFLX +? ? -AVE surface 0 ? @@ -2310,14 +1903,14 @@ surface ? ? ? -47 -ACM_EVP_ON_SURFACE +134 +VFLX_ON_SURFACE ? 1 -tmpl4_8 -EVP +tmpl4_0 +VFLX +? ? -ACM surface 0 ? @@ -2680,43 +2273,6 @@ tropopause ? ? ? -108 -POT_ON_TROPOPAUSE -? -1 -tmpl4_0 -POT -? -? -tropopause -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -4.0 -0 -0 -0 -? -? -? 56 UGRD_ON_TROPOPAUSE ? @@ -3124,19 +2680,19 @@ entire_atmos_single_lyr ? ? ? -285 -TCLSW_ON_ENTIRE_ATMOS -? +422 +MAX_WIND_ON_SPEC_HGT_LVL_ABOVE_GRND_10m +maximum wind speed on 10 meter Above Ground 1 -tmpl4_0 -TCLSW -NCEP -? -entire_atmos_single_lyr -0 +tmpl4_8 +WIND ? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +10. ? 0 ? @@ -3154,22 +2710,22 @@ entire_atmos_single_lyr 0 0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -286 -TCOLM_ON_ENTIRE_ATMOS +245 +GUST_ON_SURFACE ? 1 tmpl4_0 -TCOLM -NCEP +GUST ? -entire_atmos_single_lyr +? +surface 0 ? 0 @@ -3191,31 +2747,68 @@ entire_atmos_single_lyr 0 0.0 1 -5.0 +3.0 0 0 0 ? ? ? -291 -LWHR_ON_ENTIRE_ATMOS -? +423 +MAX_MAXUVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Upward Vertical Velocity between 100-1000hpa 1 -tmpl4_0 -LWHR +tmpl4_8 +MAXUVV NCEP +MAX +isobaric_sfc +0 ? -entire_atmos_single_lyr +1 +10000. +isobaric_sfc +0 +? +1 +100000. +? +? +0 +0.0 0 +0.0 ? 0 +0.0 +0 +0.0 +1 +-4.0 +0 +0 +0 +? ? ? +424 +MAX_MAXDVV_ON_ISOBARIC_SFC_100-1000hpa +hourly maximum Downward Vertical Velocity between 100-1000hpa +1 +tmpl4_8 +MAXDVV +NCEP +MAX +isobaric_sfc 0 ? +1 +10000. +isobaric_sfc 0 ? +1 +100000. ? ? 0 @@ -3228,31 +2821,31 @@ entire_atmos_single_lyr 0 0.0 1 -5.0 +-4.0 0 0 0 ? ? ? -292 -AVE_LRGHR_ON_ENTIRE_ATMOS +790 +GSD_MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_0-3km ? 1 tmpl4_8 -LRGHR +MXUPHL NCEP -AVE -entire_atmos_single_lyr -0 -? -0 -? -? +MAX +spec_hgt_lvl_above_grnd 0 ? +1 +3000. +spec_hgt_lvl_above_grnd 0 ? +1 +0000. ? ? 0 @@ -3265,31 +2858,31 @@ entire_atmos_single_lyr 0 0.0 1 -5.0 +-3.0 0 0 0 ? ? ? -508 -MAX_PRATE_ON_SURFACE -Maximum Precipitation Rate on surface +420 +MAX_UPHL_ON_SPEC_HGT_LVL_ABOVE_GRND_2-5km +maximum Updraft Helicity on Specified Height Level Above Ground 1 tmpl4_8 -PRATE -? +MXUPHL +NCEP MAX -surface -0 -? -0 -? -? +spec_hgt_lvl_above_grnd 0 ? +1 +5000. +spec_hgt_lvl_above_grnd 0 ? +1 +2000. ? ? 0 @@ -3302,7 +2895,7 @@ surface 0 0.0 1 -6.0 +-3.0 0 0 0 diff --git a/tests/parm/postxconfig-NT.txt b/tests/parm/postxconfig-NT.txt index 9a40bb4676..16ae865984 100644 --- a/tests/parm/postxconfig-NT.txt +++ b/tests/parm/postxconfig-NT.txt @@ -1,6 +1,6 @@ 2 112 -197 +209 GFSPRS 0 ncep_nco @@ -1767,13 +1767,13 @@ HLCY spec_hgt_lvl_above_grnd 0 ? -1 -3000. +2 +3000. 1000. spec_hgt_lvl_above_grnd 0 ? -1 -0. +2 +0. 0. ? ? 0 @@ -2607,9 +2607,9 @@ entire_atmos_single_lyr ? ? ? -180 -VIS_ON_SURFACE -? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 VIS @@ -7306,6 +7306,450 @@ surface ? ? ? +746 +ACM_GRAUPEL_ON_SURFACE +? +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +775 +BUCKET_GRAUPEL_ON_SURFACE +bucket graupel precipitation on surface +1 +tmpl4_8 +FROZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +782 +ACM_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1003 +BUCKET_FRAIN_ON_SURFACE +? +1 +tmpl4_8 +FRZR +NCEP +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1004 +ACM_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1005 +BUCKET_SNOWFALL_ON_SURFACE +? +1 +tmpl4_8 +TSNOWP +? +ACM +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +600 +AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +total_aerosol +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +601 +DUST_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +dust_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +602 +SEASALT_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +sea_salt_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +603 +SULFATE_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +sulphate_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +604 +ORGANIC_CARBON_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +605 +BLACK_CARBON_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +black_carbon_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? GFSFLX 0 ncep_nco diff --git a/tests/parm/postxconfig-NT_FH00.txt b/tests/parm/postxconfig-NT_FH00.txt index 73e131734b..229c1f52e9 100644 --- a/tests/parm/postxconfig-NT_FH00.txt +++ b/tests/parm/postxconfig-NT_FH00.txt @@ -1,6 +1,6 @@ 2 47 -150 +156 GFSPRS 0 ncep_nco @@ -1767,13 +1767,13 @@ HLCY spec_hgt_lvl_above_grnd 0 ? -1 -3000. +2 +3000. 1000. spec_hgt_lvl_above_grnd 0 ? -1 -0. +2 +0. 0. ? ? 0 @@ -2015,9 +2015,9 @@ surface ? ? ? -180 -VIS_ON_SURFACE -? +410 +GSD_VIS_ON_SURFACE +GSD_visibility on surface 1 tmpl4_0 VIS @@ -5567,6 +5567,228 @@ surface ? ? ? +600 +AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +total_aerosol +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +601 +DUST_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +dust_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +602 +SEASALT_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +sea_salt_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +603 +SULFATE_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +sulphate_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +604 +ORGANIC_CARBON_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +particulate_org_matter_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? +605 +BLACK_CARBON_AER_OPT_GFS_at550 +? +1 +tmpl4_48 +AOTK +? +? +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +black_carbon_dry +smaller_than_first_limit +6 +20 +0 +0.0 +between_first_second_limit +9 +545 +9 +555 +1 +9.0 +0 +0 +0 +? +? +? GFSFLX 0 ncep_nco diff --git a/tests/parm/rap.nml.IN b/tests/parm/rap.nml.IN index 9553f3d7ae..eea8cc353f 100644 --- a/tests/parm/rap.nml.IN +++ b/tests/parm/rap.nml.IN @@ -175,7 +175,7 @@ deflate_level=1 iopt_crs = 2 iopt_btr = 1 iopt_run = 1 - iopt_sfc = 3 + iopt_sfc = 4 iopt_frz = 1 iopt_inf = 1 iopt_rad = 3 @@ -197,7 +197,6 @@ deflate_level=1 cplwav = @[CPLWAV] cplwav2atm = @[CPLWAV2ATM] effr_in = .true. - ldiag_ugwp = .false. do_ugwp = @[DO_UGWP] do_tofd = @[DO_TOFD] gwd_opt = @[GWD_OPT] diff --git a/tests/parm/regional.nml.IN b/tests/parm/regional.nml.IN index caed1c34ec..f1d0675a58 100644 --- a/tests/parm/regional.nml.IN +++ b/tests/parm/regional.nml.IN @@ -1,12 +1,13 @@ &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' + blocksize = 28 + chksum_debug = .false. + dycore_only = .false. + avg_max_length = 3600. + ccpp_suite = '@[CCPP_SUITE]' / &diag_manager_nml - prepend_date = .false. + prepend_date = .false. / &fms_io_nml @@ -22,24 +23,28 @@ / &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' + grid_file = 'INPUT/grid_spec.nc' / &fv_core_nml - layout = @[INPES],@[JNPES] + layout = @[INPES],@[JNPES] io_layout = 1,1 - npx = 211 + npx = 321 npy = 193 ntiles = 1, - npz = 60 - !grid_type = -1 + npz = 64 + npz_type = '' + dz_min = 2 + psm_bc = 1 make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. + fv_debug = .F. + range_warn = .T. + reset_eta = .F. + sg_cutoff = 10000.0 n_sponge = 9 nudge_qv = .false. - tau = 5.0 + rf_fast = .F. + tau = 5. rf_cutoff = 20.e2 d2_bg_k1 = 0.20 d2_bg_k2 = 0.04 @@ -47,128 +52,136 @@ kord_mt = 9 kord_wz = 9 kord_tr = 9 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. beta = 0. a_imp = 1. p_fac = 0.1 k_split = 2 - n_split = 6 + n_split = 5 nwat = 6 na_init = @[NA_INIT] d_ext = 0.0 dnats = 0 fv_sg_adj = 300 - d2_bg = 0. - nord = 2 + d2_bg = 0.0 + nord = 3 dddmp = 0.1 - d4_bg = 0.15 - vtdm4 = 0.075 + d4_bg = 0.12 + vtdm4 = 0.02 delt_max = 0.008 ke_bg = 0. do_vort_damp = .true. external_ic = @[EXTERNAL_IC] - external_eta = .true. + external_eta = .T. gfs_phil = .false. nggps_ic = @[NGGPS_IC] mountain = @[MOUNTAIN] - ncep_ic = .false. + ncep_ic = .F. d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 10 - adjust_dry_mass = .false. + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = 6 + hord_tr = 10 + adjust_dry_mass = .F. consv_te = 0. - do_sat_adj = .false. - consv_am = .false. - fill = .true. - dwind_2d = .false. + do_sat_adj = .F. + consv_am = .F. + fill = .T. + dwind_2d = .F. print_freq = 6 warm_start = @[WARM_START] no_dycore = .false. - z_tracer = .true. + z_tracer = .T. agrid_vel_rst = .true. - read_increment = @[READ_INCREMENT] + read_increment = .F. res_latlon_dynamics = "fv3_increment.nc" - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 + target_lat = 55.0 + target_lon = -112.5 + stretch_fac = 0.999 n_zs_filter = 0 regional = .true. - bc_update_interval = 6 + bc_update_interval = 3 regional_bcs_from_gsi = .false. write_restart_with_bcs = @[WRITE_RESTART_WITH_BCS] - nrows_blend = 0 + nrows_blend = 10 / - &external_ic_nml + &external_ic_nml filtered_terrain = .true. levp = 65 gfs_dwinds = .true. - checker_tr = .false. + checker_tr = .F. nt_checker = 0 / &gfs_physics_nml - fhzero = 6. + fhzero = 1. ldiag3d = .false. lradar = .true. avg_max_length = 3600. - nsradar_reset = 3600. - ldiag_ugwp = .false. - do_ugwp = .false. - do_tofd = .false. - fhcyc = 0 + nsfullradar_diag = 3600. + h2o_phys = .true. + ldiag_ugwp = .F. + do_ugwp = .F. + fhcyc = 0. nst_anl = .true. use_ufo = .true. pre_rad = .false. - imp_physics = 8 - ltaerosol = .false. + imp_physics = 8 + ltaerosol = .F. ttendlim = -999.0 - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] pdfcld = .false. fhswr = 900. fhlwr = 900. ialb = 1 iems = 1 - IAER = 111 + IAER = 1011 + iccn = 2 + icliq_sw = 2 + iovr = 3 ico2 = 2 isubc_sw = 2 isubc_lw = 2 isol = 2 lwhtr = .true. swhtr = .true. - cnvgwd = .true. - shal_cnv = .true. + shal_cnv = .false. do_deep = .false. - cal_pre = .true. + cal_pre = .false. redrag = .true. dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - do_mynnedmf = .true. + hybedmf = .F. + satmedmf = .F. + lheatstrg = .F. + do_mynnedmf = .T. do_mynnsfclay = .true. lgfdlmprad = .false. - effr_in = .true. - random_clds = .true. + effr_in = .T. + random_clds = .false. trans_trac = .true. - cnvcld = .true. + cnvcld = .false. imfshalcnv = 2 imfdeepcnv = 2 - cdmbgwd = 2.0, 0.25 ! NCEP default + cdmbgwd = 0.88, 0.04 + cnvgwd = .false. + do_gsl_drag_ls_bl = .false. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_tofd = .false. + do_ugwp = .false. + do_ugwp_v0 = .false. + do_ugwp_v0_nst_only = .false. + do_ugwp_v0_orog_only = .false. + gwd_opt = 2 prslrd0 = 0. ivegsrc = 1 isot = 1 lsm = 1 +! lsoil_lsm = 4 iopt_dveg = 2 iopt_crs = 1 iopt_btr = 1 @@ -181,39 +194,42 @@ iopt_snf = 4 iopt_tbot = 2 iopt_stc = 1 - iopt_trs = 2 - debug = .false. - oz_phys = @[OZ_PHYS_OLD] - oz_phys_2015 = @[OZ_PHYS_NEW] - h2o_phys = @[H2O_PHYS] + debug = .true. + oz_phys = .F. + oz_phys_2015 = .T. nstf_name = 2,0,0,0,0 - cplflx = .false. + cplflx = .F. iau_delthrs = 6 iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] + iau_inc_files = '' xkzminv = 0.3 xkzm_m = 1.0 xkzm_h = 1.0 - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] + do_sppt = .F. + do_shum = .F. + do_skeb = .F. + lndp_type = 0 + n_var_lndp = 0 icloud_bl = 1 bl_mynn_tkeadvect = .true. bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 - do_RRTMGP = @[DO_RRTMGP] - active_gases = 'h2o_co2_o3_n2o_ch4_o2' - ngases = 6 - lw_file_gas = 'rrtmgp-data-lw-g128-210809.nc' - lw_file_clouds = 'rrtmgp-cloud-optics-coeffs-lw.nc' - sw_file_gas = 'rrtmgp-data-sw-g112-210809.nc' - sw_file_clouds = 'rrtmgp-cloud-optics-coeffs-sw.nc' - rrtmgp_nGptsSW = 112 - rrtmgp_nGptsLW = 128 - rrtmgp_nBandsLW = 16 - rrtmgp_nBandsSW = 14 - doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] - doGP_lwscat = @[DOGP_LWSCAT] + print_diff_pgr = .true. +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 / &interpolator_nml @@ -221,16 +237,16 @@ / &namsfc - FNALBC2 = "C96.facsf.tileX.nc", - FNALBC = "C96.snowfree_albedo.tileX.nc", - FNTG3C = "C96.substrate_temperature.tileX.nc", - FNVEGC = "C96.vegetation_greenness.tileX.nc", - FNVETC = "C96.vegetation_type.tileX.nc", - FNSOTC = "C96.soil_type.tileX.nc", - FNVMNC = "C96.vegetation_greenness.tileX.nc", - FNVMXC = "C96.vegetation_greenness.tileX.nc", - FNSLPC = "C96.slope_type.tileX.nc", - FNABSC = "C96.maximum_snow_albedo.tileX.nc", + FNALBC2 = "C3463.facsf.tileX.nc", + FNALBC = "C3463.snowfree_albedo.tileX.nc", + FNTG3C = "C3463.substrate_temperature.tileX.nc", + FNVEGC = "C3463.vegetation_greenness.tileX.nc", + FNVETC = "C3463.vegetation_type.tileX.nc", + FNSOTC = "C3463.soil_type.tileX.nc", + FNVMNC = "C3463.vegetation_greenness.tileX.nc", + FNVMXC = "C3463.vegetation_greenness.tileX.nc", + FNSLPC = "C3463.slope_type.tileX.nc", + FNABSC = "C3463.maximum_snow_albedo.tileX.nc", FNGLAC = "global_glacier.2x2.grb", FNMXIC = "global_maxice.2x2.grb", FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", @@ -238,11 +254,11 @@ FNZORC = "igbp" FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", + FNMSKH = "seaice_newland.grb", FNTSFA = "", FNACNA = "", FNSNOA = "", - LDEBUG =.false., + LDEBUG =.true., FSMCL(2) = 99999 FSMCL(3) = 99999 FSMCL(4) = 99999 @@ -261,73 +277,3 @@ FSNOS = 99999, FSICS = 99999, / - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional_atmaq.nml.IN b/tests/parm/regional_atmaq.nml.IN new file mode 100644 index 0000000000..c99dcc4cae --- /dev/null +++ b/tests/parm/regional_atmaq.nml.IN @@ -0,0 +1,356 @@ +&atmos_model_nml + blocksize = 29 + ccpp_suite = '@[CCPP_SUITE]' + chksum_debug = .false. + dycore_only = .false. +/ + +&diag_manager_nml + max_output_fields = @[MAX_OUTPUT_FIELDS] + prepend_date = .false. +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 12000000 + print_memory_usage = .false. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&fv_core_nml + a_imp = 1.0 + adjust_dry_mass = .false. + agrid_vel_rst = .false. + bc_update_interval = 6 + beta = 0.0 + consv_am = .false. + consv_te = 0.0 + d2_bg = 0.0 + d2_bg_k1 = 0.15 + d2_bg_k2 = 0.02 + d4_bg = 0.12 + d_con = 1.0 + d_ext = 0.0 + dddmp = 0.1 + delt_max = 0.008 + dnats = @[DNATS] + do_sat_adj = .true. + do_schmidt = .true. + do_vort_damp = .true. + dwind_2d = .false. + dz_min = 2 + external_eta = .true. + external_ic = @[EXTERNAL_IC] + fill = .true. + full_zs_filter = .false. + fv_debug = .false. + fv_sg_adj = 600 + gfs_phil = .false. + hord_dp = 6 + hord_mt = 6 + hord_tm = 6 + hord_tr = 10 + hord_vt = 6 + hydrostatic = .false. + io_layout = 1, 1 + k_split = 1 + ke_bg = 0.0 + kord_mt = 9 + kord_tm = -9 + kord_tr = 9 + kord_wz = 9 + layout = @[INPES],@[JNPES] + make_nh = @[MAKE_NH] + mountain = @[MOUNTAIN] + n_split = 8 + n_sponge = 30 + n_zs_filter = 0 + na_init = @[NA_INIT] + ncep_ic = .false. + nggps_ic = @[NGGPS_IC] + no_dycore = .false. + nord = 3 + npx = @[NPX] + npy = @[NPY] + npz = @[NPZ] + nrows_blend = 0 + ntiles = @[NTILES] + nudge_qv = .true. + nwat = 6 + p_fac = 0.1 + phys_hydrostatic = .false. + print_freq = 6 + psm_bc = 1 + range_warn = .false. + read_increment = @[READ_INCREMENT] + regional = .true. + regional_bcs_from_gsi = .false. + res_latlon_dynamics = @[RES_LATLON_DYNAMICS] + reset_eta = .false. + rf_cutoff = 750.0 + stretch_fac = 0.999 + target_lat = 38.5 + target_lon = -97.5 + tau = 5.0 + use_hydro_pressure = .false. + vtdm4 = 0.075 + warm_start = @[WARM_START] + write_restart_with_bcs = .false. + z_tracer = .true. +/ + +&external_ic_nml + checker_tr = .false. + filtered_terrain = .true. + gfs_dwinds = .true. + levp = @[NPZP] + nt_checker = 0 +/ + + +&gfdl_cloud_microphysics_nml + c_cracw = 0.8 + c_paut = 0.5 + c_pgacs = 0.01 + c_psaci = 0.05 + ccn_l = 300.0 + ccn_o = 100.0 + const_vg = .false. + const_vi = .false. + const_vr = .false. + const_vs = .false. + de_ice = .false. + do_qa = .true. + do_sedi_heat = .false. + dw_land = 0.16 + dw_ocean = 0.1 + fast_sat_adj = .true. + fix_negative = .true. + icloud_f = 1 + mono_prof = .true. + mp_time = 90.0 + prog_ccn = .false. + qi0_crt = 8e-05 + qi_lim = 1.0 + ql_gen = 0.001 + ql_mlt = 0.001 + qs0_crt = 0.001 + rad_graupel = .true. + rad_rain = .true. + rad_snow = .true. + rh_inc = 0.3 + rh_inr = 0.3 + rh_ins = 0.3 + rthresh = 1e-05 + sedi_transport = .true. + tau_g2v = 900.0 + tau_i2s = 1000.0 + tau_l2v = 225.0 + tau_v2l = 150.0 + use_ccn = .true. + use_ppm = .false. + vg_max = 12.0 + vi_max = 1.0 + vr_max = 12.0 + vs_max = 2.0 + z_slope_ice = .true. + z_slope_liq = .true. +/ + +&gfs_physics_nml + cal_pre = .false. + cdmbgwd = @[CDMBWD] + cnvcld = @[CNVCLD] + cnvgwd = .true. + cplaqm = @[AQM] + cplchm = @[CPLCHM] + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + cplocn2atm = .false. + debug = .false. + do_myjpbl = .false. + do_myjsfc = .false. + do_RRTMGP = @[DO_RRTMGP] + do_shum = @[DO_SHUM] + do_skeb = @[DO_SKEB] + do_spp = .false. + do_sppt = @[DO_SPPT] + do_tofd = .false. + do_ugwp = .false. + do_ysu = .false. + doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] + doGP_lwscat = @[DOGP_LWSCAT] + dspheat = .true. + effr_in = .true. + fhcyc = @[FHCYC] + fhlwr = 3600.0 + fhswr = 3600.0 + fhzero = @[FHZERO] + fscav_aero = @[FSCAV_AERO] + h2o_phys = .true. + hybedmf = .true. + iaer = @[IAER] + ialb = 1 + iau_inc_files = '' + ico2 = 2 + iems = 1 + imfdeepcnv = @[IMFDEEPCNV] + imfshalcnv = @[IMFSHALCNV] + imp_physics = 11 + iopt_alb = 2 + iopt_btr = 1 + iopt_crs = 1 + iopt_dveg = 2 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_snf = 4 + iopt_stc = 1 + iopt_tbot = 2 + iovr = @[IOVR] + isol = 2 + isot = 1 + isubc_lw = 2 + isubc_sw = 2 + ivegsrc = 1 + ldiag3d = @[LDIAG3D] + ldiag_ugwp = .false. + lgfdlmprad = .true. + lheatstrg = @[LHEATSTRG] + lndp_type = @[LNDP_TYPE] + lseaspray = @[LSEASPRAY] + lsm = 1 + lsoil = 4 + lwhtr = .true. + n_var_lndp = @[N_VAR_LNDP] + n_var_spp = 0 + nsfullradar_diag = 3600 + nst_anl = .true. + nstf_name = 2, 1, 0, 0, 0 + oz_phys = .false. + oz_phys_2015 = .true. + pdfcld = .false. + pre_rad = .false. + print_diff_pgr = @[PRINT_DIFF_PGR] + prslrd0 = 0.0 + qdiag3d = @[QDIAG3D] + random_clds = @[RANDOM_CLDS] + ras = @[RAS] + redrag = .true. + satmedmf = .false. + shal_cnv = .true. + shinhong = .false. + swhtr = .true. + trans_trac = .true. + use_ufo = .true. + xkzm_h = 1.0 + xkzm_m = 1.0 + xkzminv = 0.3 +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&nam_sfcperts + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=21600, + LNDP_LSCALE=500000, + ISEED_LNDP=2010, + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] +/ + +&nam_stochy + STOCHINI=@[STOCHINI], + SKEBNORM=1, + SKEB_NPASS=30, + SKEB_VDOF=5, + SKEB=@[SKEB], + SKEB_TAU=2.16E4, + SKEB_LSCALE=1000.E3, + SKEBINT=1800, + SHUM=@[SHUM], + SHUM_TAU=21600, + SHUM_LSCALE=500000, + SHUMINT=3600, + SPPT=@[SPPT], + SPPT_TAU=21600, + SPPT_LSCALE=500000, + SPPT_LOGIT=.TRUE., + SPPT_SFCLIMIT=.TRUE., + SPPTINT=1800, + ISEED_SHUM=1, + ISEED_SKEB=2, + ISEED_SPPT=3, +/ + + +&namsfc + fabsl = 99999 + faisl = 99999 + faiss = 99999 + fnabsc = @[FNABSC] + fnacna = '' + fnaisc = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + fnalbc = @[FNALBC] + fnalbc2 = 'C775.facsf.tileX.nc' + fnglac = 'global_glacier.2x2.grb' + fnmskh = 'seaice_newland.grb' + fnmxic = 'global_maxice.2x2.grb' + fnslpc = 'C775.slope_type.tileX.nc' + fnsmcc = @[FNSMCC] + fnsnoa = '' + fnsnoc = 'global_snoclim.1.875.grb' + fnsotc = @[FNSOTC] + fntg3c = 'C775.substrate_temperature.tileX.nc' + fntsfa = '' + fntsfc = 'RTGSST.1982.2012.monthly.clim.grb' + fnvegc = 'C775.vegetation_greenness.tileX.nc' + fnvetc = @[FNVETC] + fnvmnc = 'C775.vegetation_greenness.tileX.nc' + fnvmxc = 'C775.vegetation_greenness.tileX.nc' + fnzorc = 'igbp' + fsicl = 99999 + fsics = 99999 + fslpl = 99999 + fsmcl = 99999, 99999, 99999 + fsnol = 99999 + fsnos = 99999 + fsotl = 99999 + ftsfl = 99999 + ftsfs = 90 + fvetl = 99999 + fvmnl = 99999 + fvmxl = 99999 + landice = .true. + ldebug = .false. +/ + +&cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 54 +/ diff --git a/tests/parm/regional_c768.nml.IN b/tests/parm/regional_c768.nml.IN deleted file mode 100644 index 998ae21b30..0000000000 --- a/tests/parm/regional_c768.nml.IN +++ /dev/null @@ -1,296 +0,0 @@ - &atmos_model_nml - blocksize = 32 - chksum_debug = .false. - dycore_only = .false. - ccpp_suite = '@[CCPP_SUITE]' -/ - -&diag_manager_nml - prepend_date = .false. -/ - - &fms_io_nml - checksum_required = .false. - max_files_r = 100, - max_files_w = 100, -/ - - &fms_nml - clock_grain = 'ROUTINE', - domains_stack_size = 3000000, - print_memory_usage = .false. -/ - - &fv_grid_nml - grid_file = 'INPUT/grid_spec.nc' -/ - - &fv_core_nml - layout = 18,24 - io_layout = 1,1 - npx = 1729 - npy = 1441 - ntiles = 1, - npz = 64 - !grid_type = -1 - make_nh = @[MAKE_NH] - fv_debug = .false. - range_warn = .true. - reset_eta = .false. - n_sponge = 24 - nudge_qv = .true. - tau = 5. - rf_cutoff = 20.e2 - d2_bg_k1 = 0.20 - d2_bg_k2 = 0.04 - kord_tm = -11 - kord_mt = 11 - kord_wz = 11 - kord_tr = 11 - hydrostatic = .false. - phys_hydrostatic = .false. - use_hydro_pressure = .false. - beta = 0. - a_imp = 1. - p_fac = 0.1 - k_split = 4 - n_split = 5 - nwat = 6 - na_init = @[NA_INIT] - d_ext = 0.0 - dnats = 1 - fv_sg_adj = 300 - d2_bg = 0. - nord = 2 - dddmp = 0.1 - d4_bg = 0.12 - vtdm4 = 0.02 - delt_max = 0.008 - ke_bg = 0. - do_vort_damp = .true. - external_ic = @[EXTERNAL_IC] - external_eta = .true. - gfs_phil = .false. - nggps_ic = @[NGGPS_IC] - mountain = @[MOUNTAIN] - ncep_ic = .false. - d_con = 1.0 - hord_mt = 6 - hord_vt = 6 - hord_tm = 6 - hord_dp = 6 - hord_tr = 8 - adjust_dry_mass = .false. - consv_te = 0. - do_sat_adj = .true. - consv_am = .false. - fill = .true. - dwind_2d = .false. - print_freq = 6 - warm_start = @[WARM_START] - no_dycore = .false. - z_tracer = .true. - read_increment = @[READ_INCREMENT] - res_latlon_dynamics = "fv3_increment.nc" - - do_schmidt = .true. - target_lat = 35.5 - target_lon = -97.5 - stretch_fac = 1.5 -!! nord_zs_filter = 4 - n_zs_filter = 0 - regional = .true. - bc_update_interval = 6 -/ - - &external_ic_nml - filtered_terrain = .true. - levp = 65 - gfs_dwinds = .true. - checker_tr = .false. - nt_checker = 0 -/ - - &gfs_physics_nml - fhzero = 3. - ldiag3d = .false. - fhcyc = 24. - nst_anl = .true. - use_ufo = .true. - pre_rad = .false. - imp_physics = 11 - pdfcld = .false. - fhswr = 3600. - fhlwr = 3600. - ialb = 1 - iems = 1 - IAER = 111 - ico2 = 2 - isubc_sw = 2 - isubc_lw = 2 - isol = 2 - lwhtr = .true. - swhtr = .true. - cnvgwd = .true. - shal_cnv = .false. - cal_pre = .false. - redrag = .true. - dspheat = .true. - hybedmf = @[HYBEDMF] - satmedmf = @[SATMEDMF] - lheatstrg = @[LHEATSTRG] - lseaspray = @[LSEASPRAY] - random_clds = .false. - trans_trac = .true. - cnvcld = .false. - imfshalcnv = 2 - imfdeepcnv = 2 - cdmbgwd = 3.5, 0.25 ! NCEP default - prslrd0 = 0. - ivegsrc = 1 - isot = 1 - lsm = 1 - iopt_dveg = 2 - iopt_crs = 1 - iopt_btr = 1 - iopt_run = 1 - iopt_sfc = 1 - iopt_frz = 1 - iopt_inf = 1 - iopt_rad = 1 - iopt_alb = 2 - iopt_snf = 4 - iopt_tbot = 2 - iopt_stc = 1 - iopt_trs = 2 - debug = .false. - oz_phys = @[OZ_PHYS_OLD] - oz_phys_2015 = @[OZ_PHYS_NEW] - h2o_phys = @[H2O_PHYS] - nstf_name = 2,0,0,0,0 - cplflx = .false. - iau_delthrs = 6 - iaufhrs = 30 - iau_inc_files = @[IAU_INC_FILES] - do_sppt = @[DO_SPPT] - do_shum = @[DO_SHUM] - do_skeb = @[DO_SKEB] - lndp_type = @[LNDP_TYPE] - n_var_lndp = @[N_VAR_LNDP] -/ - - &interpolator_nml - interp_method = 'conserve_great_circle' -/ - -&namsfc - FNGLAC = "global_glacier.2x2.grb", - FNMXIC = "global_maxice.2x2.grb", - FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", - FNSNOC = "global_snoclim.1.875.grb", - FNZORC = "igbp" - FNALBC = "global_snowfree_albedo.bosu.t126.384.190.rg.grb", - FNALBC2 = "global_albedo4.1x1.grb", - FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", - FNTG3C = "global_tg3clim.2.6x1.5.grb", - FNVEGC = "global_vegfrac.0.144.decpercent.grb", - FNVETC = "global_vegtype.igbp.t126.384.190.rg.grb", - FNSOTC = "global_soiltype.statsgo.t126.384.190.rg.grb", - FNSMCC = "global_soilmgldas.t126.384.190.grb", - FNMSKH = "global_slmask.t1534.3072.1536.grb", - FNTSFA = "", - FNACNA = "", - FNSNOA = "", - FNVMNC = "global_shdmin.0.144x0.144.grb", - FNVMXC = "global_shdmax.0.144x0.144.grb", - FNSLPC = "global_slope.1x1.grb", - FNABSC = "global_mxsnoalb.uariz.t126.384.190.rg.grb", - LDEBUG =.false., - FSMCL(2) = 99999 - FSMCL(3) = 99999 - FSMCL(4) = 99999 - FTSFS = 90 - FAISS = 99999 - FSNOL = 99999 - FSICL = 99999 - FTSFL = 99999, - FAISL = 99999, - FVETL = 99999, - FSOTL = 99999, - FvmnL = 99999, - FvmxL = 99999, - FSLPL = 99999, - FABSL = 99999, - FSNOS = 99999, - FSICS = 99999, -/ - - &gfdl_cloud_microphysics_nml - sedi_transport = .false. - do_sedi_heat = .false. - rad_snow = .true. - rad_graupel = .true. - rad_rain = .true. - const_vi = .false. - const_vs = .false. - const_vg = .false. - const_vr = .false. - vi_max = 1. - vs_max = 2. - vg_max = 12. - vr_max = 12. - qi_lim = 1. - prog_ccn = .false. - do_qa = .true. - fast_sat_adj = .true. - tau_l2v = 180. - tau_v2l = 90. - tau_g2v = 900. - rthresh = 10.e-6 ! This is a key parameter for cloud water - dw_land = 0.16 - dw_ocean = 0.10 - ql_gen = 1.0e-3 - ql_mlt = 1.0e-3 - qi0_crt = 8.0E-5 - qs0_crt = 1.0e-3 - tau_i2s = 1000. - c_psaci = 0.05 - c_pgacs = 0.01 - rh_inc = 0.30 - rh_inr = 0.30 - rh_ins = 0.30 - ccn_l = 300. - ccn_o = 100. - c_paut = 0.5 - c_cracw = 0.8 - use_ppm = .false. - use_ccn = .true. - mono_prof = .true. - z_slope_liq = .true. - z_slope_ice = .true. - de_ice = .false. - fix_negative = .true. - icloud_f = 1 - mp_time = 90. -/ - -&nam_stochy -/ - -&nam_sfcperts -/ - -&cires_ugwp_nml - knob_ugwp_solver = 2 - knob_ugwp_source = 1,1,0,0 - knob_ugwp_wvspec = 1,25,25,25 - knob_ugwp_azdir = 2,4,4,4 - knob_ugwp_stoch = 0,0,0,0 - knob_ugwp_effac = 1,1,1,1 - knob_ugwp_doaxyz = 1 - knob_ugwp_doheat = 1 - knob_ugwp_dokdis = 1 - knob_ugwp_ndx4lh = 1 - knob_ugwp_version = 0 - launch_level = 25 -/ diff --git a/tests/parm/regional_rrfs_a.nml.IN b/tests/parm/regional_rrfs_a.nml.IN new file mode 100644 index 0000000000..ddaa2438a7 --- /dev/null +++ b/tests/parm/regional_rrfs_a.nml.IN @@ -0,0 +1,305 @@ +&atmos_model_nml + avg_max_length = 3600.0 + blocksize = 32 + ccpp_suite = '@[CCPP_SUITE]' + chksum_debug = .false. + dycore_only = .false. +/ + +&cires_ugwp_nml + knob_ugwp_azdir = 2, 4, 4, 4 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_effac = 1, 1, 1, 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_solver = 2 + knob_ugwp_source = 1, 1, 0, 0 + knob_ugwp_stoch = 0, 0, 0, 0 + knob_ugwp_version = 0 + knob_ugwp_wvspec = 1, 25, 25, 25 + launch_level = 25 +/ + +&diag_manager_nml + prepend_date = .false. +/ + +&external_ic_nml + checker_tr = .false. + filtered_terrain = .true. + gfs_dwinds = .true. + levp = 66 + nt_checker = 0 +/ + +&fms2_io_nml + netcdf_default_format = 'netcdf4' +/ + +&fms_io_nml + checksum_required = .false. + max_files_r = 100 + max_files_w = 100 +/ + +&fms_nml + clock_grain = 'ROUTINE' + domains_stack_size = 3000000 + print_memory_usage = .false. +/ + +&fv3gfs_io + use_io_netcdf = .true. +/ + +&fv_core_nml + a_imp = 1.0 + adjust_dry_mass = .false. + bc_update_interval = 1 + beta = 0.0 + consv_am = .false. + consv_te = 0.0 + d2_bg = 0.0 + d2_bg_k1 = 0.2 + d2_bg_k2 = 0.04 + d4_bg = 0.12 + d_con = 0.5 + d_ext = 0.0 + dddmp = 0.1 + delt_max = 0.008 + dnats = 0 + do_sat_adj = .false. + do_schmidt = .true. + do_vort_damp = .true. + dwind_2d = .false. + dz_min = 2.0 + external_eta = .true. + external_ic = .false. + fill = .true. + full_zs_filter = .false. + fv_debug = .false. + fv_sg_adj = 300 + gfs_phil = .false. + hord_dp = 6 + hord_mt = 6 + hord_tm = 6 + hord_tr = 10 + hord_vt = 6 + hydrostatic = .false. + io_layout = 1, 1 + k_split = 6 + ke_bg = 0.0 + kord_mt = 9 + kord_tm = -9 + kord_tr = -5 + kord_wz = 9 + layout = @[INPES],@[JNPES] + make_nh = .false. + mountain = .true. + n_split = 3 + n_sponge = 9 + n_zs_filter = 0 + na_init = 0 + ncep_ic = .false. + nggps_ic = .false. + no_dycore = .false. + nord = 3 + nord_tr = 0 + npx = 1821 + npy = 1093 + npz = 65 + nrows_blend = 20 + ntiles = 1 + nudge_qv = .false. + nwat = 6 + p_fac = 0.1 + phys_hydrostatic = .false. + print_freq = 6 + psm_bc = 1 + range_warn = .false. + read_increment = .false. + regional = .true. + regional_bcs_from_gsi = .false. + res_latlon_dynamics = 'fv3_increment.nc' + reset_eta = .false. + rf_cutoff = 2000.0 + sg_cutoff = 10000.0 + stretch_fac = 0.999 + target_lat = 38.5 + target_lon = -97.5 + tau = 5.0 + use_hydro_pressure = .false. + vtdm4 = 0.02 + warm_start = .true. + write_restart_with_bcs = .false. + z_tracer = .true. +/ + +&fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + +&gfs_physics_nml + bl_mynn_edmf = 1 + bl_mynn_edmf_mom = 1 + bl_mynn_tkeadvect = .true. + cal_pre = .false. + cdmbgwd = 3.5, 1.0 + cnvcld = .false. + cnvgwd = .false. + cplflx = .false. + debug = .false. + do_deep = .false. + do_gsl_drag_ls_bl = .true. + do_gsl_drag_ss = .true. + do_gsl_drag_tofd = .true. + do_mynnedmf = .true. + do_mynnsfclay = .true. + do_shum = .false. + do_skeb = .false. + do_spp = .false. + do_sppt = .false. + do_tofd = .false. + do_ugwp = .false. + do_ugwp_v0 = .false. + do_ugwp_v0_nst_only = .false. + do_ugwp_v0_orog_only = .false. + dspheat = .true. + dt_inner = 20 + effr_in = .true. + fhcyc = 0 + fhlwr = 900.0 + fhswr = 900.0 + fhzero = 1.0 + gwd_opt = 3 + h2o_phys = .true. + hybedmf = .false. + iaer = 1011 + ialb = 2 + iau_delthrs = 6 + iau_inc_files = '' + iaufhrs = 30 + iccn = 2 + icliq_sw = 2 + icloud_bl = 1 + ico2 = 2 + iems = 2 + imfdeepcnv = -1 + imfshalcnv = -1 + imp_physics = 8 + iopt_alb = 2 + iopt_btr = 1 + iopt_crs = 1 + iopt_dveg = 2 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_snf = 4 + iopt_stc = 1 + iopt_tbot = 2 + iovr = 3 + isol = 2 + isot = 1 + isubc_lw = 2 + isubc_sw = 2 + ivegsrc = 1 + kice = 9 + ldiag3d = .false. + ldiag_ugwp = .false. + lgfdlmprad = .false. + lheatstrg = .false. + lndp_type = 0 + lradar = .true. + lrefres = .true. + lsm = 3 + lsoil = 9 + lsoil_lsm = 9 + ltaerosol = .true. + lwhtr = .true. + n_var_lndp = 0 + n_var_spp = 0 + nsfullradar_diag = 3600 + oz_phys = .false. + oz_phys_2015 = .true. + pdfcld = .false. + pre_rad = .false. + print_diff_pgr = .true. + prslrd0 = 0.0 + random_clds = .false. + redrag = .true. + satmedmf = .false. + sfclay_compute_flux = .true. + shal_cnv = .false. + swhtr = .true. + thsfc_loc = .false. + trans_trac = .true. + ttendlim = -999 + use_ufo = .true. +/ + +&interpolator_nml + interp_method = 'conserve_great_circle' +/ + +&nam_sfcperts +/ + +&nam_sppperts +/ + +&nam_stochy +/ + +&namsfc + fabsl = 99999 + faisl = 99999 + faiss = 99999 + fnabsc = 'C3359.maximum_snow_albedo.tileX.nc' + fnacna = '' + fnaisc = 'CFSR.SEAICE.1982.2012.monthly.clim.grb' + fnalbc = 'C3359.snowfree_albedo.tileX.nc' + fnalbc2 = 'C3359.facsf.tileX.nc' + fnglac = 'global_glacier.2x2.grb' + fnmskh = 'seaice_newland.grb' + fnmxic = 'global_maxice.2x2.grb' + fnslpc = 'C3359.slope_type.tileX.nc' + fnsmcc = 'global_soilmgldas.t126.384.190.grb' + fnsnoa = '' + fnsnoc = 'global_snoclim.1.875.grb' + fnsotc = 'C3359.soil_type.tileX.nc' + fntg3c = 'C3359.substrate_temperature.tileX.nc' + fntsfa = '' + fntsfc = 'RTGSST.1982.2012.monthly.clim.grb' + fnvegc = 'C3359.vegetation_greenness.tileX.nc' + fnvetc = 'C3359.vegetation_type.tileX.nc' + fnvmnc = 'C3359.vegetation_greenness.tileX.nc' + fnvmxc = 'C3359.vegetation_greenness.tileX.nc' + fnzorc = 'igbp' + fsicl = 99999 + fsics = 99999 + fslpl = 99999 + fsmcl = 99999, 99999, 99999 + fsnol = 99999 + fsnos = 99999 + fsotl = 99999 + ftsfl = 99999 + ftsfs = 90 + fvetl = 99999 + fvmnl = 99999 + fvmxl = 99999 + ldebug = .true. +/ + +&surf_map_nml + cd2 = -1 + cd4 = 0.12 + max_slope = 0.4 + n_del2_strong = 0 + n_del2_weak = 2 + n_del4 = 1 + peak_fac = 1.0 + zero_ocean = .false. +/ diff --git a/tests/parm/regional_stoch.nml.IN b/tests/parm/regional_stoch.nml.IN index 8368c6acf3..61fa6806af 100644 --- a/tests/parm/regional_stoch.nml.IN +++ b/tests/parm/regional_stoch.nml.IN @@ -214,7 +214,7 @@ lwhtr = .true. n_var_lndp = 0 n_var_spp = @[N_VAR_SPP] - nsradar_reset = 3600 + nsfullradar_diag = 3600 nst_anl = .true. nstf_name = 2, 1, 0, 0, 0 oz_phys = @[OZ_PHYS_OLD] diff --git a/tests/parm/regional_3km.nml.IN b/tests/parm/regional_wofs.nml.IN similarity index 85% rename from tests/parm/regional_3km.nml.IN rename to tests/parm/regional_wofs.nml.IN index d857c21490..b7d0b30653 100644 --- a/tests/parm/regional_3km.nml.IN +++ b/tests/parm/regional_wofs.nml.IN @@ -48,7 +48,6 @@ &fv_core_nml a_imp = 1.0 adjust_dry_mass = .false. - agrid_vel_rst = .true. bc_update_interval = 3 beta = 0.0 consv_am = .false. @@ -56,13 +55,13 @@ d2_bg = 0.0 d2_bg_k1 = 0.2 d2_bg_k2 = 0.04 - d4_bg = 0.15 + d4_bg = 0.12 d_con = 1.0 d_ext = 0.0 dddmp = 0.1 delt_max = 0.008 - dnats = 0 - do_sat_adj = .false. + dnats = @[DNATS] + do_sat_adj = @[DO_SAT_ADJ] do_schmidt = .true. do_vort_damp = .true. dwind_2d = .false. @@ -70,6 +69,7 @@ external_eta = .true. external_ic = .true. fill = .true. + full_zs_filter = .false. fv_debug = .false. fv_sg_adj = 300 gfs_phil = .false. @@ -96,7 +96,7 @@ ncep_ic = .false. nggps_ic = .true. no_dycore = .false. - nord = 2 + nord = 3 npx = 321 npy = 193 npz = 64 @@ -104,7 +104,7 @@ nrows_blend = 10 ntiles = 1 nudge_qv = .false. - nwat = 6 + nwat = @[NWAT] p_fac = 0.1 phys_hydrostatic = .false. print_freq = 6 @@ -116,8 +116,6 @@ res_latlon_dynamics = 'fv3_increment.nc' reset_eta = .false. rf_cutoff = 2000.0 - rf_fast = .false. - sg_cutoff = 10000.0 stretch_fac = 0.999 target_lat = 38.0 target_lon = -120.0 @@ -134,47 +132,41 @@ / &gfs_physics_nml - avg_max_length = 3600.0 bl_mynn_edmf = 1 bl_mynn_edmf_mom = 1 bl_mynn_tkeadvect = .true. cal_pre = .false. - cdmbgwd = 0.88, 0.04 + cdmbgwd = 3.5, 0.25 cnvcld = .false. cnvgwd = .false. cplflx = .false. debug = .false. - do_deep = .false. - do_mynnedmf = .true. - do_mynnsfclay = .true. + do_deep = @[DO_DEEP] + do_mynnedmf = @[DO_MYNNEDMF] + do_mynnsfclay = @[DO_MYNNSFCLAY] do_shum = .false. do_skeb = .false. + do_spp = .false. do_sppt = .false. - do_ugwp = .false. - do_tofd = .false. dspheat = .true. effr_in = .true. fhcyc = 0.0 - fhlwr = 900.0 - fhswr = 900.0 + fhlwr = 1200.0 + fhswr = 1200.0 fhzero = 1.0 - h2o_phys = .true. - hybedmf = .false. - iaer = 1011 - ialb = 1 + h2o_phys = @[H2O_PHYS] + hybedmf = @[HYBEDMF] + iaer = 111 + ialb = @[IALB] iau_delthrs = 6 iau_inc_files = '' iaufhrs = 30 - iccn = 2 - icliq_sw = 2 icloud_bl = 1 ico2 = 2 - iems = 1 - imfdeepcnv = 2 - imfshalcnv = 2 - imp_physics = 8 - sedi_semi = @[SEDI_SEMI] - decfl = @[DECFL] + iems = @[IEMS] + imfdeepcnv = @[IMFDEEPCNV] + imfshalcnv = @[IMFSHALCNV] + imp_physics = @[IMP_PHYSICS] iopt_alb = 2 iopt_btr = 1 iopt_crs = 1 @@ -186,27 +178,29 @@ iopt_sfc = 1 iopt_snf = 4 iopt_stc = 1 - iopt_trs = 2 iopt_tbot = 2 - iovr = 3 isol = 2 isot = 1 isubc_lw = 2 isubc_sw = 2 ivegsrc = 1 ldiag3d = .false. - ldiag_ugwp = .false. - lgfdlmprad = .false. lheatstrg = .false. lndp_type = 0 lradar = .true. - lsm = 1 - ltaerosol = .false. + lsm = @[LSM] + lsoil = 4 + lsoil_lsm = @[LSOIL_LSM] + ltaerosol = @[LTAEROSOL] lwhtr = .true. n_var_lndp = 0 - nsradar_reset = 3600 + n_var_spp = 0 + nsfullradar_diag = 3600 + nssl_cccn = @[NSSL_CCCN] + nssl_ccn_on = @[NSSL_CCN_ON] + nssl_hail_on = @[NSSL_HAIL_ON] nst_anl = .true. - nstf_name = 2, 0, 0, 0, 0 + nstf_name = @[NSTF_NAME] oz_phys = .false. oz_phys_2015 = .true. pdfcld = .false. @@ -216,14 +210,11 @@ random_clds = .false. redrag = .true. satmedmf = .false. - shal_cnv = .false. + shal_cnv = @[SHAL_CNV] swhtr = .true. trans_trac = .true. ttendlim = -999 use_ufo = .true. - xkzm_h = 1.0 - xkzm_m = 1.0 - xkzminv = 0.3 / &interpolator_nml diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index 91d89c0a28..d8f951573c 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -234,7 +234,7 @@ ! lfnc_k = @[LFNC_K] ! lfnc_p0 = @[LFNC_P0] lheatstrg = @[LHEATSTRG] -! lkm = @[LKM] + lkm = @[LKM] lndp_type = @[LNDP_TYPE] lradar = @[LRADAR] lrefres = .true. @@ -245,7 +245,7 @@ ltaerosol = @[LTAEROSOL] lwhtr = .true. n_var_lndp = @[N_VAR_LNDP] - nsradar_reset = 3600 + nsfullradar_diag = 3600 nst_anl = .false. nstf_name = 2, 0, 0, 0, 0 oz_phys = .false. diff --git a/tests/parm/stretched-nest-quilt-model_configure.IN b/tests/parm/stretched-nest-quilt-model_configure.IN index fb32a88c06..9f1262c4e1 100644 --- a/tests/parm/stretched-nest-quilt-model_configure.IN +++ b/tests/parm/stretched-nest-quilt-model_configure.IN @@ -7,7 +7,6 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: 450 -calendar: 'julian' restart_interval: 0 output_1st_tstep_rst: .false. diff --git a/tests/parm/wam.nml.IN b/tests/parm/wam.nml.IN index bffc64b175..6233176409 100644 --- a/tests/parm/wam.nml.IN +++ b/tests/parm/wam.nml.IN @@ -96,20 +96,6 @@ res_latlon_dynamics = "fv3_increment.nc" / -#&coupler_nml -# months = 0 -# days = 1 -# hours = 0 -# dt_atmos = 225 -# dt_ocean = 225 -# current_date = 2016,10,03,00,0,0 -# calendar = 'julian' -# memuse_verbose = .false. -# atmos_nthreads = 1 -# use_hyper_thread = .false. -# ncores_per_node = 24 -#/ - &external_ic_nml filtered_terrain = .true. levp = @[NPZP] diff --git a/tests/parm/ww3_shel.inp.IN b/tests/parm/ww3_shel.inp.IN new file mode 100644 index 0000000000..cb2cafd0fc --- /dev/null +++ b/tests/parm/ww3_shel.inp.IN @@ -0,0 +1,357 @@ +$ -------------------------------------------------------------------- $ +$ WAVEWATCH III shel input file $ +$ -------------------------------------------------------------------- $ +$ Define input to be used with F/T/C flag for use or nor or coupling and +$ T/F flag for definition as a homogeneous field. +$ +$ Include ice and mud parameters only if IC1/2/3/4 used : + F F Water levels + @[INPUT_CURFLD] + C F Winds + @[INPUT_ICEFLD] + F F Atmospheric momentum + F F Air density + F Assimilation data : Mean parameters + F Assimilation data : 1-D spectra + F Assimilation data : 2-D spectra +$ +$ Time frame of calculations ----------------------------------------- $ +$ - Starting time in yyyymmdd hhmmss format. +$ - Ending time in yyyymmdd hhmmss format. +$ + @[RUN_BEG] + @[RUN_END] +$ +$ IOSTYP + 1 +$ + @[RUN_BEG] @[DTFLD] @[RUN_END] @[GOFILETYPE] + N + @[OUTPARS_WAV] +$ + @[RUN_BEG] @[DTPNT] @[RUN_END] @[POFILETYPE] +$ +$ Global output point data file for global wave ensembles +$ +$ Retained only deep water buoys or so from general buoy file +$ taken from multi_1/2 +$ +$ Key to data in file: +$ +$ LON Longitude, east positive +$ LAT Latitude +$ NAME Output point name C*10, no blanks in name allowed +$ AH Anemometer height, dummy value for none-data points +$ TYPE Buoy type indicator, used for plotting and postprocessing +$ DAT Data point +$ XDT Former data point +$ BPT Boundary data for external models. +$ VBY 'Virtual buoy' +$ SOURCE Source of data point +$ ENCAN Environment Canada +$ GOMOOS Gulf of Maine OOS +$ IDT Irish Department of Transportation +$ METFR Meteo France +$ NCEP Boundary and other data points +$ NDBC National Data Buoy Center +$ PRIV Private and incidental data sources +$ SCRIPPS Scripps +$ UKMO UK Met Office +$ PDES Puertos del Estados +$ SHOM Service Hydrographique et Oceanographique de la Marine +$ OCNOR Fugro Oceanor +$ WHOI Woods Hole Oceanographic Institute +$ SKOREA South Korea +$ MVEW Ministerie van Verkeer en Waterstaat +$ CORMP Coastal Ocean Research and Monitoring Program +$ DIMAR Direccion General Maritima (Columbia) +$ BP British Petroleum +$ SCALE Scale indicator for plotting of locations on map +$ Point will only be plotted if SCALE =< DX in our +$ GrADS scripts, DX is width of plot in logitude +$ +$ DEptH Depth in meters +$ +$ Notes: +$ +$ - The '$' at the first position identifies comments for WAVEWATCH III +$ input. +$ - The first three data columns are used by the forecats code, the other +$ are used by postprocessing scripts. +$ +$ LON LAT NAME AH TYPE SOURCE SCALE DEPTH +$ --------------------------------------------------------------- + -85.078 -19.425 '32012 ' -1 DAT WHOI 360 4534 + -90.000 -55.000 '34002 ' 6.2 DAT OCOBSI 360 4800 + -72.522 34.502 '41001 ' 4 DAT NDBC 360 4556 + -74.930 31.892 '41002 ' 4 DAT NDBC 360 3920 + -79.099 32.501 '41004 ' 4 DAT NDBC 360 39 + -80.868 31.400 '41008 ' 5 DAT NDBC 360 14.9 + -80.185 28.508 '41009 ' 4 DAT NDBC 360 42 + -78.485 28.878 '41010 ' 4 DAT NDBC 360 890 + -77.743 33.436 '41013 ' 4 DAT NDBC 360 23.5 + -78.477 33.837 '41024 ' 2.95 DAT CORMP 360 10 + -75.363 35.025 '41025 ' 4 DAT NDBC 360 59.4 + -79.624 32.803 '41029 ' 2.95 DAT CORMP 360 10 + -80.406 32.279 '41033 ' 2.95 DAT CORMP 360 10 + -77.362 33.988 '41037 ' 2.95 DAT CORMP 360 30 + -77.715 34.141 '41038 ' 2.95 DAT CORMP 360 18 + -53.045 14.554 '41040 ' 4 DAT NDBC 360 5112 + -46.093 14.311 '41041 ' 4 DAT NDBC 360 3595 + -64.830 21.124 '41043 ' 4 DAT NDBC 360 5271 + -58.630 21.582 '41044 ' 4 DAT NDBC 360 5419 + -68.384 23.822 '41046 ' 4 DAT NDBC 360 5549 + -71.494 27.514 '41047 ' 4 DAT NDBC 360 5321 + -69.585 31.838 '41048 ' 4 DAT NDBC 360 5340 + -62.938 27.490 '41049 ' 4 DAT NDBC 360 5459 + -65.004 18.257 '41051 ' 4 DAT CARICOOS 360 32 + -64.763 18.249 '41052 ' 4 DAT CARICOOS 360 44 + -65.464 18.261 '41056 ' 4 DAT CARICOOS 360 30 + -65.157 18.476 '41058 ' 4 DAT CARICOOS 360 40 + -51.017 14.824 '41060 ' -1 DAT WHOI 360 5021 + -75.095 35.778 '41062 ' 3.5 DAT UNC 360 36 + -75.941 34.782 '41063 ' 3.5 DAT UNC 360 30 + -76.949 34.207 '41064 ' 2.95 DAT CORMP 360 30 + -78.015 33.721 '41108 ' -1 DAT SIO 360 12.8 + -77.717 34.141 '41110 ' -1 DAT CORMP 360 17 + -81.292 30.709 '41112 ' -1 DAT SIO 360 15.54 + -80.534 28.400 '41113 ' -1 DAT SIO 360 9.8 + -80.188 28.523 '41116 ' -1 DAT SIO 360 41 + -81.080 30.000 '41117 ' -1 DAT USACE 360 24.4 + -80.590 28.609 '41118 ' -1 DAT SIO 360 7.3 + -78.483 33.842 '41119 ' -1 DAT CORMP 360 13 + -76.946 34.213 '41159 ' -1 DAT CORMP 360 30.5 + -89.650 25.961 '42001 ' 3.6 DAT NDBC 360 3334 + -93.758 26.091 '42002 ' 5 DAT NDBC 360 3125.1 + -85.615 25.925 '42003 ' 4 DAT NDBC 360 3265 + -87.551 30.064 '42012 ' 4 DAT NDBC 360 25.9 + -95.350 27.906 '42019 ' 5 DAT NDBC 360 82.2 + -96.693 26.968 '42020 ' 4 DAT NDBC 360 84.1 + -83.741 27.505 '42022 ' 3.1 DAT COMPS 360 50 + -83.086 26.010 '42023 ' 3.1 DAT COMPS 360 50 + -83.475 25.171 '42026 ' 3.2 DAT COMPS 360 70 + -94.413 29.232 '42035 ' 4 DAT NDBC 360 16.2 + -84.516 28.501 '42036 ' 4 DAT NDBC 360 49.7 + -86.008 28.788 '42039 ' 4 DAT NDBC 360 270 + -88.226 29.208 '42040 ' 4 DAT NDBC 360 183 + -94.899 28.982 '42043 ' 4 DAT TAMUNI 360 19 + -96.500 26.217 '42045 ' 4 DAT TAMUNI 360 62 + -94.037 27.890 '42046 ' 4 DAT TAMUNI 360 105 + -93.597 27.897 '42047 ' 4 DAT TAMUNI 360 89 + -93.941 22.124 '42055 ' 4 DAT NDBC 360 3624 + -84.946 19.812 '42056 ' 4 DAT NDBC 360 4565 + -81.422 16.908 '42057 ' 4 DAT NDBC 360 377 + -74.560 14.775 '42058 ' 4 DAT NDBC 360 4150 + -67.483 15.252 '42059 ' 4 DAT NDBC 360 4784 + -63.354 16.413 '42060 ' 4 DAT NDBC 360 1507 + -81.251 24.500 '42078 ' -1 DAT CDIP 360 170 + -81.242 24.535 '42079 ' -1 DAT CDIP 360 99 + -66.532 17.869 '42085 ' 4 DAT CARICOOS 360 18.9 + -60.848 11.185 '42087 ' 3.35 DAT ICON 360 1266 + -60.521 11.301 '42088 ' 3.35 DAT ICON 360 1266 + -80.061 19.699 '42089 ' 3.35 DAT ICON 360 5726 + -69.580 18.432 '42090 ' 3.35 DAT ICON 360 1188 + -81.967 24.407 '42095 ' -1 DAT USACE 360 100 + -83.650 25.700 '42097 ' -1 DAT USACE 360 81 + -84.275 27.345 '42099 ' -1 DAT SIO 360 93.9 + -90.459 26.689 '42360 ' 3 DAT MURPHY 360 2539.9 + -92.490 27.550 '42361 ' 122 DAT SHELL 360 871.7 + -90.648 27.795 '42362 ' 122 DAT ENVEN 360 910 + -89.220 28.160 '42363 ' 122 DAT SHELL 360 894 + -88.090 29.060 '42364 ' 122 DAT SHELL 360 980.2 + -90.283 27.207 '42369 ' 60.4 DAT BP 360 1371.9 + -88.289 28.521 '42375 ' 61 DAT BP 360 1920.2 + -94.898 26.129 '42390 ' -1 DAT SHELL 360 2382.6 + -90.027 27.196 '42392 ' -1 DAT BP 360 2156.16 + -89.240 28.157 '42394 ' 100 DAT SHELL 360 923.5 + -90.792 26.404 '42395 ' 3 DAT SHELL 360 2941.9 + -125.032 10.051 '43010 ' -1 DAT WHOI 360 4769 + -69.128 43.201 '44005 ' 5 DAT NDBC 360 180.7 + -70.141 43.525 '44007 ' 5 DAT NDBC 360 26.5 + -69.248 40.504 '44008 ' 4 DAT NDBC 360 74.7 + -74.702 38.457 '44009 ' 5 DAT NDBC 360 30 + -66.588 41.070 '44011 ' 4 DAT NDBC 360 88.4 + -70.651 42.346 '44013 ' 5 DAT NDBC 360 64 + -74.840 36.606 '44014 ' 5 DAT NDBC 360 47 + -72.049 40.693 '44017 ' 5 DAT NDBC 360 48 + -70.143 42.206 '44018 ' 5 DAT NDBC 360 41.5 + -70.279 41.493 '44020 ' 4 DAT NDBC 360 14.3 + -73.728 40.883 '44022 ' 3.5 DAT UCT 360 22.5 + -65.912 42.327 '44024 ' 4 DAT NRCOOS 360 225 + -73.164 40.251 '44025 ' 5 DAT NDBC 360 36.3 + -67.300 44.283 '44027 ' 5 DAT NDBC 360 185.3 + -70.566 42.523 '44029 ' 4 DAT NRCOOS 360 65 + -70.426 43.179 '44030 ' 4 DAT NRCOOS 360 62 + -69.355 43.715 '44032 ' 4 DAT NRCOOS 360 100 + -68.996 44.055 '44033 ' 4 DAT NRCOOS 360 110 + -68.112 44.103 '44034 ' 4 DAT NRCOOS 360 100 + -67.876 43.497 '44037 ' 4 DAT NRCOOS 360 285 + -73.580 40.956 '44040 ' 3.5 DAT UCT 360 18.3 + -75.715 36.199 '44056 ' -1 DAT USACE 360 17.4 + -73.703 40.369 '44065 ' 4 DAT NDBC 360 25 + -72.644 39.618 '44066 ' 4 DAT NDBC 360 78 + -73.087 40.699 '44069 ' 3 DAT SBROOKU 360 46 + -70.540 43.020 '44073 ' 2.6 DAT UNH 360 131 + -75.421 36.001 '44086 ' -1 DAT SIO 360 21 + -74.838 36.612 '44088 ' -1 DAT SIO 360 47 + -75.334 37.757 '44089 ' -1 DAT USACE 360 16.9 + -70.329 41.840 '44090 ' -1 DAT USGS 360 26 + -73.769 39.778 '44091 ' -1 DAT USACE 360 25.6 + -75.492 36.872 '44093 ' -1 DAT SIO 360 26.82 + -75.330 35.750 '44095 ' -1 DAT SIO 360 18.3 + -75.809 37.023 '44096 ' -1 DAT SIO 360 11.9 + -71.127 40.969 '44097 ' -1 DAT SIO 360 48.16 + -70.168 42.798 '44098 ' -1 DAT SIO 360 76.5 + -75.720 36.914 '44099 ' -1 DAT SIO 360 18.3 + -75.594 36.260 '44100 ' -1 DAT SIO 360 25.9 + -62.000 42.260 '44137 ' 5 DAT ENCAN 360 4000 + -57.100 44.240 '44139 ' 5 DAT ENCAN 360 1500 + -64.020 42.500 '44150 ' 5 DAT ENCAN 360 1300 + -63.400 44.500 '44258 ' 5 DAT ENCAN 360 58 + -147.949 56.232 '46001 ' 5 DAT NDBC 360 4054 + -130.537 42.612 '46002 ' 4 DAT NDBC 360 3413 + -136.100 50.930 '46004 ' 5 DAT ENCAN 360 3600 + -131.079 46.134 '46005 ' 4 DAT NDBC 360 2852 + -137.397 40.782 '46006 ' 4 DAT NDBC 360 4378 + -121.019 34.956 '46011 ' 5 DAT NDBC 360 464.8 + -160.000 57.700 '46021 ' -1 DAT NDBC 360 59 + -120.967 34.714 '46023 ' 10 DAT NDBC 360 384.1 + -119.200 33.000 '46024 ' -1 DAT NDBC 360 1213 + -119.053 33.763 '46025 ' 4 DAT NDBC 360 888 + -121.857 35.703 '46028 ' 5 DAT NDBC 360 1048 + -177.708 57.018 '46035 ' 5 DAT NDBC 360 3687 + -122.398 36.785 '46042 ' 5 DAT NDBC 360 1645.9 + -119.506 32.404 '46047 ' 4 DAT NDBC 360 1394 + -120.477 34.265 '46054 ' 4 DAT NDBC 360 469.4 + -129.951 38.094 '46059 ' 4 DAT NDBC 360 4628 + -146.805 60.584 '46060 ' 5 DAT NDBC 360 445 + -154.987 52.765 '46066 ' 5 DAT NDBC 360 4460 + -120.213 33.677 '46069 ' 4 DAT NDBC 360 977.8 + 175.153 55.082 '46070 ' 5 DAT NDBC 360 3835 + 179.012 51.125 '46071 ' 5 DAT NDBC 360 1681 + -172.088 51.672 '46072 ' 5 DAT NDBC 360 3572 + -172.001 55.031 '46073 ' 5 DAT NDBC 360 3051.5 + -160.817 53.983 '46075 ' 5 DAT NDBC 360 2392.7 + -147.990 59.502 '46076 ' 5 DAT NDBC 360 195.1 + -152.582 55.556 '46078 ' 5 DAT NDBC 360 5380 + -150.042 57.947 '46080 ' 5 DAT NDBC 360 254.5 + -143.372 59.681 '46082 ' 5 DAT NDBC 360 300 + -137.997 58.300 '46083 ' 5 DAT NDBC 360 136 + -136.102 56.622 '46084 ' 5 DAT NDBC 360 1158 + -142.882 55.883 '46085 ' 4 DAT NDBC 360 3721 + -118.052 32.499 '46086 ' 4 DAT NDBC 360 1844.7 + -125.771 45.925 '46089 ' 5 DAT NDBC 360 2293.3 + -122.029 36.751 '46092 ' 4 DAT MBARI 360 1000 + -122.351 36.723 '46114 ' -1 DAT SIO 360 1463 + -131.220 51.830 '46147 ' 5 DAT ENCAN 360 2000 + -131.100 53.620 '46183 ' 5 DAT ENCAN 360 65 + -138.850 53.910 '46184 ' 5 DAT ENCAN 360 3200 + -129.790 52.420 '46185 ' 5 DAT ENCAN 360 230 + -128.770 51.380 '46204 ' -1 DAT ENCAN 360 222 + -134.320 54.190 '46205 ' 5 DAT ENCAN 360 2675 + -126.000 48.840 '46206 ' 5 DAT ENCAN 360 72 + -129.920 50.870 '46207 ' 5 DAT ENCAN 360 2125 + -132.690 52.520 '46208 ' 5 DAT ENCAN 360 2950 + -123.472 37.950 '46214 ' -1 DAT SIO 360 550 + -120.783 34.454 '46218 ' -1 DAT SIO 360 548.6 + -119.882 33.225 '46219 ' -1 DAT SIO 360 274.3 + -118.634 33.855 '46221 ' -1 DAT SIO 360 370 + -118.317 33.618 '46222 ' -1 DAT SIO 360 457 + -117.391 32.933 '46225 ' -1 DAT SIO 360 549 + -117.370 32.747 '46231 ' -1 DAT SIO 360 201.17 + -117.421 32.530 '46232 ' -1 DAT SIO 360 1143 + -117.169 32.570 '46235 ' -1 DAT SIO 360 21 + -122.096 36.343 '46239 ' -1 DAT SIO 360 369 + -145.200 50.033 '46246 ' -1 DAT SIO 360 4252 + -119.559 33.761 '46251 ' -1 DAT SIO 360 1920 + -118.181 33.576 '46253 ' -1 DAT SIO 360 66 + -117.267 32.868 '46254 ' -1 DAT SIO 360 38.71 + -119.651 33.400 '46255 ' -1 DAT SIO 360 105 + -118.201 33.700 '46256 ' -1 DAT SIO 360 23.25 + -120.766 34.439 '46257 ' -1 DAT SIO 360 576.07 + -117.501 32.752 '46258 ' -1 DAT SIO 360 588.6 + -121.497 34.767 '46259 ' -1 DAT USACE 360 646.8 + -119.004 33.704 '46262 ' -1 DAT SIO 360 905 + -151.695 57.479 '46264 ' -1 DAT SIO 360 86 + -165.475 64.473 '46265 ' -1 DAT SIO 360 18.2 + -153.781 23.535 '51000 ' 5 DAT NDBC 360 4811 + -162.000 24.453 '51001 ' 4 DAT NDBC 360 4895 + -157.742 17.043 '51002 ' 4 DAT NDBC 360 4948 + -160.662 19.172 '51003 ' 4 DAT NDBC 360 4943.3 + -152.364 17.604 '51004 ' 4 DAT NDBC 360 4998 + -162.075 24.361 '51101 ' 4 DAT NDBC 360 4849 + -158.117 21.671 '51201 ' -1 DAT SIO 360 200 + -157.678 21.415 '51202 ' -1 DAT SIO 360 89 + -157.010 20.788 '51203 ' -1 DAT SIO 360 201 + -158.124 21.281 '51204 ' -1 DAT SIO 360 300 + -156.425 21.018 '51205 ' -1 DAT SIO 360 200 + -154.970 19.780 '51206 ' -1 DAT SIO 360 345 + -157.752 21.477 '51207 ' -1 DAT SIO 360 81 + -159.574 22.285 '51208 ' -1 DAT SIO 360 200 + -170.493 -14.264 '51209 ' -1 DAT SIO 360 82 + -157.756 21.477 '51210 ' -1 DAT SIO 360 80 + -157.959 21.297 '51211 ' -1 DAT SIO 360 35 + -158.149 21.323 '51212 ' -1 DAT SIO 360 280 + -157.003 20.750 '51213 ' -1 DAT SIO 360 235 + 144.788 13.354 '52200 ' -1 DAT SIO 360 200 + 171.392 7.083 '52201 ' -1 DAT SIO 360 540 + 144.812 13.684 '52202 ' -1 DAT SIO 360 510 + 145.662 15.268 '52211 ' -1 DAT SIO 360 487.68 + 134.667 7.630 '52212 ' -1 DAT SIO 360 97 + -5.000 45.230 '62001 ' 3 DAT UKMO 360 4556 + -12.430 48.720 '62029 ' 3 DAT UKMO 360 3575 + -4.400 50.000 '62050 ' -1 DAT UKMO 360 53 + -2.900 49.900 '62103 ' 14 DAT UKMO 360 18 + -12.570 55.420 '62105 ' 3 DAT UKMO 360 2899 + -6.100 50.102 '62107 ' 14 DAT UKMO 360 61 + 0.000 58.300 '62114 ' -1 DAT PRIVATE 360 142 + 0.700 54.000 '62127 ' -1 DAT PRIVATE 360 39 + 1.700 53.400 '62144 ' -1 DAT PRIVATE 360 16 + 2.800 53.102 '62145 ' -1 DAT PRIVATE 360 26 + 2.100 57.200 '62146 ' -1 DAT PRIVATE 360 98 + 1.500 53.600 '62148 ' -1 DAT PRIVATE 360 16 + 1.100 53.700 '62149 ' -1 DAT PRIVATE 360 16 + -8.470 47.550 '62163 ' 3 DAT UKMO 360 4000 + 1.100 54.000 '62165 ' -1 DAT PRIVATE 360 41 + 0.000 50.400 '62305 ' 14 DAT UKMO 360 39 + 1.500 59.500 '63110 ' -1 DAT PRIVATE 360 117 + 1.000 61.100 '63112 ' -1 DAT PRIVATE 360 156 + 1.708 61.000 '63113 ' -1 DAT PRIVATE 360 156 + 1.300 61.600 '63115 ' -1 DAT PRIVATE 360 156 + 1.100 61.400 '63117 ' -1 DAT PRIVATE 360 156 + -11.420 59.070 '64045 ' 3 DAT UKMO 360 1935 + -4.167 60.483 '64046 ' 3 DAT UKMO 360 230 +$ +$ --------------------------------------------------------------- +$ End of list +$ +$ --------------------------------------------------------------- +$ + 0.00 0.00 'STOPSTRING' 999. XXX NCEP 0 +$ +$ Type 3 : Output along track. +$ Flag for formatted input file. +$ The data files are track_i.ww3 and +$ track_o.ww3, see w3iotr.ftn for ad. doc. +$ + @[RUN_BEG] 0 @[RUN_END] +$ +$ Type 4 : Restart files (no additional data required). +$ The data file is restartN.ww3, see +$ w3iors.ftn for additional doc. +$ Flag for second restart (data server mode) +$ Flag for extra fields in the restart file (coupling restart) +$ +$ Keep next two lines formatting as is to allow proper parsing + @[RUN_BEG] @[DTRST] @[RUN_END] T +@[RUN_BEG] @[DT_2_RST] @[RUN_END] +$ + @[RUN_BEG] 0 @[RUN_END] +$ + @[RUN_BEG] 0 @[RUN_END] +$ + 'the_end' 0 +$ + 'STP' +$ +$ End of input file diff --git a/tests/rt.conf b/tests/rt.conf index 09e2288acf..8bbdb4fa70 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -1,48 +1,57 @@ ################################################################################################################################################################################### -# S2S tests # +# S2S tests # ################################################################################################################################################################################### -COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | -RUN | cpld_control_p8 | - wcoss_cray | fv3 | -RUN | cpld_2threads_p8 | - wcoss_cray | | -RUN | cpld_decomp_p8 | - wcoss_cray jet.intel | | -RUN | cpld_mpi_p8 | - wcoss_cray | | +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 | +RUN | cpld_control_p8 | | fv3 | +RUN | cpld_restart_p8 | | | cpld_control_p8 +RUN | cpld_2threads_p8 | | | +RUN | cpld_decomp_p8 | | | +RUN | cpld_mpi_p8 | | | +#RUN | cpld_multigrid_p8 | | | +RUN | cpld_control_ciceC_p8 | | fv3 | -RUN | cpld_bmark_p8 | - wcoss_cray jet.intel | fv3 | +RUN | cpld_control_c192_p8 | - wcoss2.intel jet.intel acorn.intel | fv3 | +RUN | cpld_restart_c192_p8 | - wcoss2.intel jet.intel acorn.intel | | cpld_control_c192_p8 -# Waves off for restart and debug tests -RUN | cpld_control_c96_p8 | - wcoss_cray | fv3 | -RUN | cpld_restart_c96_p8 | - wcoss_cray | | cpld_control_c96_p8 +RUN | cpld_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | fv3 | +RUN | cpld_restart_bmark_p8 | - jet.intel cheyenne.intel acorn.intel | | cpld_bmark_p8 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_noaero_p8 | | fv3 | +RUN | cpld_control_nowave_noaero_p8 | | fv3 | -RUN | cpld_control_c192_p8 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c192_p8 | - wcoss_cray jet.intel | | cpld_control_c192_p8 +COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | - wcoss2.intel acorn.intel | fv3 | +RUN | cpld_debug_p8 | - wcoss2.intel acorn.intel | fv3 | -RUN | cpld_control_c384_p8 | - wcoss_cray jet.intel | fv3 | -RUN | cpld_restart_c384_p8 | - wcoss_cray jet.intel | | cpld_control_c384_p8 +COMPILE | -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss2.intel acorn.intel | fv3 | +RUN | cpld_debug_noaero_p8 | - wcoss2.intel acorn.intel | fv3 | -COMPILE | -DAPP=S2SA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss_cray | fv3 | -RUN | cpld_debug_p8 | - wcoss_cray | fv3 | +# Waves and aerosol off for computing fluxes in mediator +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | | fv3 | +RUN | cpld_control_noaero_p8_agrid | | fv3 | + +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | +RUN | cpld_control_c48 | | fv3 | +RUN | cpld_warmstart_c48 | | fv3 | +RUN | cpld_restart_c48 | | | cpld_warmstart_c48 ################################################################################################################################################################################### -# PROD tests # +# ATM tests # ################################################################################################################################################################################### -COMPILE | -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 -D32BIT=ON | | fv3 | -RUN | control | | fv3 | -RUN | control_decomp | | | -RUN | control_2dwrtdecomp | | | -RUN | control_2threads | - wcoss_cray | | -RUN | control_restart | | | control -RUN | control_fhzero | - wcoss2 | | +COMPILE | -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 | | fv3 | RUN | control_CubedSphereGrid | | fv3 | +RUN | control_CubedSphereGrid_parallel | - wcoss2.intel acorn.intel | fv3 | RUN | control_latlon | | fv3 | -RUN | control_wrtGauss_netcdf_parallel | - wcoss2 | fv3 | +RUN | control_wrtGauss_netcdf_parallel | | fv3 | RUN | control_c48 | | fv3 | RUN | control_c192 | | fv3 | -RUN | control_c384 | - wcoss_cray | fv3 | -#RUN | control_c768 | - wcoss_cray | fv3 | -RUN | control_c384gdas | - wcoss_cray | fv3 | +RUN | control_c384 | | fv3 | +RUN | control_c384gdas | | fv3 | RUN | control_stochy | | fv3 | RUN | control_stochy_restart | | | control_stochy RUN | control_lndp | | fv3 | @@ -50,64 +59,75 @@ RUN | control_iovr4 RUN | control_iovr5 | | fv3 | RUN | control_p8 | | fv3 | -RUN | control_p8_lndp | | fv3 | +RUN | control_p8_lndp | | fv3 | RUN | control_restart_p8 | | | control_p8 RUN | control_decomp_p8 | | | -RUN | control_2threads_p8 | - wcoss_cray | | +RUN | control_2threads_p8 | | | RUN | control_p8_rrtmgp | | fv3 | +RUN | merra2_thompson | | fv3 | + RUN | regional_control | | fv3 | RUN | regional_restart | | | regional_control -RUN | regional_control_2dwrtdecomp | | | +RUN | regional_decomp | | | +RUN | regional_2threads | | | RUN | regional_noquilt | | fv3 | -RUN | regional_2threads | - wcoss_cray jet.intel | | -RUN | regional_netcdf_parallel | - wcoss2 | fv3 | -RUN | regional_3km | | fv3 | +RUN | regional_netcdf_parallel | - acorn.intel | fv3 | +RUN | regional_2dwrtdecomp | | | +RUN | regional_wofs | | fv3 | -COMPILE | -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 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | -RUN | rap_rrtmgp | | fv3 | RUN | regional_spp_sppt_shum_skeb | | fv3 | -# This test is not giving the same results (also not in REPRO mode) - needs to be fixed -#RUN | rap_decomp | | | -RUN | rap_2threads | - wcoss_cray jet.intel | | +RUN | rap_decomp | | | +RUN | rap_2threads | | | RUN | rap_restart | | | rap_control RUN | rap_sfcdiff | | fv3 | -# This test is not giving the same results (also not in REPRO mode) - needs to be fixed -#RUN | rap_sfcdiff_decomp | | | +RUN | rap_sfcdiff_decomp | | | RUN | rap_sfcdiff_restart | | | rap_sfcdiff RUN | hrrr_control | | fv3 | +RUN | hrrr_control_decomp | | | +RUN | hrrr_control_2threads | | | +RUN | hrrr_control_restart | | | hrrr_control RUN | rrfs_v1beta | | fv3 | RUN | rrfs_v1nssl | | fv3 | RUN | rrfs_v1nssl_nohailnoccn | | fv3 | RUN | rrfs_conus13km_hrrr_warm | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_conus13km_radar_tten_warm | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp | | fv3 | +# These do not match the control yet: +# RUN | rrfs_conus13km_hrrr_warm_decomp | | | +# RUN | rrfs_conus13km_radar_tten_warm_decomp | | | + +RUN | rrfs_conus13km_hrrr_warm_2threads | | | +RUN | rrfs_conus13km_radar_tten_warm_2threads | | | + +# These do not match the control yet: +# RUN | rrfs_conus13km_hrrr_warm_restart | | | rrfs_conus13km_hrrr_warm +# RUN | rrfs_conus13km_radar_tten_warm_restart | | | rrfs_conus13km_radar_tten_warm + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp | | fv3 | RUN | control_csawmg | - gaea.intel | fv3 | RUN | control_csawmgt | | fv3 | -RUN | control_flake | | fv3 | RUN | control_ras | | fv3 | -# post results do not reproduce on cray -RUN | control_thompson | - wcoss_cray | fv3 | -RUN | control_thompson_no_aero | - wcoss_cray | fv3 | # Run WAM test in REPRO mode to avoid numerical instability in the deep atmosphere COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | RUN | control_wam | | fv3 | ################################################################################################################################################################################### -# DEBUG tests # +# DEBUG ATM tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta | | fv3 | + +RUN | rrfs_conus13km_hrrr_warm_debug | | fv3 | +RUN | rrfs_conus13km_radar_tten_warm_debug | | fv3 | -RUN | control_debug | | fv3 | -RUN | control_2threads_debug | - wcoss_cray | | RUN | control_CubedSphereGrid_debug | | fv3 | RUN | control_wrtGauss_netcdf_parallel_debug | | fv3 | RUN | control_stochy_debug | | fv3 | @@ -118,16 +138,10 @@ RUN | control_ras_debug RUN | control_diag_debug | | fv3 | RUN | control_debug_p8 | | fv3 | -RUN | control_thompson_debug | | fv3 | -RUN | control_thompson_no_aero_debug | | fv3 | -RUN | control_thompson_extdiag_debug | | fv3 | -RUN | control_thompson_progcld_thompson_debug | | fv3 | - RUN | regional_debug | | fv3 | -COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON | | fv3 | - RUN | rap_control_debug | | fv3 | +RUN | hrrr_control_debug | | fv3 | RUN | rap_unified_drag_suite_debug | | | RUN | rap_diag_debug | | fv3 | RUN | rap_cires_ugwp_debug | | fv3 | @@ -135,10 +149,7 @@ RUN | rap_unified_ugwp_debug RUN | rap_lndp_debug | | fv3 | RUN | rap_flake_debug | | fv3 | RUN | rap_progcld_thompson_debug | | fv3 | - -COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_noah_debug | | fv3 | -RUN | rap_rrtmgp_debug | | fv3 | RUN | rap_sfcdiff_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | @@ -146,66 +157,122 @@ RUN | rrfs_v1beta_debug COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | +################################################################################################################################################################################### +# 32-bit physics tests # +################################################################################################################################################################################### +# + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +RUN | regional_spp_sppt_shum_skeb_dyn32_phy32 | | fv3 | +RUN | rap_control_dyn32_phy32 | | fv3 | +RUN | hrrr_control_dyn32_phy32 | | fv3 | +RUN | rap_2threads_dyn32_phy32 | | | +RUN | hrrr_control_2threads_dyn32_phy32 | | | +RUN | hrrr_control_decomp_dyn32_phy32 | | | +RUN | rap_restart_dyn32_phy32 | | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | | | hrrr_control_dyn32_phy32 + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON | | fv3 | +RUN | rap_control_dyn64_phy32 | | fv3 | + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +RUN | rap_control_debug_dyn32_phy32 | | fv3 | +RUN | hrrr_control_debug_dyn32_phy32 | | fv3 | + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +RUN | rap_control_dyn64_phy32_debug | | fv3 | + ################################################################################################################################################################################### # HAFS tests # ################################################################################################################################################################################### # -COMPILE | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON | - wcoss2 | fv3 | -RUN | hafs_regional_atm | - wcoss2 | fv3 | -RUN | hafs_regional_atm_thompson_gfdlsf | - wcoss2 | fv3 | -RUN | hafs_regional_atm_ocn | - wcoss2 | fv3 | -RUN | hafs_regional_atm_wav | - wcoss2 | fv3 | -RUN | hafs_regional_atm_ocn_wav | - wcoss2 | fv3 | -RUN | hafs_regional_1nest_atm | - jet.intel wcoss2 | fv3 | -RUN | hafs_regional_telescopic_2nests_atm | - jet.intel wcoss2 | fv3 | -RUN | hafs_global_1nest_atm | - jet.intel wcoss2 | fv3 | -RUN | hafs_global_multiple_4nests_atm | - jet.intel wcoss_cray wcoss2 | fv3 | -RUN | hafs_regional_specified_moving_1nest_atm | - jet.intel wcoss2 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm | - jet.intel wcoss2 hera.intel | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet.intel wcoss2 | fv3 | -RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet.intel wcoss2 | fv3 | -RUN | hafs_global_storm_following_1nest_atm | - jet.intel wcoss2 | fv3 | - -COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss_cray wcoss2 | fv3 | -RUN | hafs_regional_docn | - wcoss_cray wcoss2 | fv3 | -RUN | hafs_regional_docn_oisst | - wcoss_cray wcoss2 | fv3 | -RUN | hafs_regional_datm_cdeps | - wcoss_cray wcoss2 | fv3 | +COMPILE | -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 | | fv3 | +RUN | hafs_regional_atm | | fv3 | +RUN | hafs_regional_atm_thompson_gfdlsf | | fv3 | +RUN | hafs_regional_atm_ocn | | fv3 | +RUN | hafs_regional_atm_wav | | fv3 | +RUN | hafs_regional_atm_ocn_wav | | fv3 | +RUN | hafs_regional_1nest_atm | - jet.intel | fv3 | +RUN | hafs_regional_telescopic_2nests_atm | - jet.intel | fv3 | +RUN | hafs_global_1nest_atm | - jet.intel | fv3 | +RUN | hafs_global_multiple_4nests_atm | - jet.intel | fv3 | +RUN | hafs_regional_specified_moving_1nest_atm | - jet.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm | - jet.intel | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn | - jet.intel | fv3 | +RUN | hafs_global_storm_following_1nest_atm | - jet.intel | fv3 | + +COMPILE | -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 -DDEBUG=ON | | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_debug | - jet.intel | fv3 | + +COMPILE | -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON | | fv3 | +RUN | hafs_regional_storm_following_1nest_atm_ocn_wav | - jet.intel | fv3 | + +COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss2.intel | fv3 | +RUN | hafs_regional_docn | - wcoss2.intel | fv3 | +RUN | hafs_regional_docn_oisst | - wcoss2.intel | fv3 | +RUN | hafs_regional_datm_cdeps | - wcoss2.intel | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | -DAPP=NG-GODAS | - wcoss_cray | fv3 | -RUN | datm_cdeps_control_cfsr | - wcoss_cray | fv3 | -RUN | datm_cdeps_restart_cfsr | - wcoss_cray | | datm_cdeps_control_cfsr -RUN | datm_cdeps_control_gefs | - wcoss_cray | fv3 | -RUN | datm_cdeps_iau_gefs | - wcoss_cray | fv3 | -RUN | datm_cdeps_stochy_gefs | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS | - wcoss2.intel | fv3 | +RUN | datm_cdeps_control_cfsr | - wcoss2.intel | fv3 | +RUN | datm_cdeps_restart_cfsr | - wcoss2.intel | | datm_cdeps_control_cfsr +RUN | datm_cdeps_control_gefs | - wcoss2.intel | fv3 | +RUN | datm_cdeps_iau_gefs | - wcoss2.intel | fv3 | +RUN | datm_cdeps_stochy_gefs | - wcoss2.intel | fv3 | +RUN | datm_cdeps_ciceC_cfsr | - wcoss2.intel | fv3 | -RUN | datm_cdeps_bulk_cfsr | - wcoss_cray | fv3 | -RUN | datm_cdeps_bulk_gefs | - wcoss_cray | fv3 | +RUN | datm_cdeps_bulk_cfsr | - wcoss2.intel | fv3 | +RUN | datm_cdeps_bulk_gefs | - wcoss2.intel | fv3 | -RUN | datm_cdeps_mx025_cfsr | - wcoss_cray | fv3 | -RUN | datm_cdeps_mx025_gefs | - wcoss_cray | fv3 | +RUN | datm_cdeps_mx025_cfsr | - wcoss2.intel | fv3 | +RUN | datm_cdeps_mx025_gefs | - wcoss2.intel | fv3 | -RUN | datm_cdeps_multiple_files_cfsr | - wcoss_cray | | -RUN | datm_cdeps_3072x1536_cfsr | - wcoss_cray | fv3 | -RUN | datm_cdeps_gfs | - wcoss_cray | fv3 | +RUN | datm_cdeps_multiple_files_cfsr | - wcoss2.intel | | +RUN | datm_cdeps_3072x1536_cfsr | - wcoss2.intel | fv3 | +RUN | datm_cdeps_gfs | - wcoss2.intel | fv3 | + +COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss2.intel acorn.intel | fv3 | +RUN | datm_cdeps_debug_cfsr | - wcoss2.intel acorn.intel | fv3 | + +################################################################################################################################################################################### +# CDEPS Data Atmosphere tests with LND # +################################################################################################################################################################################### -COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss_cray | fv3 | -RUN | datm_cdeps_debug_cfsr | - wcoss_cray | fv3 | +COMPILE | -DAPP=LND | - wcoss2.intel | fv3 | +RUN | datm_cdeps_lnd_gswp3 | - wcoss2.intel | fv3 | +RUN | datm_cdeps_lnd_gswp3_rst | - wcoss2.intel | | datm_cdeps_lnd_gswp3 + +################################################################################################################################################################################### +# ATM-LND tests, -D32BIT=ON has issue and NoahMP reuires r8 libraries # +################################################################################################################################################################################### + +COMPILE | -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km | | fv3 | +RUN | control_p8_atmlnd_sbs | | fv3 | ################################################################################################################################################################################### # ATM-WAV tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss_cray wcoss2 | fv3 | -RUN | control_atmwav | - wcoss_cray wcoss2 | fv3 | -RUN | control_c384gdas_wav | - wcoss_cray jet.intel cheyenne.intel wcoss2 | fv3 | +COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | - wcoss2.intel | fv3 | +RUN | control_atmwav | - wcoss2.intel | fv3 | +#RUN | control_c384gdas_wav | - jet.intel cheyenne.intel wcoss2.intel | fv3 | ################################################################################################################################################################################### # ATM-GOCART tests # ################################################################################################################################################################################### -COMPILE | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 | - wcoss_cray | fv3 | -RUN | control_atm_aerosols | - wcoss_cray | fv3 | +COMPILE | -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON | | fv3 | +RUN | atmaero_control_p8 | | fv3 | +RUN | atmaero_control_p8_rad | | fv3 | +RUN | atmaero_control_p8_rad_micro | | fv3 | +################################################################################################################################################################################### +# ATM-CMAQ tests +################################################################################################################################################################################### + +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 | | fv3 | +RUN | regional_atmaq | | fv3 | +COMPILE | -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON | | fv3 | +RUN | regional_atmaq_debug | - jet.intel gaea.intel cheyenne.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 04e960f96f..aa9b00df49 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -29,6 +29,7 @@ usage() { [[ $# -eq 0 ]] && usage rt_single() { + rm -f $RT_SINGLE_CONF local compile_line='' local run_line='' while read -r line || [ "$line" ]; do @@ -50,20 +51,20 @@ rt_single() { if [[ $line =~ RUN ]]; then tmp_test=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') if [[ $SINGLE_NAME == $tmp_test && $compile_line != '' ]]; then - echo $compile_line >$TESTS_FILE + echo $compile_line > $RT_SINGLE_CONF dep_test=$(echo $line | grep -w $tmp_test | cut -d'|' -f5 | sed -e 's/^ *//' -e 's/ *$//') if [[ $dep_test != '' ]]; then dep_line=$(cat rt.conf | grep -w "$dep_test" | grep -v "$tmp_test") dep_line="${dep_line#"${dep_line%%[![:space:]]*}"}" - echo $dep_line >>$TESTS_FILE + echo $dep_line >> $RT_SINGLE_CONF fi - echo $line >>$TESTS_FILE + echo $line >> $RT_SINGLE_CONF break fi fi - done <'rt.conf' + done < $TESTS_FILE - if [[ ! -f $TESTS_FILE ]]; then + if [[ ! -f $RT_SINGLE_CONF ]]; then echo "$SINGLE_NAME does not exist or cannot be run on $MACHINE_ID" exit 1 fi @@ -119,6 +120,8 @@ else exit 1 fi +readonly RT_SINGLE_CONF='rt_single.conf' + # Default compiler "intel" export RT_COMPILER=${RT_COMPILER:-intel} @@ -127,68 +130,7 @@ source rt_utils.sh source module-setup.sh -if [[ $MACHINE_ID = wcoss_cray ]]; then - - module load xt-lsfhpc - - module use /usrx/local/emc_rocoto/modulefiles - module load rocoto/1.3.0rc2 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=lsfcray - - module use /gpfs/hps/nco/ops/nwtest/modulefiles - module load ecflow/intel/4.17.0.1 - ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh - ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') - module load python/3.6.3 - - DISKNM=/gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT - QUEUE=debug - COMPILE_QUEUE=dev - PARTITION= - ACCNR="${ACCNR:-GFS-DEV}" - if [[ -d /gpfs/hps3/ptmp ]] ; then - STMP=/gpfs/hps3/stmp - PTMP=/gpfs/hps3/stmp - else - STMP=/gpfs/hps3/stmp - PTMP=/gpfs/hps3/ptmp - fi - SCHEDULER=lsf - cp fv3_conf/fv3_bsub.IN_wcoss_cray fv3_conf/fv3_bsub.IN - cp fv3_conf/compile_bsub.IN_wcoss_cray fv3_conf/compile_bsub.IN - -elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - - module load lsf/10.1 - module load python/3.6.3 - - module use /usrx/local/dev/emc_rocoto/modulefiles - module load ruby/2.5.1 rocoto/1.3.0rc2 - ROCOTORUN=$(which rocotorun) - ROCOTOSTAT=$(which rocotostat) - ROCOTOCOMPLETE=$(which rocotocomplete) - ROCOTO_SCHEDULER=lsf - - module load ips/18.0.1.163 - module load ecflow/4.17.0 - ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh - ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') - - DISKNM=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT - QUEUE=debug - COMPILE_QUEUE=dev_transfer - PARTITION= - ACCNR="${ACCNR:-GFS-DEV}" - STMP=/gpfs/dell2/stmp - PTMP=/gpfs/dell2/ptmp - SCHEDULER=lsf - cp fv3_conf/fv3_bsub.IN_wcoss_dell_p3 fv3_conf/fv3_bsub.IN - cp fv3_conf/compile_bsub.IN_wcoss_dell_p3 fv3_conf/compile_bsub.IN - -elif [[ $MACHINE_ID = wcoss2 ]]; then +if [[ $MACHINE_ID = wcoss2.* ]]; then #module use /usrx/local/dev/emc_rocoto/modulefiles #module load ruby/2.5.1 rocoto/1.3.0rc2 @@ -197,7 +139,7 @@ elif [[ $MACHINE_ID = wcoss2 ]]; then #ROCOTOCOMPLETE=$(which rocotocomplete) #ROCOTO_SCHEDULER=lsf - module load ecflow/5.6.0.6 + module load ecflow/5.6.0.13 module load gcc/10.3.0 python/3.8.6 ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir @@ -207,13 +149,36 @@ elif [[ $MACHINE_ID = wcoss2 ]]; then mkdir -p ${ECF_COMDIR} export colonifnco=":output" # hack - DISKNM=/lfs/h1/emc/eib/noscrub/Dusan.Jovic + DISKNM=/lfs/h2/emc/nems/noscrub/emc.nems/RT QUEUE=dev COMPILE_QUEUE=dev PARTITION= ACCNR="${ACCNR:-GFS-DEV}" - STMP=/lfs/h1/emc/ptmp - PTMP=/lfs/h1/emc/ptmp + STMP=/lfs/h2/emc/ptmp + PTMP=/lfs/h2/emc/ptmp + SCHEDULER=pbs + cp fv3_conf/fv3_qsub.IN_wcoss2 fv3_conf/fv3_qsub.IN + cp fv3_conf/compile_qsub.IN_wcoss2 fv3_conf/compile_qsub.IN + +elif [[ $MACHINE_ID = acorn.* ]]; then + + module load ecflow/5.6.0.13 + module load gcc/10.3.0 python/3.8.6 + ECFLOW_START=${ECF_ROOT}/scripts/server_check.sh + export ECF_OUTPUTDIR=${PATHRT}/ecf_outputdir + export ECF_COMDIR=${PATHRT}/ecf_comdir + rm -rf ${ECF_OUTPUTDIR} ${ECF_COMDIR} + mkdir -p ${ECF_OUTPUTDIR} + mkdir -p ${ECF_COMDIR} + export colonifnco=":output" # hack + + DISKNM=/lfs/h1/emc/nems/noscrub/emc.nems/RT + QUEUE=dev + COMPILE_QUEUE=dev + PARTITION= + ACCNR="${ACCNR:-GFS-DEV}" + STMP=/lfs/h2/emc/ptmp + PTMP=/lfs/h2/emc/ptmp SCHEDULER=pbs cp fv3_conf/fv3_qsub.IN_wcoss2 fv3_conf/fv3_qsub.IN cp fv3_conf/compile_qsub.IN_wcoss2 fv3_conf/compile_qsub.IN @@ -308,7 +273,7 @@ elif [[ $MACHINE_ID = jet.* ]]; then COMPILE_QUEUE=batch ACCNR="${ACCNR:-h-nems}" PARTITION=xjet - DISKNM=/lfs4/HFIP/h-nems/emc.nemspara/RT + DISKNM=/mnt/lfs4/HFIP/hfv3gfs/role.epic/RT dprefix=${dprefix:-/lfs4/HFIP/$ACCNR/$USER} STMP=${STMP:-$dprefix/RT_BASELINE} PTMP=${PTMP:-$dprefix/RT_RUNDIRS} @@ -335,8 +300,8 @@ elif [[ $MACHINE_ID = s4.* ]]; then ACCNR="${ACCNR:-star}" PARTITION=s4 - dprefix=/data/users/dhuber/save - DISKNM=$dprefix/nems/emc.nemspara/RT + dprefix=/data/prod + DISKNM=$dprefix/emc.nemspara/RT STMP=/scratch/short/users PTMP=/scratch/users @@ -407,11 +372,7 @@ echo "Machine: " $MACHINE_ID " Account: " $ACCNR mkdir -p ${STMP}/${USER} -# Different own baseline directories for different compilers on Theia/Cheyenne -NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]] ; then - NEW_BASELINE=${NEW_BASELINE}_${RT_COMPILER^^} -fi +NEW_BASELINE=${STMP}/${USER}/FV3_RT/REGRESSION_TEST_${RT_COMPILER^^} # Overwrite default RUNDIR_ROOT if environment variable RUNDIR_ROOT is set RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}/FV3_RT}/rt_$$ @@ -442,8 +403,6 @@ while getopts ":cl:mn:dwkreh" opt; do ;; n) SINGLE_NAME=$OPTARG - TESTS_FILE='rt.conf.single' - rm -f $TESTS_FILE ;; d) export delete_rundir=true @@ -479,21 +438,20 @@ done if [[ $SINGLE_NAME != '' ]]; then rt_single + TESTS_FILE=$RT_SINGLE_CONF fi if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20220516 -if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} -else - RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}} -fi -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20220414} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20211113 +BL_DATE=20230227 + +RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} + +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20221101} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20220624 INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20220207} shift $((OPTIND-1)) @@ -536,19 +494,7 @@ if [[ $ROCOTO == true ]]; then rm -f $ROCOTO_XML $ROCOTO_DB $ROCOTO_STATE *_lock.db - if [[ $MACHINE_ID = wcoss ]]; then - QUEUE=dev - COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=lsf - elif [[ $MACHINE_ID = wcoss_cray ]]; then - QUEUE=dev - COMPILE_QUEUE=dev - ROCOTO_SCHEDULER=lsfcray - elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - QUEUE=dev - COMPILE_QUEUE=dev_transfer - ROCOTO_SCHEDULER=lsf - elif [[ $MACHINE_ID = wcoss2 ]]; then + if [[ $MACHINE_ID = wcoss2.* || $MACHINE_ID = acorn.* ]]; then QUEUE=dev COMPILE_QUEUE=dev ROCOTO_SCHEDULER=pbs @@ -634,13 +580,7 @@ suite ${ECFLOW_SUITE} limit max_jobs ${MAX_JOBS} EOF - if [[ $MACHINE_ID = wcoss ]]; then - QUEUE=dev - elif [[ $MACHINE_ID = wcoss_cray ]]; then - QUEUE=dev - elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - QUEUE=dev - elif [[ $MACHINE_ID = wcoss2 ]]; then + if [[ $MACHINE_ID = wcoss2.* || $MACHINE_ID = acorn.* ]]; then QUEUE=dev elif [[ $MACHINE_ID = hera.* ]]; then QUEUE=batch @@ -778,6 +718,8 @@ EOF ( source ${PATHRT}/tests/$TEST_NAME + compute_petbounds_and_tasks + TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then @@ -883,7 +825,7 @@ else [[ ${KEEP_RUNDIR} == false ]] && rm -rf ${RUNDIR_ROOT} [[ ${ROCOTO} == true ]] && rm -f ${ROCOTO_XML} ${ROCOTO_DB} ${ROCOTO_STATE} *_lock.db [[ ${TEST_35D} == true ]] && rm -f tests/cpld_bmark*_20* - [[ ${SINGLE_NAME} != '' ]] && rm -f rt.conf.single + [[ ${SINGLE_NAME} != '' ]] && rm -f $RT_SINGLE_CONF fi date >> ${REGRESSIONTEST_LOG} diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index e98cb9cddf..081f88dcca 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,70 +2,98 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 | | fv3 | -RUN | control | | fv3 | -RUN | control_restart | | | control RUN | control_c48 | | fv3 | RUN | control_stochy | | fv3 | -RUN | control_flake | | fv3 | -RUN | control_thompson | | fv3 | -RUN | control_thompson_no_aero | | fv3 | RUN | control_ras | | fv3 | RUN | control_p8 | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | -# This test is not giving the same results (also not in REPRO mode) - needs to be fixed -#RUN | rap_decomp | | | +RUN | rap_decomp | | | RUN | rap_2threads | | | RUN | rap_restart | | | rap_control RUN | rap_sfcdiff | | fv3 | -# This test is not giving the same results (also not in REPRO mode) - needs to be fixed -#RUN | rap_sfcdiff_decomp | | | +RUN | rap_sfcdiff_decomp | | | RUN | rap_sfcdiff_restart | | | rap_sfcdiff RUN | hrrr_control | | fv3 | +RUN | hrrr_control_2threads | | | +RUN | hrrr_control_decomp | | | +RUN | hrrr_control_restart | | | hrrr_control RUN | rrfs_v1beta | | fv3 | + RUN | rrfs_conus13km_hrrr_warm | | fv3 | -RUN | rrfs_conus13km_radar_tten_warm | | fv3 | RUN | rrfs_smoke_conus13km_hrrr_warm | | fv3 | +RUN | rrfs_conus13km_radar_tten_warm | | fv3 | +RUN | rrfs_conus13km_radar_tten_warm_2threads | | | + +# These two are known to not match the control: +#RUN | rrfs_conus13km_radar_tten_warm_decomp | | | +#RUN | rrfs_conus13km_radar_tten_warm_restart | | | rrfs_conus13km_radar_tten_warm + ################################################################################################################################################################## # CCPP DEBUG tests # ################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) COMPILE | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | | fv3 | -RUN | control_debug | | fv3 | RUN | control_diag_debug | | fv3 | RUN | regional_debug | | fv3 | RUN | rap_control_debug | | fv3 | +RUN | hrrr_control_debug | | fv3 | RUN | rap_diag_debug | | fv3 | RUN | rap_noah_sfcdiff_cires_ugwp_debug | | fv3 | RUN | rap_progcld_thompson_debug | | fv3 | RUN | rrfs_v1beta_debug | | fv3 | -RUN | control_thompson_debug | | fv3 | -RUN | control_thompson_no_aero_debug | | fv3 | -RUN | control_thompson_extdiag_debug | | fv3 | -RUN | control_thompson_progcld_thompson_debug | | fv3 | RUN | control_ras_debug | | fv3 | RUN | control_stochy_debug | | fv3 | RUN | control_debug_p8 | | fv3 | +RUN | rrfs_conus13km_hrrr_warm_debug | | fv3 | +RUN | rrfs_conus13km_radar_tten_warm_debug | | fv3 | + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | control_wam_debug | | fv3 | + +################################################################################################################################################################## +# 32-bit physics tests # +################################################################################################################################################################## + +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON | | fv3 | +RUN | rap_control_dyn32_phy32 | | fv3 | +RUN | hrrr_control_dyn32_phy32 | | fv3 | +RUN | rap_2threads_dyn32_phy32 | | | +RUN | hrrr_control_2threads_dyn32_phy32 | | | +RUN | hrrr_control_decomp_dyn32_phy32 | | | +RUN | rap_restart_dyn32_phy32 | | | rap_control_dyn32_phy32 +RUN | hrrr_control_restart_dyn32_phy32 | | | hrrr_control_dyn32_phy32 + +COMPILE | -DAPP=ATM -DCCPP_32BIT=ON | | fv3 | +RUN | rap_control_dyn64_phy32 | | fv3 | + +COMPILE | -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +RUN | rap_control_debug_dyn32_phy32 | | fv3 | +RUN | hrrr_control_debug_dyn32_phy32 | | fv3 | + +COMPILE | -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON | | fv3 | +RUN | rap_control_dyn64_phy32_debug | | fv3 | + ################################################################################################################################################################## # S2S tests # ################################################################################################################################################################## -# Waves off -COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_control_c96_noaero_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_p8 | | fv3 | + +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_control_nowave_noaero_p8 | | fv3 | -COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | -RUN | cpld_debug_noaero_p8 | | fv3 | +COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp | | fv3 | +RUN | cpld_debug_p8 | | fv3 | ################################################################################################################################################################## # CDEPS Data Atmosphere test # diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index b65e222a32..80bce61cab 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -15,6 +15,86 @@ qsub_id=0 slurm_id=0 bsub_id=0 +function compute_petbounds_and_tasks() { + + # each test MUST define ${COMPONENT}_tasks variable for all components it is using + # and MUST NOT define those that it's not using or set the value to 0. + + # ATM is a special case since it is running on the sum of compute and io tasks. + # CHM component and mediator are running on ATM compute tasks only. + + if [[ $DATM_CDEPS = 'false' ]]; then + if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then + ATM_compute_tasks=$((INPES * JNPES * NTILES)) + fi + if [[ $QUILTING = '.true.' ]]; then + ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) + fi + fi + + local n=0 + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds + + # 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_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 * atm_omp_num_threads - 1))" + + # MED + med_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" + + # AQM + aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" + + # 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 + + UFS_tasks=${n} + + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + + # TASKS is now set to UFS_TASKS + export TASKS=$UFS_tasks +} + interrupt_job() { set -x if [[ $SCHEDULER = 'pbs' ]]; then @@ -283,7 +363,7 @@ check_results() { fi if [[ $d -eq 1 && ${i##*.} == 'nc' ]] ; then - if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss_dell_p3 || ${MACHINE_ID} =~ wcoss_cray || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then + if [[ ${MACHINE_ID} =~ orion || ${MACHINE_ID} =~ hera || ${MACHINE_ID} =~ wcoss2 || ${MACHINE_ID} =~ acorn || ${MACHINE_ID} =~ cheyenne || ${MACHINE_ID} =~ gaea || ${MACHINE_ID} =~ jet || ${MACHINE_ID} =~ s4 ]] ; then printf ".......ALT CHECK.." >> ${REGRESSIONTEST_LOG} printf ".......ALT CHECK.." ${PATHRT}/compare_ncfile.py ${RTPWD}/${CNTL_DIR}/$i ${RUNDIR}/$i > compare_ncfile.log 2>&1 && d=$? || d=$? @@ -390,15 +470,6 @@ rocoto_create_compile_task() { NATIVE="" BUILD_CORES=8 BUILD_WALLTIME="00:30:00" - if [[ ${MACHINE_ID} == wcoss_dell_p3 ]]; then - BUILD_CORES=1 - NATIVE="8G -R 'affinity[core(1)]'" - BUILD_WALLTIME="01:00:00" - fi - if [[ ${MACHINE_ID} == wcoss_cray ]]; then - BUILD_CORES=24 - NATIVE=" PATHTR&PATHTR;" - fi if [[ ${MACHINE_ID} == jet.* ]]; then BUILD_WALLTIME="01:00:00" fi @@ -441,12 +512,6 @@ rocoto_create_run_task() { fi NATIVE="" - if [[ ${MACHINE_ID} == wcoss_dell_p3 ]]; then - NATIVE="28-R 'affinity[core(${THRD})]'" - fi - if [[ ${MACHINE_ID} == wcoss_cray ]]; then - NATIVE="" - fi cat << EOF >> $ROCOTO_XML @@ -481,11 +546,6 @@ rocoto_step() { # Is it done? state=$($ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB -s | grep 197001010000 | awk -F" " '{print $2}') echo "$state" > $ROCOTO_STATE - dead_compile=$($ROCOTOSTAT -w $ROCOTO_XML -d $ROCOTO_DB | grep compile_ | grep DEAD | head -1 | awk -F" " '{print $2}') - if [[ ! -z ${dead_compile} ]]; then - echo "y" | ${ROCOTOCOMPLETE} -w $ROCOTO_XML -d $ROCOTO_DB -m ${dead_compile}_tasks - ${ROCOTOCOMPLETE} -w $ROCOTO_XML -d $ROCOTO_DB -t ${dead_compile} - fi } rocoto_run() { @@ -587,9 +647,16 @@ ecflow_run() { not_running=$? if [[ $not_running -eq 1 ]]; then echo "ecflow_server is NOT running on ${ECF_HOST}:${ECF_PORT}" - if [[ ${MACHINE_ID} == wcoss2 ]]; then - # Annoying "Has NCO assigned port $ECF_PORT for use by this account? (yes/no) ". - echo yes | ${ECFLOW_START} -p ${ECF_PORT} -d ${RUNDIR_ROOT}/ecflow_server + if [[ ${MACHINE_ID} == wcoss2.* || ${MACHINE_ID} == acorn.* ]]; then + if [[ "${HOST::1}" == "a" ]]; then + export ECF_HOST=adecflow01 + elif [[ "${HOST::1}" == "c" ]]; then + export ECF_HOST=cdecflow01 + elif [[ "${HOST::1}" == "d" ]]; then + export ECF_HOST=ddecflow01 + fi + MYCOMM="bash -l -c \"module load ecflow && ecflow_start.sh -p ${ECF_PORT} \"" + ssh $ECF_HOST "${MYCOMM}" elif [[ ${MACHINE_ID} == jet.* ]]; then module load ecflow echo "Using special Jet ECFLOW start procedure" diff --git a/tests/rt_weekly.conf b/tests/rt_weekly.conf index ab847ab7ef..185a60abdf 100644 --- a/tests/rt_weekly.conf +++ b/tests/rt_weekly.conf @@ -1,5 +1,5 @@ ################################################################################################################################################################################### -# Weekly tests # +# Weekly tests # ################################################################################################################################################################################### COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON | + hera.intel | fv3 | @@ -7,7 +7,7 @@ RUN | control_c768 # CPLD Benchmark 35d tests # The length of forecast is 5 days for the weekly tests. -COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera.intel | fv3 | | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + hera.intel | fv3 | | RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012010100 RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012040100 RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2012070100 @@ -17,7 +17,9 @@ RUN | cpld_bmark_p8_35d RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013070100 RUN | cpld_bmark_p8_35d | + hera.intel | fv3 | | 2013100100 # The coupled p8 tests -COMPILE | -DAPP=S2SW -DUFS_GOCART=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + jet.intel | fv3 | +COMPILE | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | + jet.intel | fv3 | RUN | cpld_bmark_p8 | + jet.intel | fv3 | RUN | cpld_control_c192_p8 | + jet.intel | fv3 | -RUN | cpld_control_c384_p8 | + jet.intel | fv3 | +# RRFS North American domain +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_HRRR -D32BIT=ON | + hera.intel | fv3 | +RUN | regional_rrfs_a | + hera.intel | fv3 | diff --git a/tests/run_compile.sh b/tests/run_compile.sh index ed7ae7ce11..4ec17c9edf 100755 --- a/tests/run_compile.sh +++ b/tests/run_compile.sh @@ -23,6 +23,15 @@ write_fail_test() { exit 1 } +remove_fail_test() { + echo "Removing test failure flag file for compile_${COMPILE_NR}" + if [[ ${OPNREQ_TEST} == true ]] ; then + rm -f $PATHRT/fail_opnreq_compile_${COMPILE_NR} + else + rm -f $PATHRT/fail_compile_${COMPILE_NR} + fi +} + if [[ $# != 4 ]]; then echo "Usage: $0 PATHRT RUNDIR_ROOT MAKE_OPT COMPILE_NR" exit 1 @@ -35,11 +44,7 @@ export COMPILE_NR=$4 cd ${PATHRT} OPNREQ_TEST=${OPNREQ_TEST:-false} -if [[ ${OPNREQ_TEST} == true ]]; then - rm -f fail_opnreq_compile_${COMPILE_NR} -else - rm -f fail_compile_${COMPILE_NR} -fi +remove_fail_test [[ -e ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env ]] && source ${RUNDIR_ROOT}/compile_${COMPILE_NR}.env source default_vars.sh @@ -85,6 +90,9 @@ ls -l ${PATHTR}/tests/fv3_${COMPILE_NR}.exe cp ${RUNDIR}/compile_*_time.log ${LOG_DIR} cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt + +remove_fail_test + ################################################################################ # End compile job ################################################################################ diff --git a/tests/run_test.sh b/tests/run_test.sh index 4d3ed3bb8b..5155450d30 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -23,58 +23,13 @@ write_fail_test() { exit 1 } -function compute_petbounds() { - - # each test MUST define ${COMPONENT}_tasks variable for all components it is using - # and MUST NOT define those that it's not using or set the value to 0. - - # ATM is a special case since it is running on the sum of compute and io tasks. - # CHM component and mediator are running on ATM compute tasks only. - - local n=0 - unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds - - # 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)) - fi - - # OCN - if [[ ${OCN_tasks:-0} -gt 0 ]]; then - ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" - n=$((n + OCN_tasks)) - fi - - # ICE - if [[ ${ICE_tasks:-0} -gt 0 ]]; then - ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" - n=$((n + ICE_tasks)) - fi - - # WAV - if [[ ${WAV_tasks:-0} -gt 0 ]]; then - wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" - n=$((n + WAV_tasks)) - fi - - # CHM - chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" - - # MED - med_petlist_bounds="0 $((ATM_compute_tasks - 1))" - - UFS_tasks=${n} - - echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" - echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" - echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" - echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" - echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" - echo "MED_petlist_bounds: ${med_petlist_bounds:-}" - echo "UFS_tasks : ${UFS_tasks:-}" - +remove_fail_test() { + echo "Removing test failure flag file for ${TEST_NAME} ${TEST_NR}" + if [[ ${OPNREQ_TEST} == true ]] ; then + rm -f $PATHRT/fail_opnreq_test_${TEST_NR} + else + rm -f $PATHRT/fail_test_${TEST_NR} + fi } if [[ $# != 5 ]]; then @@ -90,11 +45,7 @@ export COMPILE_NR=$5 cd ${PATHRT} OPNREQ_TEST=${OPNREQ_TEST:-false} -if [[ ${OPNREQ_TEST} == true ]]; then - rm -f fail_opnreq_test_${TEST_NR} -else - rm -f fail_test_${TEST_NR} -fi +remove_fail_test [[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env source default_vars.sh @@ -133,12 +84,16 @@ cd $RUNDIR ############################################################################### # Make configure and run files ############################################################################### - +MACHINE_ID=${MACHINE_ID:-false} # FV3 executable: cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe # modulefile for FV3 prerequisites: -cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 +if [[ $MACHINE_ID == gaea.* ]] || [[ $MACHINE_ID == linux.* ]]; then + cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 +else + cp ${PATHRT}/modules.fv3_${COMPILE_NR}.lua modules.fv3.lua +fi cp ${PATHTR}/modulefiles/ufs_common* . # Get the shell file that loads the "module" command and purges modules: @@ -161,25 +116,10 @@ fi atparse < ${PATHRT}/parm/${MODEL_CONFIGURE:-model_configure.IN} > model_configure -if [[ $DATM_CDEPS = 'false' ]]; then - if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then - ATM_compute_tasks=$((INPES * JNPES * NTILES)) - fi - if [[ $QUILTING = '.true.' ]]; then - ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) - fi -fi - -compute_petbounds +compute_petbounds_and_tasks atparse < ${PATHRT}/parm/${NEMS_CONFIGURE:-nems.configure} > nems.configure -# remove after all tests pass -if [[ $TASKS -ne $UFS_tasks ]]; then - echo "$TASKS -ne $UFS_tasks " - exit 1 -fi - if [[ "Q${INPUT_NEST02_NML:-}" != Q ]] ; then INPES_NEST=$INPES_NEST02; JNPES_NEST=$JNPES_NEST02 NPX_NEST=$NPX_NEST02; NPY_NEST=$NPY_NEST02 @@ -227,7 +167,7 @@ fi # diag table if [[ "Q${DIAG_TABLE:-}" != Q ]] ; then - cp ${PATHRT}/parm/diag_table/${DIAG_TABLE} diag_table + atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE} > diag_table fi # Field table if [[ "Q${FIELD_TABLE:-}" != Q ]] ; then @@ -245,6 +185,11 @@ if [[ $FV3 == true ]]; then fi fi +# AQM +if [[ $AQM == .true. ]]; then + cp ${PATHRT}/parm/aqm/aqm.rc . +fi + # Field Dictionary cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml @@ -252,7 +197,16 @@ cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml source ./fv3_run if [[ $CPLWAV == .true. ]]; then - atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp + if [[ $MULTIGRID = 'true' ]]; then + atparse < ${PATHRT}/parm/ww3_multi.inp.IN > ww3_multi.inp + else + atparse < ${PATHRT}/parm/ww3_shel.inp.IN > ww3_shel.inp + fi +fi + +if [[ $CPLCHM == .true. ]]; then + cp ${PATHRT}/parm/gocart/*.rc . + atparse < ${PATHRT}/parm/gocart/AERO_HISTORY.rc.IN > AERO_HISTORY.rc fi if [[ $DATM_CDEPS = 'true' ]] || [[ $S2S = 'true' ]]; then @@ -274,6 +228,11 @@ if [[ "${DIAG_TABLE_ADDITIONAL:-}Q" != Q ]] ; then atparse < "${PATHRT}/parm/diag_table/${DIAG_TABLE_ADDITIONAL:-}" >> diag_table fi +# ATMAERO +if [[ $CPLCHM == .true. ]] && [[ $S2S = 'false' ]]; then + atparse < ${PATHRT}/parm/diag_table/${DIAG_TABLE:-diag_table_template} > diag_table +fi + if [[ $DATM_CDEPS = 'true' ]]; then atparse < ${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in} > datm_in atparse < ${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN} > datm.streams @@ -292,6 +251,7 @@ NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then NODES=$(( NODES + 1 )) fi +TASKS=$(( NODES * TPN )) if [[ $SCHEDULER = 'pbs' ]]; then atparse < $PATHRT/fv3_conf/fv3_qsub.IN > job_card @@ -309,7 +269,8 @@ if [[ $SCHEDULER = 'none' ]]; then ulimit -s unlimited if [[ $CI_TEST = 'true' ]]; then - eval ${OMP_ENV} mpiexec -n ${TASKS} ${MPI_PROC_BIND} ./fv3.exe >out 2> >(tee err >&3) + + eval ${OMP_ENV} mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) else mpiexec -n ${TASKS} ./fv3.exe >out 2> >(tee err >&3) fi @@ -342,6 +303,11 @@ fi if [[ $SCHEDULER != 'none' ]]; then cat ${RUNDIR}/job_timestamp.txt >> ${LOG_DIR}/job_${JOB_NR}_timestamp.txt fi + +if [[ $ROCOTO = true ]]; then + remove_fail_test +fi + ################################################################################ # End test ################################################################################ diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 new file mode 100644 index 0000000000..7aeadd3a80 --- /dev/null +++ b/tests/tests/atmaero_control_p8 @@ -0,0 +1,185 @@ +############################################################################### +# +# global control test with prognostic aerosols: GFSv17 P8 FV3-GOCART at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" + +export CNTL_DIR=atmaero_control_p8 + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24 \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL='12 -1' +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. + +export CPL=.true. +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.atmaero.IN + +export atm_model='fv3' +export chm_model='gocart' +export coupling_interval_sec=${DT_ATMOS} + +export INPES=${INPES_atmaero} +export JNPES=${JNPES_atmaero} +export WRTTASK_PER_GROUP=${WPG_atmaero} + +# default resources +export DOMAINS_STACK_SIZE=8000000 + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=2 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad new file mode 100644 index 0000000000..25dbab9d51 --- /dev/null +++ b/tests/tests/atmaero_control_p8_rad @@ -0,0 +1,180 @@ +############################################################################### +# +# global control test with prognostic aerosols: GFSv17 P8 FV3-GOCART at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" + +export CNTL_DIR=atmaero_control_p8_rad + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24 \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL='12 -1' +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. + +export CPL=.true. +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.atmaero.IN + +export atm_model='fv3' +export chm_model='gocart' +export coupling_interval_sec=${DT_ATMOS} + +# default resources +export DOMAINS_STACK_SIZE=8000000 + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=2011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.true. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=2 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro new file mode 100644 index 0000000000..62456f46b0 --- /dev/null +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -0,0 +1,182 @@ +############################################################################### +# +# global control test with prognostic aerosols: GFSv17 P8 FV3-GOCART at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" + +export CNTL_DIR=atmaero_control_p8_rad_micro + +export LIST_FILES="sfcf000.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF24 \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL='12 -1' +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. + +export CPL=.true. +export CPLCHM=.true. +export NEMS_CONFIGURE=nems.configure.atmaero.IN + +export atm_model='fv3' +export chm_model='gocart' +export coupling_interval_sec=${DT_ATMOS} + +# default resources +export DOMAINS_STACK_SIZE=8000000 + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.false. +export LTAEROSOL=.false. +export MRAEROSOL=.true. +export IAER=2011 +export NSTF_NAME=2,0,0,0,0 + +export LHEATSTRG=.true. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=4 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_aero_tke_GOCART +export DIAG_TABLE=diag_table_p8_gocart_micro +# use same namelist for standalone,coupled P7 +export INPUT_NML=merra2_thompson.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control b/tests/tests/control deleted file mode 100644 index dd76513284..0000000000 --- a/tests/tests/control +++ /dev/null @@ -1,75 +0,0 @@ -############################################################################### -# -# global control test: GFSv16 atmosphere only at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare global control results with previous trunk version" - -export CNTL_DIR=control - -export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf021.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 -export OUTPUT_FH='0 21 24' - - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_2threads b/tests/tests/control_2threads deleted file mode 100644 index 64269d3dd9..0000000000 --- a/tests/tests/control_2threads +++ /dev/null @@ -1,74 +0,0 @@ -############################################################################### -# -# Global control with 2 threads test -# -############################################################################### - -export TEST_DESCR="Compare global control with 2 threads results with control test" - -export CNTL_DIR=control - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 - -export THRD=2 -export TASKS=$TASKS_thrd -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_2threads_debug b/tests/tests/control_2threads_debug deleted file mode 100644 index 62f8309ab3..0000000000 --- a/tests/tests/control_2threads_debug +++ /dev/null @@ -1,39 +0,0 @@ -############################################################################### -# -# Global control with 2 threads debug test -# -############################################################################### - -export TEST_DESCR="Compare global control with 2 threads debug results with control debug test" - -export CNTL_DIR=control_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 -export IOVR=3 -export FHMAX=01 -export OUTPUT_FH="0 1" - -export THRD=2 -export TASKS=$TASKS_thrd -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index 0df0d55444..a58604d78d 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -16,43 +16,44 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -60,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 @@ -91,7 +91,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -102,7 +102,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -157,7 +157,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN diff --git a/tests/tests/control_2dwrtdecomp b/tests/tests/control_CubedSphereGrid_parallel similarity index 65% rename from tests/tests/control_2dwrtdecomp rename to tests/tests/control_CubedSphereGrid_parallel index 19a368e6b2..f353280a02 100644 --- a/tests/tests/control_2dwrtdecomp +++ b/tests/tests/control_CubedSphereGrid_parallel @@ -1,12 +1,12 @@ ############################################################################### # -# Global 2D write domain decomposition test +# Global control with native grid output test # ############################################################################### -export TEST_DESCR="Compare global 2D write decomp results with control test" +export TEST_DESCR="Compare global control native grid output results with previous trunk version" -export CNTL_DIR=control +export CNTL_DIR=control_CubedSphereGrid_parallel export LIST_FILES="sfcf000.nc \ sfcf024.nc \ @@ -21,14 +21,15 @@ export SMONTH=03 export SDAY=22 export SHOUR=06 export RESTART_INTERVAL=0 -export OUTPUT_GRID='gaussian_grid' +export OUTPUT_GRID='cubed_sphere_grid' +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.false. export IAER=5111 - export IOVR=3 -export ITASKS=2 + +export WRITE_DOPOST=.false. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v16 export INPUT_NML=control.nml.IN +export MODEL_CONFIGURE=model_configure_fhout.IN diff --git a/tests/tests/control_atm_aerosols b/tests/tests/control_atm_aerosols deleted file mode 100644 index 3adbeed54e..0000000000 --- a/tests/tests/control_atm_aerosols +++ /dev/null @@ -1,84 +0,0 @@ -############################################################################### -# -# global control test with prognostic aerosols: GFSv16 FV3-GOCART at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare global results for prognostic aerosols with previous trunk version" - -export CNTL_DIR=control_atm_aerosols - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24 \ - gocart.inst_aod.20210322_0700z.nc4 \ - gocart.inst_aod.20210323_0600z.nc4 \ - gocart.tavg_cmass.20210322_0730z.nc4 \ - gocart.tavg_cmass.20210323_0430z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL='12 -1' -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 -export FSCAV_AERO='"*:0.6", "seas1:1.0", "seas2:1.0", "seas3:1.0", "seas4:1.0", "seas5:1.0"' -export DNATS=3 - -export CPL=.true. -export CPLCHM=.true. -export atm_model='fv3' -export chm_model='gocart' -export coupling_interval_sec=${DT_ATMOS} -export NEMS_CONFIGURE="nems.configure.atm_aerosols.IN" - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN -export DIAG_TABLE=diag_table_GOCART -export FIELD_TABLE=field_table_GOCART diff --git a/tests/tests/control_atmwav b/tests/tests/control_atmwav index 99bb848da8..252402b040 100644 --- a/tests/tests/control_atmwav +++ b/tests/tests/control_atmwav @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ GFSPRS.GrbF12 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc \ 20210322.180000.restart.glo_1deg" export_fv3 @@ -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..82c3fe889e 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.* || $MACHINE_ID = jet.* ]]; then TPN=18 +fi diff --git a/tests/tests/control_c384gdas b/tests/tests/control_c384gdas index b051fb7bf1..4730dfb24e 100644 --- a/tests/tests/control_c384gdas +++ b/tests/tests/control_c384gdas @@ -16,42 +16,41 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF06 \ GFSPRS.GrbF00 \ GFSPRS.GrbF06 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.060000.coupler.res \ + RESTART/20210322.060000.fv_core.res.nc \ + RESTART/20210322.060000.fv_core.res.tile1.nc \ + RESTART/20210322.060000.fv_core.res.tile2.nc \ + RESTART/20210322.060000.fv_core.res.tile3.nc \ + RESTART/20210322.060000.fv_core.res.tile4.nc \ + RESTART/20210322.060000.fv_core.res.tile5.nc \ + RESTART/20210322.060000.fv_core.res.tile6.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.060000.fv_tracer.res.tile1.nc \ + RESTART/20210322.060000.fv_tracer.res.tile2.nc \ + RESTART/20210322.060000.fv_tracer.res.tile3.nc \ + RESTART/20210322.060000.fv_tracer.res.tile4.nc \ + RESTART/20210322.060000.fv_tracer.res.tile5.nc \ + RESTART/20210322.060000.fv_tracer.res.tile6.nc \ + RESTART/20210322.060000.phy_data.tile1.nc \ + RESTART/20210322.060000.phy_data.tile2.nc \ + RESTART/20210322.060000.phy_data.tile3.nc \ + RESTART/20210322.060000.phy_data.tile4.nc \ + RESTART/20210322.060000.phy_data.tile5.nc \ + RESTART/20210322.060000.phy_data.tile6.nc \ + RESTART/20210322.060000.sfc_data.tile1.nc \ + RESTART/20210322.060000.sfc_data.tile2.nc \ + RESTART/20210322.060000.sfc_data.tile3.nc \ + RESTART/20210322.060000.sfc_data.tile4.nc \ + RESTART/20210322.060000.sfc_data.tile5.nc \ + RESTART/20210322.060000.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 diff --git a/tests/tests/control_c384gdas_debug b/tests/tests/control_c384gdas_debug index 3f883ef459..06aae996e4 100644 --- a/tests/tests/control_c384gdas_debug +++ b/tests/tests/control_c384gdas_debug @@ -12,42 +12,42 @@ export LIST_FILES="sfcf000.nc \ sfcf001.nc \ atmf000.nc \ atmf001.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210322.010000.coupler.res \ + RESTART/20210322.010000.fv_core.res.nc \ + RESTART/20210322.010000.fv_core.res.tile1.nc \ + RESTART/20210322.010000.fv_core.res.tile2.nc \ + RESTART/20210322.010000.fv_core.res.tile3.nc \ + RESTART/20210322.010000.fv_core.res.tile4.nc \ + RESTART/20210322.010000.fv_core.res.tile5.nc \ + RESTART/20210322.010000.fv_core.res.tile6.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.010000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.010000.fv_tracer.res.tile1.nc \ + RESTART/20210322.010000.fv_tracer.res.tile2.nc \ + RESTART/20210322.010000.fv_tracer.res.tile3.nc \ + RESTART/20210322.010000.fv_tracer.res.tile4.nc \ + RESTART/20210322.010000.fv_tracer.res.tile5.nc \ + RESTART/20210322.010000.fv_tracer.res.tile6.nc \ + RESTART/20210322.010000.phy_data.tile1.nc \ + RESTART/20210322.010000.phy_data.tile2.nc \ + RESTART/20210322.010000.phy_data.tile3.nc \ + RESTART/20210322.010000.phy_data.tile4.nc \ + RESTART/20210322.010000.phy_data.tile5.nc \ + RESTART/20210322.010000.phy_data.tile6.nc \ + RESTART/20210322.010000.sfc_data.tile1.nc \ + RESTART/20210322.010000.sfc_data.tile2.nc \ + RESTART/20210322.010000.sfc_data.tile3.nc \ + RESTART/20210322.010000.sfc_data.tile4.nc \ + RESTART/20210322.010000.sfc_data.tile5.nc \ + RESTART/20210322.010000.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..08b3165bfd 100644 --- a/tests/tests/control_c384gdas_wav +++ b/tests/tests/control_c384gdas_wav @@ -16,38 +16,38 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF03 \ GFSPRS.GrbF00 \ GFSPRS.GrbF03 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ + RESTART/20210322.030000.coupler.res \ + RESTART/20210322.030000.fv_core.res.nc \ + RESTART/20210322.030000.fv_core.res.tile1.nc \ + RESTART/20210322.030000.fv_core.res.tile2.nc \ + RESTART/20210322.030000.fv_core.res.tile3.nc \ + RESTART/20210322.030000.fv_core.res.tile4.nc \ + RESTART/20210322.030000.fv_core.res.tile5.nc \ + RESTART/20210322.030000.fv_core.res.tile6.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.030000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.030000.fv_tracer.res.tile1.nc \ + RESTART/20210322.030000.fv_tracer.res.tile2.nc \ + RESTART/20210322.030000.fv_tracer.res.tile3.nc \ + RESTART/20210322.030000.fv_tracer.res.tile4.nc \ + RESTART/20210322.030000.fv_tracer.res.tile5.nc \ + RESTART/20210322.030000.fv_tracer.res.tile6.nc \ + RESTART/20210322.030000.phy_data.tile1.nc \ + RESTART/20210322.030000.phy_data.tile2.nc \ + RESTART/20210322.030000.phy_data.tile3.nc \ + RESTART/20210322.030000.phy_data.tile4.nc \ + RESTART/20210322.030000.phy_data.tile5.nc \ + RESTART/20210322.030000.phy_data.tile6.nc \ + RESTART/20210322.030000.sfc_data.tile1.nc \ + RESTART/20210322.030000.sfc_data.tile2.nc \ + RESTART/20210322.030000.sfc_data.tile3.nc \ + RESTART/20210322.030000.sfc_data.tile4.nc \ + RESTART/20210322.030000.sfc_data.tile5.nc \ + RESTART/20210322.030000.sfc_data.tile6.nc \ 20210322.030000.restart.aoc_9km \ 20210322.030000.restart.gnh_10m \ 20210322.030000.restart.gsh_15m" @@ -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..ab76dd503b 100644 --- a/tests/tests/control_c48 +++ b/tests/tests/control_c48 @@ -12,41 +12,41 @@ export LIST_FILES="sfcf000.nc \ sfcf024.nc \ atmf000.nc \ atmf024.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.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_debug b/tests/tests/control_debug deleted file mode 100644 index cc74b1b70b..0000000000 --- a/tests/tests/control_debug +++ /dev/null @@ -1,35 +0,0 @@ -############################################################################### -# -# Global control debug test -# -############################################################################### - -export TEST_DESCR="Compare global control debug results with previous trunk version" - -export CNTL_DIR=control_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 -export IOVR=3 -export FHMAX=1 -export OUTPUT_FH="0 1" -#export WRITE_DOPOST=.true. - - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_debug_p8 b/tests/tests/control_debug_p8 index 3fbd35ad81..7f1086264a 100644 --- a/tests/tests/control_debug_p8 +++ b/tests/tests/control_debug_p8 @@ -17,6 +17,7 @@ export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -51,7 +52,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -62,7 +63,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -117,7 +118,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN @@ -126,3 +127,7 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_decomp b/tests/tests/control_decomp deleted file mode 100644 index c51b203121..0000000000 --- a/tests/tests/control_decomp +++ /dev/null @@ -1,72 +0,0 @@ -############################################################################### -# -# Global domain decomposition test with different PEs -# -############################################################################### - -export TEST_DESCR="Compare global decomp results with control test" - -export CNTL_DIR=control - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL=0 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 - -export INPES=6 -export JNPES=4 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_decomp_p8 b/tests/tests/control_decomp_p8 index 390ee3d5b0..0abd2799a4 100644 --- a/tests/tests/control_decomp_p8 +++ b/tests/tests/control_decomp_p8 @@ -16,43 +16,44 @@ export LIST_FILES="sfcf000.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF00 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -90,7 +91,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -101,7 +102,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -156,7 +157,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN @@ -165,3 +166,7 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_fhzero b/tests/tests/control_fhzero deleted file mode 100644 index 05876d170b..0000000000 --- a/tests/tests/control_fhzero +++ /dev/null @@ -1,71 +0,0 @@ -############################################################################### -# -# global control test: GFSv16 atmosphere only with fhzero change at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare global control with fhzero change results with previous trunk version" - -export CNTL_DIR=control - -export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - atmf000.nc \ - atmf021.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 -export FHZERO=3 -export OUTPUT_FH='0 21' - - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN diff --git a/tests/tests/control_p8 b/tests/tests/control_p8 index 5aa8171bb2..25770313eb 100644 --- a/tests/tests/control_p8 +++ b/tests/tests/control_p8 @@ -20,43 +20,44 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -91,7 +92,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -102,7 +103,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -157,7 +158,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN @@ -166,3 +167,7 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_p8_atmlnd_sbs b/tests/tests/control_p8_atmlnd_sbs new file mode 100644 index 0000000000..aec8541a8c --- /dev/null +++ b/tests/tests/control_p8_atmlnd_sbs @@ -0,0 +1,235 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere-land only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control results with previous trunk version" + +export CNTL_DIR=control_p8_atmlnd_sbs + +export LIST_FILES="sfcf000.tile1.nc \ + sfcf000.tile2.nc + sfcf000.tile3.nc + sfcf000.tile4.nc + sfcf000.tile5.nc + sfcf000.tile6.nc + sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf000.tile1.nc \ + atmf000.tile2.nc \ + atmf000.tile3.nc \ + atmf000.tile4.nc \ + atmf000.tile5.nc \ + atmf000.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + ufs.cpld.cpl.hi.lnd.2021-03-22-43200.nc \ + ufs.cpld.cpl.hi.lnd.2021-03-23-21600.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile1.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile2.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile3.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile4.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile5.nc \ + ufs.cpld.lnd.out.2021-03-22-43200.tile6.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile1.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile2.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile3.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile4.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc \ + ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='cubed_sphere_grid' +export WRITE_DOPOST=.false. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'INPUT/C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'INPUT/C96.facsf.tileX.nc'" +export FNTG3C="'INPUT/C96.substrate_temperature.tileX.nc'" +export FNVEGC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVETC="'INPUT/C96.vegetation_type.tileX.nc'" +export FNSOTC="'INPUT/C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'INPUT/C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'INPUT/C96.slope_type.tileX.nc'" +export FNABSC="'INPUT/C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=0 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_thompson_noaero_tke +export DIAG_TABLE=diag_table_p8_template +# use same namelist for standalone,coupled P7 +export INPUT_NML=cpld_control.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi + +export CPLLND=.true. + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="fv3" +export lnd_model="noahmp" +export CPLMODE="nems_frac" +export RUNTYPE="startup" +export READRESTART=.false. +export ATM_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='sfc' +export CALC_SNET=.false. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/grid_spec.nc" +export coupling_interval_sec=720 +export TOPOEDITS="" +# need for getting some files from coupled RT to fix land-sea mask inconsistency +# can be removed after fixing files for control_p8 +export OCNRES=100 diff --git a/tests/tests/control_p8_lndp b/tests/tests/control_p8_lndp index b97b977ae2..e9f969901a 100644 --- a/tests/tests/control_p8_lndp +++ b/tests/tests/control_p8_lndp @@ -29,6 +29,7 @@ export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -64,7 +65,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -75,7 +76,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -130,7 +131,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN export LNDP_TYPE=2 @@ -144,3 +145,7 @@ export DO_RRTMGP=.false. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_p8_rrtmgp b/tests/tests/control_p8_rrtmgp index 4452e1cdea..a521271369 100644 --- a/tests/tests/control_p8_rrtmgp +++ b/tests/tests/control_p8_rrtmgp @@ -20,43 +20,44 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -91,7 +92,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,1,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -102,7 +103,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -157,7 +158,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8_rrtmgp export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN @@ -166,3 +167,7 @@ export DO_RRTMGP=.true. export DOGP_CLDOPTICS_LUT=.true. export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/control_restart b/tests/tests/control_restart deleted file mode 100644 index 05e3e72aae..0000000000 --- a/tests/tests/control_restart +++ /dev/null @@ -1,73 +0,0 @@ -############################################################################### -# -# Global control restart test -# -############################################################################### - -export TEST_DESCR="Compare global restart results with previous trunk version" - -export CNTL_DIR=control - -export LIST_FILES="sfcf024.nc \ - atmf024.nc \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IOVR=3 -export FHROT=12 - -export WARM_START=.true. -export NGGPS_IC=.false. -export EXTERNAL_IC=.false. -export MAKE_NH=.false. -export MOUNTAIN=.true. -export NA_INIT=0 - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16 -export INPUT_NML=control.nml.IN -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" diff --git a/tests/tests/control_restart_p8 b/tests/tests/control_restart_p8 index 66781b3863..4175ff0bf7 100644 --- a/tests/tests/control_restart_p8 +++ b/tests/tests/control_restart_p8 @@ -12,43 +12,44 @@ export LIST_FILES="sfcf024.nc \ atmf024.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 export NPZP=128 export DT_ATMOS=720 +export DT_INNER=${DT_ATMOS} export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -90,7 +91,7 @@ export USE_MERRA2=.true. export IAER=1011 export NSTF_NAME=2,0,0,0,0 -export LHEATSTRG=.true. +export LHEATSTRG=.false. export LSEASPRAY=.true. # P7 UGWP1 @@ -101,7 +102,7 @@ export KNOB_UGWP_NSLOPE=1 export DO_UGWP_V0=.true. export DO_GSL_DRAG_LS_BL=.false. export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. +export DO_GSL_DRAG_TOFD=.false. export DO_UGWP_V1_OROG_ONLY=.false. export DO_UGWP_V0_NST_ONLY=.false. export LDIAG_UGWP=.false. @@ -156,7 +157,7 @@ export WRITE_NSFLIP=.true. export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_GFS_v17_p8 export FIELD_TABLE=field_table_thompson_noaero_tke -export DIAG_TABLE=diag_table_gfsv16_merra2 +export DIAG_TABLE=diag_table_p8_template # use same namelist for standalone,coupled P7 export INPUT_NML=cpld_control.nml.IN diff --git a/tests/tests/control_rrtmgp b/tests/tests/control_rrtmgp deleted file mode 100644 index d755895072..0000000000 --- a/tests/tests/control_rrtmgp +++ /dev/null @@ -1,40 +0,0 @@ -############################################################################### -# -# Global control w/ RRTMGP test -# -############################################################################### - -export TEST_DESCR="Compare global control w/ RRTMGP results with previous trunk version" - -export CNTL_DIR=control_rrtmgp - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 - -export FV3_RUN=control_run.IN -export INPUT_NML=control.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_2threads b/tests/tests/control_rrtmgp_2threads deleted file mode 100644 index 6e71ef2481..0000000000 --- a/tests/tests/control_rrtmgp_2threads +++ /dev/null @@ -1,42 +0,0 @@ -############################################################################### -# -# Global control w/ RRTMGP threading test -# -############################################################################### - -export TEST_DESCR="Compare global control w/ RRTMGP threading results with previous trunk version" - -export CNTL_DIR=control_rrtmgp - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 - -export THRD=2 -export TASKS=$TASKS_thrd -export INPES=$INPES_thrd -export JNPES=$JNPES_thrd -export WRTTASK_PER_GROUP=6 - -export FV3_RUN=control_run.IN -export INPUT_NML=control.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. diff --git a/tests/tests/control_rrtmgp_c192 b/tests/tests/control_rrtmgp_c192 deleted file mode 100644 index fae337642a..0000000000 --- a/tests/tests/control_rrtmgp_c192 +++ /dev/null @@ -1,51 +0,0 @@ -############################################################################### -# -# Global control C192L127 W/ RRTMGP test -# -############################################################################### - -export TEST_DESCR="Compare global control C192L127 W RRTMGP results with previous trunk version" - -export CNTL_DIR=control_rrtmgp_c192 - -export LIST_FILES="sfcf000.nc \ - sfcf012.nc \ - atmf000.nc \ - atmf012.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF12 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF12" - -export_fv3 -export NPZ=127 -export NPZP=128 -export NPX=193 -export NPY=193 -export DT_ATMOS=360 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export CDMBWD=${CDMBWD_c192} -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export IMO=768 -export JMO=384 -export FHMAX=12 - -export FNALBC="'global_snowfree_albedo.bosu.t382.768.384.rg.grb'," -export FNVETC="'global_vegtype.igbp.t382.768.384.rg.grb'," -export FNSOTC="'global_soiltype.statsgo.t382.768.384.rg.grb'," -export FNABSC="'global_mxsnoalb.uariz.t382.768.384.rg.grb'," - -export FV3_RUN=control_run.IN -export INPUT_NML=control.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_rrtmgp_debug b/tests/tests/control_rrtmgp_debug deleted file mode 100644 index 1950d679d6..0000000000 --- a/tests/tests/control_rrtmgp_debug +++ /dev/null @@ -1,37 +0,0 @@ -############################################################################### -# -# Global control w/ RRTMGP debug test -# -############################################################################### - -export TEST_DESCR="Compare global control w/ RRTMGP debug results with previous trunk version" - -export CNTL_DIR=control_rrtmgp_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=720 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export IAER=5111 -export FHMAX=1 -export OUTPUT_FH="0 1" - -export FV3_RUN=control_run.IN -export INPUT_NML=control.nml.IN - -# RRTMGP -export CCPP_SUITE=FV3_GFS_v16_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/control_thompson b/tests/tests/control_thompson deleted file mode 100644 index b14b20cf0c..0000000000 --- a/tests/tests/control_thompson +++ /dev/null @@ -1,50 +0,0 @@ -############################################################################### -# -# Global control with Thompson test -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson results with previous trunk version" - -export CNTL_DIR=control_thompson - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. - -export IMP_PHYSICS=8 -export FIELD_TABLE=field_table_thompson_aero_tke -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export LHEATSTRG=.true. -export DO_TOFD=.true. -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN diff --git a/tests/tests/control_thompson_debug b/tests/tests/control_thompson_debug deleted file mode 100644 index 67de1862a9..0000000000 --- a/tests/tests/control_thompson_debug +++ /dev/null @@ -1,48 +0,0 @@ -############################################################################### -# -# Global control with Thompson debug test -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson debug results with previous trunk version" - -export CNTL_DIR=control_thompson_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=1 -export OUTPUT_FH="0 1" - -export IMP_PHYSICS=8 -export FIELD_TABLE=field_table_thompson_aero_tke -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export LHEATSTRG=.true. -export DO_TOFD=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN diff --git a/tests/tests/control_thompson_extdiag_debug b/tests/tests/control_thompson_extdiag_debug deleted file mode 100644 index c28de4b459..0000000000 --- a/tests/tests/control_thompson_extdiag_debug +++ /dev/null @@ -1,50 +0,0 @@ -############################################################################### -# -# Global control with Thompson debug test with extended diagnostics -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson debug results with extended diagnostics with previous trunk version" - -export CNTL_DIR=control_thompson_debug_extdiag - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=1 -export OUTPUT_FH="0 1" - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export EXT_DIAG_THOMPSON=.true. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export LHEATSTRG=.true. -export DO_TOFD=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN -export DIAG_TABLE='diag_table_gfsv16_thompson_extdiag' -export FIELD_TABLE=field_table_thompson_aero_tke diff --git a/tests/tests/control_thompson_no_aero b/tests/tests/control_thompson_no_aero deleted file mode 100644 index a0d68dab18..0000000000 --- a/tests/tests/control_thompson_no_aero +++ /dev/null @@ -1,53 +0,0 @@ -############################################################################### -# -# Global control with Thompson no aerosol test -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson no aerosol results with previous trunk version" - -export CNTL_DIR=control_thompson_no_aero - -export LIST_FILES="sfcf000.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF24" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL=0 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export NSRADAR_RESET=3600.0 -export LTAEROSOL=.false. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export LHEATSTRG=.true. -export DO_TOFD=.T - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN -export FIELD_TABLE=field_table_thompson_noaero_tke diff --git a/tests/tests/control_thompson_no_aero_debug b/tests/tests/control_thompson_no_aero_debug deleted file mode 100644 index 7fa5f73224..0000000000 --- a/tests/tests/control_thompson_no_aero_debug +++ /dev/null @@ -1,49 +0,0 @@ -############################################################################### -# -# Global control with Thompson no aerosol debug test -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson no aerosol debug results with previous trunk version" - -export CNTL_DIR=control_thompson_no_aero_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=1 -export OUTPUT_FH="0 1" - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export NSRADAR_RESET=3600.0 -export LTAEROSOL=.false. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export LHEATSTRG=.true. -export DO_TOFD=.T - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN -export FIELD_TABLE=field_table_thompson_noaero_tke diff --git a/tests/tests/control_thompson_progcld_thompson_debug b/tests/tests/control_thompson_progcld_thompson_debug deleted file mode 100644 index 6fca8952ba..0000000000 --- a/tests/tests/control_thompson_progcld_thompson_debug +++ /dev/null @@ -1,49 +0,0 @@ -############################################################################### -# -# Global control with Thompson debug with Thompson's prognostic cloud scheme test -# -############################################################################### - -export TEST_DESCR="Compare global control Thompson debug with Thompson's prognostic cloud scheme results with previous trunk version" - -export CNTL_DIR=control_thompson_progcld_thompson_debug - -export LIST_FILES="sfcf000.nc \ - sfcf001.nc \ - atmf000.nc \ - atmf001.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=600 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export FHMAX=1 -export OUTPUT_FH="0 1" - -export IMP_PHYSICS=8 -export FIELD_TABLE=field_table_thompson_aero_tke -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export HYBEDMF=.false. -export SATMEDMF=.true. -export DO_MYNNEDMF=.false. -export IMFSHALCNV=2 -export IMFDEEPCNV=2 -export IAER=5111 -export ICLIQ_SW=2 -export IOVR=3 -export ICLOUD=3 -export LHEATSTRG=.true. -export DO_TOFD=.true. - -export FV3_RUN=control_run.IN -export CCPP_SUITE=FV3_GFS_v16_thompson -export INPUT_NML=control_thompson.nml.IN diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index a2acc0c1dc..15cdb6a34a 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -18,45 +18,44 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " export_fv3 export_cpl @@ -64,27 +63,32 @@ 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` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` -export eps_imesh=2.5e-1 export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_bmark_p8 b/tests/tests/cpld_bmark_p8 index 61caec1abf..b20f164819 100644 --- a/tests/tests/cpld_bmark_p8 +++ b/tests/tests/cpld_bmark_p8 @@ -1,57 +1,61 @@ # # cpld_bmark_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-GOCART-WW3 system - C384L127 MX025 - Benchmark P8 test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P8 test" export CNTL_DIR="cpld_bmark_p8" export LIST_FILES="sfcf006.nc \ atmf006.nc \ + GFSFLX.GrbF06 \ + GFSPRS.GrbF06 \ gocart.inst_aod.20130401_0600z.nc4 \ - 20130401.060000.out_grd.gwes_30m \ - 20130401.060000.out_pnt.points \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ + RESTART/20130401.060000.coupler.res \ + RESTART/20130401.060000.fv_core.res.nc \ + RESTART/20130401.060000.fv_core.res.tile1.nc \ + RESTART/20130401.060000.fv_core.res.tile2.nc \ + RESTART/20130401.060000.fv_core.res.tile3.nc \ + RESTART/20130401.060000.fv_core.res.tile4.nc \ + RESTART/20130401.060000.fv_core.res.tile5.nc \ + RESTART/20130401.060000.fv_core.res.tile6.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20130401.060000.fv_tracer.res.tile1.nc \ + RESTART/20130401.060000.fv_tracer.res.tile2.nc \ + RESTART/20130401.060000.fv_tracer.res.tile3.nc \ + RESTART/20130401.060000.fv_tracer.res.tile4.nc \ + RESTART/20130401.060000.fv_tracer.res.tile5.nc \ + RESTART/20130401.060000.fv_tracer.res.tile6.nc \ + RESTART/20130401.060000.phy_data.tile1.nc \ + RESTART/20130401.060000.phy_data.tile2.nc \ + RESTART/20130401.060000.phy_data.tile3.nc \ + RESTART/20130401.060000.phy_data.tile4.nc \ + RESTART/20130401.060000.phy_data.tile5.nc \ + RESTART/20130401.060000.phy_data.tile6.nc \ + RESTART/20130401.060000.sfc_data.tile1.nc \ + RESTART/20130401.060000.sfc_data.tile2.nc \ + RESTART/20130401.060000.sfc_data.tile3.nc \ + RESTART/20130401.060000.sfc_data.tile4.nc \ + RESTART/20130401.060000.sfc_data.tile5.nc \ + RESTART/20130401.060000.sfc_data.tile6.nc \ + RESTART/20130401.060000.MOM.res.nc \ + RESTART/20130401.060000.MOM.res_1.nc \ + RESTART/20130401.060000.MOM.res_2.nc \ + RESTART/20130401.060000.MOM.res_3.nc \ RESTART/iced.2013-04-01-21600.nc \ - RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc" + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ + 20130401.060000.out_pnt.ww3 \ + 20130401.060000.out_grd.ww3 " export_fv3 export_cpl +export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN + export SYEAR=2013 export SMONTH=04 export SDAY=01 @@ -61,22 +65,31 @@ export BMIC=.true. export DAYS=0.25 export FHMAX=6 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` +export RESTART_N=3 export RESTART_INTERVAL="${RESTART_N} -1" - -export WLCLK=45 +export OUTPUT_FH="3 -1" +export FHZERO=3 export DOMAINS_STACK_SIZE=16000000 -export TASKS=$TASKS_cpl_bmrk_aero -export INPES=$INPES_cpl_bmrk_aero -export JNPES=$JNPES_cpl_bmrk_aero -export THRD=$THRD_cpl_bmrk_aero -export WRTTASK_PER_GROUP=$WPG_cpl_bmrk_aero +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" + +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export WRTTASK_PER_GROUP=$(( WPG_cpl_bmrk * THRD_cpl_bmrk )) +export WRITE_DOPOST=.true. +export WLCLK=${WLCLK_cpl_bmrk:-$WLCLK} -OCN_tasks=$OCN_tasks_cpl_bmrk_aero -ICE_tasks=$ICE_tasks_cpl_bmrk_aero -WAV_tasks=$WAV_tasks_cpl_bmrk_aero +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 +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 @@ -91,21 +104,21 @@ export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=${ICE_tasks} +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export WAVDOMAIN=gwes_30m +export MESH_WAV=mesh.${WAVDOMAIN}.nc # set component and coupling timesteps export DT_ATMOS=300 +export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 -export CPLCHM=.true. - # nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} @@ -116,6 +129,8 @@ export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_RIVER_RUNOFF=True +export MOM6_RESTART_SETTING=r export FNALBC="'C384.snowfree_albedo.tileX.nc'" export FNALBC2="'C384.facsf.tileX.nc'" @@ -128,23 +143,13 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" -export CDMBWD=${CDMBWD_c384} -export DT_INNER=${DT_INNER_c384} +#BMICs do not contain NSST spinup +export NSTF_NAME=2,1,0,0,0 -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r +export CDMBWD=${CDMBWD_c384} -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END export FV3_RUN=cpld_control_run.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART diff --git a/tests/tests/cpld_bmark_p8_35d b/tests/tests/cpld_bmark_p8_35d index 2e9d1bcb24..0837666183 100644 --- a/tests/tests/cpld_bmark_p8_35d +++ b/tests/tests/cpld_bmark_p8_35d @@ -1,7 +1,7 @@ # -# cpld_bmark_p8 35 day test +# cpld_bmark_p8 5-day test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - Benchmark P7 35 day test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 OCN/ICE/0.25-degree WAVE/30m - Benchmark P8 test" export CNTL_DIR="cpld_bmark_p8" @@ -19,18 +19,31 @@ export BMIC=.true. export DAYS=5 export FHMAX=120 -export RESTART_N=`expr ${FHMAX} - ${FHROT}` -export WLCLK=120 +export RESTART_N=$FHMAX +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH="6 -1" +export FHZERO=6 +export WLCLK=240 -export TASKS=1700 -export INPES=12 -export JNPES=16 -export THRD=2 -export WRTTASK_PER_GROUP=88 +export DOMAINS_STACK_SIZE=16000000 -OCN_tasks=220 -ICE_tasks=80 -WAV_tasks=160 +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" + +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export WRITE_DOPOST=.true. +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +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 @@ -45,19 +58,21 @@ export OCNRES=025 export ICERES=0.25 export NX_GLB=1440 export NY_GLB=1080 -export NPROC_ICE=80 +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export WAVDOMAIN=gwes_30m +export MESH_WAV=mesh.${WAVDOMAIN}.nc # set component and coupling timesteps export DT_ATMOS=300 +export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=900 export DT_THERM_MOM6=1800 # nems.configure -export NEMS_CONFIGURE=nems.configure.cpld_wave.IN export coupling_interval_slow_sec=${DT_THERM_MOM6} export coupling_interval_fast_sec=${DT_ATMOS} @@ -68,6 +83,8 @@ export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_RIVER_RUNOFF=True +export MOM6_RESTART_SETTING=r export FNALBC="'C384.snowfree_albedo.tileX.nc'" export FNALBC2="'C384.facsf.tileX.nc'" @@ -80,24 +97,13 @@ export FNVMXC="'C384.vegetation_greenness.tileX.nc'" export FNSLPC="'C384.slope_type.tileX.nc'" export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" -export CDMBWD=${CDMBWD_c384} -export DT_INNER=${DT_INNER_c384} +#BMICs do not contain NSST spinup +export NSTF_NAME=2,1,0,0,0 -export MOM6_RIVER_RUNOFF=True -export MOM6_RESTART_SETTING=r +export CDMBWD=${CDMBWD_c384} -export WW3GRIDLINE="'gwes_30m' 'no' 'CPL:native' 'CPL:native' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 1 1 0.00 1.00 F" -export WW3RSTDTHR=${FHMAX} -export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" -export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="2100${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" export OUT_BEG=$RUN_BEG -export OUT_END=$RUN_END export RST_BEG=$RUN_BEG export RST_2_BEG=$RUN_BEG -export RST_END=$RUN_END -export RST_2_END=$RUN_END - -export DIAG_TABLE=diag_table_template export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index ef4083c513..065d5fa288 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -1,77 +1,85 @@ # # cpld_control_c192_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C192 MX050 - P8 test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C192 MX050 - P8 test" export CNTL_DIR="cpld_control_c192_p8" -export LIST_FILES="sfcf036.tile1.nc \ - sfcf036.tile2.nc \ - sfcf036.tile3.nc \ - sfcf036.tile4.nc \ - sfcf036.tile5.nc \ - sfcf036.tile6.nc \ - atmf036.tile1.nc \ - atmf036.tile2.nc \ - atmf036.tile3.nc \ - atmf036.tile4.nc \ - atmf036.tile5.nc \ - atmf036.tile6.nc \ - gocart.inst_aod.20210323_1800z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-64800.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc" +export LIST_FILES="sfcf030.tile1.nc \ + sfcf030.tile2.nc \ + sfcf030.tile3.nc \ + sfcf030.tile4.nc \ + sfcf030.tile5.nc \ + sfcf030.tile6.nc \ + atmf030.tile1.nc \ + atmf030.tile2.nc \ + atmf030.tile3.nc \ + atmf030.tile4.nc \ + atmf030.tile5.nc \ + atmf030.tile6.nc \ + gocart.inst_aod.20210323_1200z.nc4 \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ + RESTART/iced.2021-03-23-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + 20210323.120000.out_grd.ww3 \ + 20210323.120000.out_pnt.ww3 " export_fv3 export_cpl -export DAYS=1.5 -export FHMAX=36 -export RESTART_N=12 +export DAYS=1.25 +export FHMAX=30 +export RESTART_N=15 export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH="0 15 30" +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 @@ -89,9 +97,12 @@ export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export WAVDOMAIN=mx${OCNRES} +export MESH_WAV=mesh.${WAVDOMAIN}.nc # set component and coupling timesteps export DT_ATMOS=600 +export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=1800 export DT_THERM_MOM6=3600 @@ -121,14 +132,9 @@ export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export CDMBWD=${CDMBWD_c192} -export DT_INNER=${DT_INNER_c192} - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_c384_p8 b/tests/tests/cpld_control_c384_p8 deleted file mode 100644 index 8ec4e40198..0000000000 --- a/tests/tests/cpld_control_c384_p8 +++ /dev/null @@ -1,130 +0,0 @@ -# -# cpld_control_c384_p8 test -# -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 test " - -export CNTL_DIR="cpld_control_c384_p8" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - gocart.inst_aod.20210322_1200z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2021-03-22-43200.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc" - -export_fv3 -export_cpl - -export DAYS=0.25 -export FHMAX=6 -export RESTART_N=3 -export RESTART_INTERVAL="${RESTART_N} -1" -export OUTPUT_FH="3 -1" -export FHZERO=3 - -export DOMAINS_STACK_SIZE=16000000 - -export TASKS=$TASKS_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 -export WRTTASK_PER_GROUP=$WPG_cpl_c384 - -OCN_tasks=$OCN_tasks_cpl_c384 -ICE_tasks=$ICE_tasks_cpl_c384 - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc -export MOM6_RIVER_RUNOFF=True - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export CDMBWD=${CDMBWD_c384} -export DT_INNER=${DT_INNER_c384} - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 new file mode 100644 index 0000000000..fac8b929da --- /dev/null +++ b/tests/tests/cpld_control_c48 @@ -0,0 +1,138 @@ +# +# cpld_control_c48 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500" + +export CNTL_DIR="cpld_control_c48" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" + +export INPES=$INPES_cpl_c48 +export JNPES=$JNPES_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 +export WRTTASK_PER_GROUP=$WPG_cpl_c48 +export OUTPUT_GRID='cubed_sphere_grid' + +export WAV_tasks=0 +export CHM_tasks=0 +OCN_tasks=$OCN_tasks_cpl_c48 +ICE_tasks=$ICE_tasks_cpl_c48 + +# atm/ocn/ice resolution +export ATMRES=C48 +export NPX=49 +export NPY=49 +export IMO=192 +export JMO=94 +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=500 +export ICERES=5.00 +export NX_GLB=72 +export NY_GLB=35 +export NPROC_ICE=$ICE_tasks +export CICE_DECOMP=slenderX1 +export BLCKX=`expr $NX_GLB / $NPROC_ICE` +export BLCKY=$NY_GLB + +# set component and coupling timesteps +export DT_ATMOS=1200 +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=3600 +export DT_THERM_MOM6=3600 + +# nems.configure +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM='' +export FRUNOFF='' +export MOM6_RIVER_RUNOFF=False +export MOM6_RESTART_SETTING=r + +export FNALBC="'C48.snowfree_albedo.tileX.nc'" +export FNALBC2="'C48.facsf.tileX.nc'" +export FNTG3C="'C48.substrate_temperature.tileX.nc'" +export FNVEGC="'C48.vegetation_greenness.tileX.nc'" +export FNVETC="'C48.vegetation_type.tileX.nc'" +export FNSOTC="'C48.soil_type.tileX.nc'" +export FNVMNC="'C48.vegetation_greenness.tileX.nc'" +export FNVMXC="'C48.vegetation_greenness.tileX.nc'" +export FNSLPC="'C48.slope_type.tileX.nc'" +export FNABSC="'C48.maximum_snow_albedo.tileX.nc'" +export FNSMCC="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH="'global_slmask.t62.192.94.grb'" + +# resolution dependent setting +export CDMBWD=${CDMBWD_c48} +export DT_INNER=${DT_ATMOS} + +# no aero, no waves +export CPLCHM=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False +export eps_imesh=4.0e-1 + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c96_noaero_p8 b/tests/tests/cpld_control_c96_noaero_p8 deleted file mode 100644 index 0c57934c86..0000000000 --- a/tests/tests/cpld_control_c96_noaero_p8 +++ /dev/null @@ -1,103 +0,0 @@ -# -# cpld_control C96 noaero P8 test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" - -export CNTL_DIR="cpld_control_c96_noaero_p8" - -export LIST_FILES="sfcf021.tile1.nc \ - sfcf021.tile2.nc \ - sfcf021.tile3.nc \ - sfcf021.tile4.nc \ - sfcf021.tile5.nc \ - sfcf021.tile6.nc \ - atmf021.tile1.nc \ - atmf021.tile2.nc \ - atmf021.tile3.nc \ - atmf021.tile4.nc \ - atmf021.tile5.nc \ - atmf021.tile6.nc \ - sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" - -#TODO: add comparison of CA restart files? - -export_fv3 -export_cpl - -export RESTART_N=12 -export RESTART_INTERVAL="${RESTART_N} -1" -export OUTPUT_FH='0 21 24' - -export TASKS=$TASKS_cpl_c96 -export INPES=$INPES_cpl_c96 -export JNPES=$JNPES_cpl_c96 -export THRD=$THRD_cpl_c96 -export WRTTASK_PER_GROUP=$WPG_cpl_c96 - -OCN_tasks=$OCN_tasks_cpl_c96 -ICE_tasks=$ICE_tasks_cpl_c96 - -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False -export eps_imesh=2.5e-1 - -export TOPOEDITS=ufs.topo_edits_011818.nc -export MOM6_ALLOW_LANDMASK_CHANGES=True - -export DIAG_TABLE=diag_table_template -export NEMS_CONFIGURE=nems.configure.cpld.IN - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_c96_p8 b/tests/tests/cpld_control_c96_p8 deleted file mode 100644 index db4ac9d9ad..0000000000 --- a/tests/tests/cpld_control_c96_p8 +++ /dev/null @@ -1,104 +0,0 @@ -# -# cpld_control C96 P8 test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100" - -export CNTL_DIR="cpld_control_c96_p8" - -export LIST_FILES="sfcf021.tile1.nc \ - sfcf021.tile2.nc \ - sfcf021.tile3.nc \ - sfcf021.tile4.nc \ - sfcf021.tile5.nc \ - sfcf021.tile6.nc \ - atmf021.tile1.nc \ - atmf021.tile2.nc \ - atmf021.tile3.nc \ - atmf021.tile4.nc \ - atmf021.tile5.nc \ - atmf021.tile6.nc \ - sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" - -#TODO: add comparison of CA restart files? - -export_fv3 -export_cpl - -export RESTART_N=12 -export RESTART_INTERVAL="${RESTART_N} -1" -export OUTPUT_FH='0 21 24' - -export TASKS=$TASKS_cpl_c96 -export INPES=$INPES_cpl_c96 -export JNPES=$JNPES_cpl_c96 -export THRD=$THRD_cpl_c96 -export WRTTASK_PER_GROUP=$WPG_cpl_c96 - -OCN_tasks=$OCN_tasks_cpl_c96 -ICE_tasks=$ICE_tasks_cpl_c96 - -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False -export TOPOEDITS=ufs.topo_edits_011818.nc -export MOM6_ALLOW_LANDMASK_CHANGES=True -export eps_imesh=2.5e-1 - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 new file mode 100644 index 0000000000..4a0f3cf819 --- /dev/null +++ b/tests/tests/cpld_control_ciceC_p8 @@ -0,0 +1,89 @@ +# +# cpld_control CICE C-grid P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - CICE6 Cgrid" + +export CNTL_DIR="cpld_control_ciceC_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export GRIDICE=C + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_gfsv17 b/tests/tests/cpld_control_gfsv17 new file mode 100644 index 0000000000..3093581692 --- /dev/null +++ b/tests/tests/cpld_control_gfsv17 @@ -0,0 +1,96 @@ +# +# cpld_control GFSv17 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100" + +export CNTL_DIR="cpld_control_gfsv17" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export CPLCHM=.false. +export DNATS=0 + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN +export FIELD_TABLE=field_table_thompson_noaero_tke_progsigma +export DIAG_TABLE=diag_table_gfsv17_template +export INPUT_NML=cpld_control_gfsv17.nml.IN +export NEMS_CONFIGURE=nems.configure.cpld_noaero_outwav.IN + +#GFSv17 settings +export PROGSIGMA=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 new file mode 100644 index 0000000000..cc18d3c681 --- /dev/null +++ b/tests/tests/cpld_control_noaero_p8 @@ -0,0 +1,92 @@ +# +# cpld_control noaero P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100" + +export CNTL_DIR="cpld_control_noaero_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid new file mode 100644 index 0000000000..823103643c --- /dev/null +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -0,0 +1,102 @@ +# +# cpld_control C96 noaero P8 test but receives atm-ocn fluxes from mediator +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" + +export CNTL_DIR="cpld_control_noaero_p8_agrid" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +#TODO: add comparison of CA restart files? + +export_fv3 +export_cpl + +#OCN_tasks=$OCN_tasks_cpl_dflt +#ICE_tasks=$ICE_tasks_cpl_dflt +#WAV_tasks=$WAV_tasks_cpl_dflt + +export RESTART_N=12 +export RESTART_N_SEC=$((RESTART_N*3600)) +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CPLCHM=.false. +export DNATS=0 +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPLMODE=nems_frac_aoflux +export CCPP_SUITE="FV3_GFS_v17_coupled_p8_sfcocn" +export USE_MED_FLUX=.true. +export MOM6_USE_WAVES=False +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export DIAG_TABLE=diag_table_template +export NEMS_CONFIGURE=nems.configure.cpld_agrid.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 new file mode 100644 index 0000000000..1cd2ed8f7a --- /dev/null +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -0,0 +1,109 @@ +# +# cpld_control C96 noaero P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" + +export CNTL_DIR="cpld_control_c96_noaero_p8" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +#TODO: add comparison of CA restart files? + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export INPES=$INPES_cpl_dflt +export JNPES=$JNPES_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 NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` + +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False +export eps_imesh=2.5e-1 + +export CPLCHM=.false. +export DNATS=0 +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True + +export DIAG_TABLE=diag_table_template +export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index 40c27e2c5b..484d056bc9 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -30,63 +30,58 @@ export LIST_FILES="sfcf021.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " export_fv3 export_cpl -OCN_tasks=$OCN_tasks_cpl_dflt -ICE_tasks=$ICE_tasks_cpl_dflt -WAV_tasks=$WAV_tasks_cpl_dflt - export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export eps_imesh=2.5e-1 export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode new file mode 100644 index 0000000000..aca8831ed9 --- /dev/null +++ b/tests/tests/cpld_control_p8_mixedmode @@ -0,0 +1,87 @@ +# +# cpld_control P8 test +# + +export TEST_DESCR="FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system with mixedmode fms - C96MX100" + +export CNTL_DIR="cpld_control_p8_mixedmode" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export RESTART_N=12 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index 74f2d6c82b..9b33845072 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -2,89 +2,81 @@ # cpld_debug_noaero_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100 - P8 debug" +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS-WW3 system - C96MX100 - P8 debug" export CNTL_DIR="cpld_debug_noaero_p8" -export LIST_FILES="sfcf006.tile1.nc \ - sfcf006.tile2.nc \ - sfcf006.tile3.nc \ - sfcf006.tile4.nc \ - sfcf006.tile5.nc \ - sfcf006.tile6.nc \ - atmf006.tile1.nc \ - atmf006.tile2.nc \ - atmf006.tile3.nc \ - atmf006.tile4.nc \ - atmf006.tile5.nc \ - atmf006.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-22-43200.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc" +export LIST_FILES="sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + 20210322.090000.out_pnt.ww3 \ + 20210322.090000.out_grd.ww3 " export_fv3 export_cpl -export DAYS=0.25 -export FHMAX=6 +export FHMAX=3 +export DAYS=0.125 export RESTART_N=${FHMAX} -export eps_imesh=2.5e-1 - -export TASKS=$TASKS_cpl_c96 -export INPES=$INPES_cpl_c96 -export JNPES=$JNPES_cpl_c96 -export THRD=$THRD_cpl_c96 -export WRTTASK_PER_GROUP=$WPG_cpl_c96 - -OCN_tasks=$OCN_tasks_cpl_c96 -ICE_tasks=$ICE_tasks_cpl_c96 - -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False - -export DIAG_TABLE=diag_table_template -export NEMS_CONFIGURE=nems.configure.cpld.IN +export OUTPUT_FH="3 -1" +export CPLCHM=.false. +export DNATS=0 export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero.IN export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 47179318a6..868ac92e2d 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -2,92 +2,76 @@ # cpld_debug_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100 - P8 debug" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 P8 debug" export CNTL_DIR="cpld_debug_p8" -export LIST_FILES="sfcf006.tile1.nc \ - sfcf006.tile2.nc \ - sfcf006.tile3.nc \ - sfcf006.tile4.nc \ - sfcf006.tile5.nc \ - sfcf006.tile6.nc \ - atmf006.tile1.nc \ - atmf006.tile2.nc \ - atmf006.tile3.nc \ - atmf006.tile4.nc \ - atmf006.tile5.nc \ - atmf006.tile6.nc \ - gocart.inst_aod.20210322_1200z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-22-43200.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc" +export LIST_FILES="sfcf003.tile1.nc \ + sfcf003.tile2.nc \ + sfcf003.tile3.nc \ + sfcf003.tile4.nc \ + sfcf003.tile5.nc \ + sfcf003.tile6.nc \ + atmf003.tile1.nc \ + atmf003.tile2.nc \ + atmf003.tile3.nc \ + atmf003.tile4.nc \ + atmf003.tile5.nc \ + atmf003.tile6.nc \ + gocart.inst_aod.20210322_0900z.nc4 \ + RESTART/20210322.090000.coupler.res \ + RESTART/20210322.090000.fv_core.res.nc \ + RESTART/20210322.090000.fv_core.res.tile1.nc \ + RESTART/20210322.090000.fv_core.res.tile2.nc \ + RESTART/20210322.090000.fv_core.res.tile3.nc \ + RESTART/20210322.090000.fv_core.res.tile4.nc \ + RESTART/20210322.090000.fv_core.res.tile5.nc \ + RESTART/20210322.090000.fv_core.res.tile6.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.090000.fv_tracer.res.tile1.nc \ + RESTART/20210322.090000.fv_tracer.res.tile2.nc \ + RESTART/20210322.090000.fv_tracer.res.tile3.nc \ + RESTART/20210322.090000.fv_tracer.res.tile4.nc \ + RESTART/20210322.090000.fv_tracer.res.tile5.nc \ + RESTART/20210322.090000.fv_tracer.res.tile6.nc \ + RESTART/20210322.090000.phy_data.tile1.nc \ + RESTART/20210322.090000.phy_data.tile2.nc \ + RESTART/20210322.090000.phy_data.tile3.nc \ + RESTART/20210322.090000.phy_data.tile4.nc \ + RESTART/20210322.090000.phy_data.tile5.nc \ + RESTART/20210322.090000.phy_data.tile6.nc \ + RESTART/20210322.090000.sfc_data.tile1.nc \ + RESTART/20210322.090000.sfc_data.tile2.nc \ + RESTART/20210322.090000.sfc_data.tile3.nc \ + RESTART/20210322.090000.sfc_data.tile4.nc \ + RESTART/20210322.090000.sfc_data.tile5.nc \ + RESTART/20210322.090000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ + 20210322.090000.out_pnt.ww3 \ + 20210322.090000.out_grd.ww3 " export_fv3 export_cpl -export DAYS=0.25 -export FHMAX=6 - +export FHMAX=3 +export DAYS=0.125 export RESTART_N=${FHMAX} -export eps_imesh=2.5e-1 -export TOPOEDITS=ufs.topo_edits_011818.nc -export MOM6_ALLOW_LANDMASK_CHANGES=True - -export TASKS=$TASKS_cpl_c96 -export INPES=$INPES_cpl_c96 -export JNPES=$JNPES_cpl_c96 -export THRD=$THRD_cpl_c96 -export WRTTASK_PER_GROUP=$WPG_cpl_c96 +export OUTPUT_FH="3 -1" +export AOD_FRQ=030000 -OCN_tasks=$OCN_tasks_cpl_c96 -ICE_tasks=$ICE_tasks_cpl_c96 - -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 39e95ec7dc..a77c9e87ff 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -1,5 +1,5 @@ # -# cpld_decomp P8 test +# cpld_control P8 test # export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - decomp test" @@ -18,45 +18,44 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " export_fv3 export_cpl @@ -64,27 +63,26 @@ 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 ICE_tasks=$ICE_tasks_cpl_dcmp WAV_tasks=$WAV_tasks_cpl_dcmp -export NPROC_ICE=${ICE_tasks} +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export eps_imesh=2.5e-1 export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 11bf3a64a1..f224dcd54f 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -2,7 +2,7 @@ # cpld_mpi P8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 - change mpi task test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 MPI-task test" export CNTL_DIR="cpld_control_p8" @@ -18,45 +18,44 @@ export LIST_FILES="sfcf024.tile1.nc \ atmf024.tile4.nc \ atmf024.tile5.nc \ atmf024.tile6.nc \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - 20210323.060000.out_grd.glo_1deg \ - 20210323.060000.out_pnt.points \ - 20210323.060000.restart.glo_1deg" + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " export_fv3 export_cpl @@ -64,17 +63,16 @@ 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 ICE_tasks=$ICE_tasks_cpl_mpi WAV_tasks=$WAV_tasks_cpl_mpi -export NPROC_ICE=${ICE_tasks} +export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` @@ -83,8 +81,8 @@ export TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero_wave.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_multigrid_p8 b/tests/tests/cpld_multigrid_p8 new file mode 100644 index 0000000000..1c79c8522a --- /dev/null +++ b/tests/tests/cpld_multigrid_p8 @@ -0,0 +1,68 @@ +# +# cpld_multigrid P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100 multigrid test" + +export CNTL_DIR="cpld_control_p8" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export MULTIGRID=true + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_bmark_p8 b/tests/tests/cpld_restart_bmark_p8 new file mode 100644 index 0000000000..1d0e522b2b --- /dev/null +++ b/tests/tests/cpld_restart_bmark_p8 @@ -0,0 +1,171 @@ +# +# cpld_restart_bmark_p8 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C384L127 MX025 - restart test " + +export CNTL_DIR="cpld_bmark_p8" + +export LIST_FILES="sfcf006.nc \ + atmf006.nc \ + GFSFLX.GrbF06 \ + GFSPRS.GrbF06 \ + gocart.inst_aod.20130401_0600z.nc4 \ + RESTART/20130401.060000.coupler.res \ + RESTART/20130401.060000.fv_core.res.nc \ + RESTART/20130401.060000.fv_core.res.tile1.nc \ + RESTART/20130401.060000.fv_core.res.tile2.nc \ + RESTART/20130401.060000.fv_core.res.tile3.nc \ + RESTART/20130401.060000.fv_core.res.tile4.nc \ + RESTART/20130401.060000.fv_core.res.tile5.nc \ + RESTART/20130401.060000.fv_core.res.tile6.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20130401.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20130401.060000.fv_tracer.res.tile1.nc \ + RESTART/20130401.060000.fv_tracer.res.tile2.nc \ + RESTART/20130401.060000.fv_tracer.res.tile3.nc \ + RESTART/20130401.060000.fv_tracer.res.tile4.nc \ + RESTART/20130401.060000.fv_tracer.res.tile5.nc \ + RESTART/20130401.060000.fv_tracer.res.tile6.nc \ + RESTART/20130401.060000.phy_data.tile1.nc \ + RESTART/20130401.060000.phy_data.tile2.nc \ + RESTART/20130401.060000.phy_data.tile3.nc \ + RESTART/20130401.060000.phy_data.tile4.nc \ + RESTART/20130401.060000.phy_data.tile5.nc \ + RESTART/20130401.060000.phy_data.tile6.nc \ + RESTART/20130401.060000.sfc_data.tile1.nc \ + RESTART/20130401.060000.sfc_data.tile2.nc \ + RESTART/20130401.060000.sfc_data.tile3.nc \ + RESTART/20130401.060000.sfc_data.tile4.nc \ + RESTART/20130401.060000.sfc_data.tile5.nc \ + RESTART/20130401.060000.sfc_data.tile6.nc \ + RESTART/20130401.060000.MOM.res.nc \ + RESTART/20130401.060000.MOM.res_1.nc \ + RESTART/20130401.060000.MOM.res_2.nc \ + RESTART/20130401.060000.MOM.res_3.nc \ + RESTART/iced.2013-04-01-21600.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc \ + 20130401.060000.out_pnt.ww3 \ + 20130401.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export NEMS_CONFIGURE=nems.configure.cpld_esmfthreads.IN + +export SYEAR=2013 +export SMONTH=04 +export SDAY=01 +export SHOUR=00 +export SECS=`expr $SHOUR \* 3600` +export BMIC=.true. + +export DAYS=0.25 +export FHMAX=6 +export FHROT=3 +export RESTART_N=$((FHMAX-$FHROT)) +export OUTPUT_FH="3 -1" +export FHZERO=3 + +export DOMAINS_STACK_SIZE=16000000 + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" + +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_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} +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 +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 +export NPY=385 +export IMO=1536 +export JMO=768 +export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=025 +export ICERES=0.25 +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE=$ICE_tasks +export np2=`expr $NPROC_ICE / 2` +export BLCKX=`expr $NX_GLB / $np2` +export BLCKY=`expr $NY_GLB / 2` +export WAVDOMAIN=gwes_30m +export MESH_WAV=mesh.${WAVDOMAIN}.nc + +# set component and coupling timesteps +export DT_ATMOS=300 +export DT_INNER=${DT_ATMOS} +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=900 +export DT_THERM_MOM6=1800 + +# nems.configure +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc +export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc +export MOM6_RIVER_RUNOFF=True +export MOM6_RESTART_SETTING=r + +export FNALBC="'C384.snowfree_albedo.tileX.nc'" +export FNALBC2="'C384.facsf.tileX.nc'" +export FNTG3C="'C384.substrate_temperature.tileX.nc'" +export FNVEGC="'C384.vegetation_greenness.tileX.nc'" +export FNVETC="'C384.vegetation_type.tileX.nc'" +export FNSOTC="'C384.soil_type.tileX.nc'" +export FNVMNC="'C384.vegetation_greenness.tileX.nc'" +export FNVMXC="'C384.vegetation_greenness.tileX.nc'" +export FNSLPC="'C384.slope_type.tileX.nc'" +export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" + +export CDMBWD=${CDMBWD_c384} + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +# Waves +export OUT_BEG=$RUN_BEG +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c192_p8 b/tests/tests/cpld_restart_c192_p8 index ed152ee35e..addb41fa76 100644 --- a/tests/tests/cpld_restart_c192_p8 +++ b/tests/tests/cpld_restart_c192_p8 @@ -1,81 +1,88 @@ # -# cpld_restart_c192_p8_aero test +# cpld_restart_c192_p8 test # -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C192 MX050 - 24h P8 restart test" +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C192 MX050 - P8 test" export CNTL_DIR="cpld_control_c192_p8" -export LIST_FILES="sfcf036.tile1.nc \ - sfcf036.tile2.nc \ - sfcf036.tile3.nc \ - sfcf036.tile4.nc \ - sfcf036.tile5.nc \ - sfcf036.tile6.nc \ - atmf036.tile1.nc \ - atmf036.tile2.nc \ - atmf036.tile3.nc \ - atmf036.tile4.nc \ - atmf036.tile5.nc \ - atmf036.tile6.nc \ - gocart.inst_aod.20210323_1800z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-64800.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc" +export LIST_FILES="sfcf030.tile1.nc \ + sfcf030.tile2.nc \ + sfcf030.tile3.nc \ + sfcf030.tile4.nc \ + sfcf030.tile5.nc \ + sfcf030.tile6.nc \ + atmf030.tile1.nc \ + atmf030.tile2.nc \ + atmf030.tile3.nc \ + atmf030.tile4.nc \ + atmf030.tile5.nc \ + atmf030.tile6.nc \ + gocart.inst_aod.20210323_1200z.nc4 \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ + RESTART/iced.2021-03-23-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ + 20210323.120000.out_grd.ww3 \ + 20210323.120000.out_pnt.ww3 " export_fv3 export_cpl -export DAYS=1.5 -export FHMAX=36 -export FHROT=12 +export DAYS=1.25 +export FHMAX=30 +export FHROT=15 export RESTART_N=$((FHMAX-$FHROT)) +export OUTPUT_FH="15 30" +export FHZERO=3 export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" -export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +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 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 @@ -93,9 +100,12 @@ export NPROC_ICE=$ICE_tasks export np2=`expr $NPROC_ICE / 2` export BLCKX=`expr $NX_GLB / $np2` export BLCKY=`expr $NY_GLB / 2` +export WAVDOMAIN=mx${OCNRES} +export MESH_WAV=mesh.${WAVDOMAIN}.nc # set component and coupling timesteps export DT_ATMOS=600 +export DT_INNER=${DT_ATMOS} export DT_CICE=${DT_ATMOS} export DT_DYNAM_MOM6=1800 export DT_THERM_MOM6=3600 @@ -125,7 +135,6 @@ export FNSLPC="'C192.slope_type.tileX.nc'" export FNABSC="'C192.maximum_snow_albedo.tileX.nc'" export CDMBWD=${CDMBWD_c192} -export DT_INNER=${DT_INNER_c192} # ATM warm start export WARM_START=.true. @@ -134,7 +143,6 @@ export NA_INIT=0 export EXTERNAL_IC=.false. export NGGPS_IC=.false. export MOUNTAIN=.true. -export NSTF_NAME=2,0,0,0,0 # ICE warm start export CICERUNTYPE=continue @@ -144,12 +152,13 @@ export USE_RESTART_TIME=.true. # MOM6 warm start export MOM6_RESTART_SETTING=r -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART +#Waves +export OUT_BEG=$RUN_BEG +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_c384_p8 b/tests/tests/cpld_restart_c384_p8 deleted file mode 100644 index a409c090ca..0000000000 --- a/tests/tests/cpld_restart_c384_p8 +++ /dev/null @@ -1,151 +0,0 @@ -# -# cpld_restart_c384_p8_aero test -# -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C384L127 MX025 - P8 restart" - -export CNTL_DIR="cpld_control_c384_p8" - -export LIST_FILES="sfcf006.nc \ - atmf006.nc \ - gocart.inst_aod.20210322_1200z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ - RESTART/iced.2021-03-22-43200.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc" - -export_fv3 -export_cpl - -export DAYS=0.25 -export FHMAX=6 -export FHROT=3 -export RESTART_N=$((FHMAX-$FHROT)) -export OUTPUT_FH="3 -1" -export FHZERO=3 - -export DOMAINS_STACK_SIZE=16000000 - -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" -export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" - -export TASKS=$TASKS_cpl_c384 -export INPES=$INPES_cpl_c384 -export JNPES=$JNPES_cpl_c384 -export THRD=$THRD_cpl_c384 -export WRTTASK_PER_GROUP=$WPG_cpl_c384 - -OCN_tasks=$OCN_tasks_cpl_c384 -ICE_tasks=$ICE_tasks_cpl_c384 - -# atm/ocn/ice resolution -export ATMRES=C384 -export NPX=385 -export NPY=385 -export IMO=1536 -export JMO=768 -export OUTPUT_GRID="'gaussian_grid'" -export ATMTILESIZE=`expr $NPX - 1` - -export OCNRES=025 -export ICERES=0.25 -export NX_GLB=1440 -export NY_GLB=1080 -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -# set component and coupling timesteps -export DT_ATMOS=300 -export DT_CICE=${DT_ATMOS} -export DT_DYNAM_MOM6=900 -export DT_THERM_MOM6=1800 - -# nems.configure -export coupling_interval_slow_sec=${DT_THERM_MOM6} -export coupling_interval_fast_sec=${DT_ATMOS} - -# resolution dependent files -export MOM_INPUT=MOM_input_template_${OCNRES} -export MESHOCN_ICE=mesh.mx${OCNRES}.nc -export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc -export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc -export CHLCLIM=seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc -export FRUNOFF=runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc -export MOM6_RIVER_RUNOFF=True - -export FNALBC="'C384.snowfree_albedo.tileX.nc'" -export FNALBC2="'C384.facsf.tileX.nc'" -export FNTG3C="'C384.substrate_temperature.tileX.nc'" -export FNVEGC="'C384.vegetation_greenness.tileX.nc'" -export FNVETC="'C384.vegetation_type.tileX.nc'" -export FNSOTC="'C384.soil_type.tileX.nc'" -export FNVMNC="'C384.vegetation_greenness.tileX.nc'" -export FNVMXC="'C384.vegetation_greenness.tileX.nc'" -export FNSLPC="'C384.slope_type.tileX.nc'" -export FNABSC="'C384.maximum_snow_albedo.tileX.nc'" - -export CDMBWD=${CDMBWD_c384} -export DT_INNER=${DT_INNER_c384} - -# ATM warm start -export WARM_START=.true. -export MAKE_NH=.false. -export NA_INIT=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export NSTF_NAME=2,0,0,0,0 - -# ICE warm start -export CICERUNTYPE=continue -export RUNTYPE=continue -export USE_RESTART_TIME=.true. - -# MOM6 warm start -export MOM6_RESTART_SETTING=r - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 new file mode 100644 index 0000000000..afeb07dadf --- /dev/null +++ b/tests/tests/cpld_restart_c48 @@ -0,0 +1,168 @@ +# +# cpld_restart_c48 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500 restart test" + +export CNTL_DIR="cpld_warmstart_c48" + +export LIST_FILES="sfcf006.tile1.nc \ + sfcf006.tile2.nc \ + sfcf006.tile3.nc \ + sfcf006.tile4.nc \ + sfcf006.tile5.nc \ + sfcf006.tile6.nc \ + atmf006.tile1.nc \ + atmf006.tile2.nc \ + atmf006.tile3.nc \ + atmf006.tile4.nc \ + atmf006.tile5.nc \ + atmf006.tile6.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ + RESTART/iced.2021-03-23-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" + +export_fv3 +export_cpl + +export SYEAR=2021 +export SMONTH=03 +export SDAY=23 +export SHOUR=06 +export SECS=`expr $SHOUR \* 3600` + +export DAYS=0.25 +export FHMAX=6 +export FHROT=3 + +export RESTART_N=1 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH="3 -1" +export FHZERO=3 + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" + +export INPES=$INPES_cpl_c48 +export JNPES=$JNPES_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 +export WRTTASK_PER_GROUP=$WPG_cpl_c48 +export OUTPUT_GRID='cubed_sphere_grid' + +export WAV_tasks=0 +export CHM_tasks=0 +OCN_tasks=$OCN_tasks_cpl_c48 +ICE_tasks=$ICE_tasks_cpl_c48 + +# atm/ocn/ice resolution +export ATMRES=C48 +export NPX=49 +export NPY=49 +export IMO=192 +export JMO=94 +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=500 +export ICERES=5.00 +export NX_GLB=72 +export NY_GLB=35 +export NPROC_ICE=$ICE_tasks +export CICE_DECOMP=slenderX1 +export BLCKX=`expr $NX_GLB / $NPROC_ICE` +export BLCKY=$NY_GLB + +# set component and coupling timesteps +export DT_ATMOS=1200 +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=3600 +export DT_THERM_MOM6=3600 + +# nems.configure +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM='' +export FRUNOFF='' +export MOM6_RIVER_RUNOFF=False + +export FNALBC="'C48.snowfree_albedo.tileX.nc'" +export FNALBC2="'C48.facsf.tileX.nc'" +export FNTG3C="'C48.substrate_temperature.tileX.nc'" +export FNVEGC="'C48.vegetation_greenness.tileX.nc'" +export FNVETC="'C48.vegetation_type.tileX.nc'" +export FNSOTC="'C48.soil_type.tileX.nc'" +export FNVMNC="'C48.vegetation_greenness.tileX.nc'" +export FNVMXC="'C48.vegetation_greenness.tileX.nc'" +export FNSLPC="'C48.slope_type.tileX.nc'" +export FNABSC="'C48.maximum_snow_albedo.tileX.nc'" +export FNSMCC="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH="'global_slmask.t62.192.94.grb'" + +# resolution dependent setting +export CDMBWD=${CDMBWD_c48} +export DT_INNER=${DT_ATMOS} + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +# no aero, no waves +export CPLCHM=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False +export eps_imesh=4.0e-1 + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c96_p8 b/tests/tests/cpld_restart_c96_p8 deleted file mode 100644 index c3129a9608..0000000000 --- a/tests/tests/cpld_restart_c96_p8 +++ /dev/null @@ -1,110 +0,0 @@ -# -# cpld_restart_c96_p8_aero test -# - -export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS system - C96MX100 - P8 restart" - -export CNTL_DIR="cpld_control_c96_p8" - -export LIST_FILES="sfcf024.tile1.nc \ - sfcf024.tile2.nc \ - sfcf024.tile3.nc \ - sfcf024.tile4.nc \ - sfcf024.tile5.nc \ - sfcf024.tile6.nc \ - atmf024.tile1.nc \ - atmf024.tile2.nc \ - atmf024.tile3.nc \ - atmf024.tile4.nc \ - atmf024.tile5.nc \ - atmf024.tile6.nc \ - gocart.inst_aod.20210323_0600z.nc4 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc \ - RESTART/MOM.res.nc \ - RESTART/iced.2021-03-23-21600.nc \ - RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" - -export_fv3 -export_cpl - -export FHROT=12 -export RESTART_N=$((FHMAX-$FHROT)) - -export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" -export RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} + ${SHOUR})))" -export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" - -# ATM warm start -export WARM_START=.true. -export MAKE_NH=.false. -export NA_INIT=0 -export EXTERNAL_IC=.false. -export NGGPS_IC=.false. -export MOUNTAIN=.true. -export NSTF_NAME=2,0,0,0,0 - -# ICE warm start -export CICERUNTYPE=continue -export RUNTYPE=continue -export USE_RESTART_TIME=.true. - -# MOM6 warm start -export MOM6_RESTART_SETTING=r - -export TASKS=$TASKS_cpl_c96 -export INPES=$INPES_cpl_c96 -export JNPES=$JNPES_cpl_c96 -export THRD=$THRD_cpl_c96 -export WRTTASK_PER_GROUP=$WPG_cpl_c96 - -OCN_tasks=$OCN_tasks_cpl_c96 -ICE_tasks=$ICE_tasks_cpl_c96 - -export NPROC_ICE=$ICE_tasks -export np2=`expr $NPROC_ICE / 2` -export BLCKX=`expr $NX_GLB / $np2` -export BLCKY=`expr $NY_GLB / 2` - -export CPLWAV=.false. -export CPLWAV2ATM=.false. -export MOM6_USE_WAVES=False -export eps_imesh=2.5e-1 -export TOPOEDITS=ufs.topo_edits_011818.nc -export MOM6_ALLOW_LANDMASK_CHANGES=True - -export CPLCHM=.true. -export NEMS_CONFIGURE=nems.configure.cpld_aero.IN -export FIELD_TABLE=field_table_thompson_noaero_tke_GOCART - -export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 new file mode 100644 index 0000000000..744d2fbd98 --- /dev/null +++ b/tests/tests/cpld_restart_p8 @@ -0,0 +1,99 @@ +# +# cpld_restart P8 test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-GOCART-MOM6-CICE-CMEPS-WW3 system - C96MX100" + +export CNTL_DIR="cpld_control_p8" + +export LIST_FILES="sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + gocart.inst_aod.20210323_0600z.nc4 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ + 20210323.060000.out_pnt.ww3 \ + 20210323.060000.out_grd.ww3 " + +export_fv3 +export_cpl + +export FHROT=12 +export RESTART_N=$((FHMAX-$FHROT)) + +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${FHROT} + ${SHOUR} )))0000" +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${FHROT}+${SHOUR} )))0000" + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +# Waves +export OUT_BEG=$RUN_BEG +export RST_BEG=$RUN_BEG +export RST_2_BEG=$RUN_BEG + +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export FV3_RUN=cpld_control_run.IN + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 new file mode 100644 index 0000000000..f2db0d69cb --- /dev/null +++ b/tests/tests/cpld_warmstart_c48 @@ -0,0 +1,165 @@ +# +# cpld_warmstart_c48 test +# +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C48MX500 start from model initialization" + +export CNTL_DIR="cpld_warmstart_c48" + +export LIST_FILES="sfcf006.tile1.nc \ + sfcf006.tile2.nc \ + sfcf006.tile3.nc \ + sfcf006.tile4.nc \ + sfcf006.tile5.nc \ + sfcf006.tile6.nc \ + atmf006.tile1.nc \ + atmf006.tile2.nc \ + atmf006.tile3.nc \ + atmf006.tile4.nc \ + atmf006.tile5.nc \ + atmf006.tile6.nc \ + RESTART/20210323.120000.coupler.res \ + RESTART/20210323.120000.fv_core.res.nc \ + RESTART/20210323.120000.fv_core.res.tile1.nc \ + RESTART/20210323.120000.fv_core.res.tile2.nc \ + RESTART/20210323.120000.fv_core.res.tile3.nc \ + RESTART/20210323.120000.fv_core.res.tile4.nc \ + RESTART/20210323.120000.fv_core.res.tile5.nc \ + RESTART/20210323.120000.fv_core.res.tile6.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.120000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.120000.fv_tracer.res.tile1.nc \ + RESTART/20210323.120000.fv_tracer.res.tile2.nc \ + RESTART/20210323.120000.fv_tracer.res.tile3.nc \ + RESTART/20210323.120000.fv_tracer.res.tile4.nc \ + RESTART/20210323.120000.fv_tracer.res.tile5.nc \ + RESTART/20210323.120000.fv_tracer.res.tile6.nc \ + RESTART/20210323.120000.phy_data.tile1.nc \ + RESTART/20210323.120000.phy_data.tile2.nc \ + RESTART/20210323.120000.phy_data.tile3.nc \ + RESTART/20210323.120000.phy_data.tile4.nc \ + RESTART/20210323.120000.phy_data.tile5.nc \ + RESTART/20210323.120000.phy_data.tile6.nc \ + RESTART/20210323.120000.sfc_data.tile1.nc \ + RESTART/20210323.120000.sfc_data.tile2.nc \ + RESTART/20210323.120000.sfc_data.tile3.nc \ + RESTART/20210323.120000.sfc_data.tile4.nc \ + RESTART/20210323.120000.sfc_data.tile5.nc \ + RESTART/20210323.120000.sfc_data.tile6.nc \ + RESTART/20210323.120000.MOM.res.nc \ + RESTART/iced.2021-03-23-43200.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc" + +export_fv3 +export_cpl + +export SYEAR=2021 +export SMONTH=03 +export SDAY=23 +export SHOUR=06 +export SECS=`expr $SHOUR \* 3600` + +export DAYS=0.25 +export FHMAX=6 + +export FHROT=0 +export RESTART_N=1 +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH="3 -1" +export FHZERO=3 + +export INPES=$INPES_cpl_c48 +export JNPES=$JNPES_cpl_c48 +export atm_omp_num_threads=$THRD_cpl_c48 +export WRTTASK_PER_GROUP=$WPG_cpl_c48 +export OUTPUT_GRID='cubed_sphere_grid' + +export WAV_tasks=0 +export CHM_tasks=0 +OCN_tasks=$OCN_tasks_cpl_c48 +ICE_tasks=$ICE_tasks_cpl_c48 + +# atm/ocn/ice resolution +export ATMRES=C48 +export NPX=49 +export NPY=49 +export IMO=192 +export JMO=94 +export ATMTILESIZE=`expr $NPX - 1` + +export OCNRES=500 +export ICERES=5.00 +export NX_GLB=72 +export NY_GLB=35 +export NPROC_ICE=$ICE_tasks +export CICE_DECOMP=slenderX1 +export BLCKX=`expr $NX_GLB / $NPROC_ICE` +export BLCKY=$NY_GLB + +# set component and coupling timesteps +export DT_ATMOS=1200 +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6=3600 +export DT_THERM_MOM6=3600 + +# nems.configure +export coupling_interval_slow_sec=${DT_THERM_MOM6} +export coupling_interval_fast_sec=${DT_ATMOS} + +# resolution dependent files +export MOM_INPUT=MOM_input_template_${OCNRES} +export MESHOCN_ICE=mesh.mx${OCNRES}.nc +export CICEGRID=grid_cice_NEMS_mx${OCNRES}.nc +export CICEMASK=kmtu_cice_NEMS_mx${OCNRES}.nc +export CHLCLIM='' +export FRUNOFF='' +export MOM6_RIVER_RUNOFF=False + +export FNALBC="'C48.snowfree_albedo.tileX.nc'" +export FNALBC2="'C48.facsf.tileX.nc'" +export FNTG3C="'C48.substrate_temperature.tileX.nc'" +export FNVEGC="'C48.vegetation_greenness.tileX.nc'" +export FNVETC="'C48.vegetation_type.tileX.nc'" +export FNSOTC="'C48.soil_type.tileX.nc'" +export FNVMNC="'C48.vegetation_greenness.tileX.nc'" +export FNVMXC="'C48.vegetation_greenness.tileX.nc'" +export FNSLPC="'C48.slope_type.tileX.nc'" +export FNABSC="'C48.maximum_snow_albedo.tileX.nc'" +export FNSMCC="'global_soilmgldas.statsgo.t92.192.94.grb'" +export FNMSKH="'global_slmask.t62.192.94.grb'" + +# resolution dependent setting +export CDMBWD=${CDMBWD_c48} +export DT_INNER=${DT_ATMOS} + +# ATM warm start +export WARM_START=.true. +export MAKE_NH=.false. +export NA_INIT=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. + +# ICE warm start +export CICERUNTYPE=continue +export RUNTYPE=continue +export USE_RESTART_TIME=.true. + +# MOM6 warm start +export MOM6_RESTART_SETTING=r + +# no aero, no waves +export CPLCHM=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MOM6_USE_WAVES=False +export eps_imesh=4.0e-1 + +export DIAG_TABLE=diag_table_template +export FIELD_TABLE=field_table_thompson_noaero_tke +export NEMS_CONFIGURE=nems.configure.cpld_noaero_nowave.IN + +export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index c287298ec8..4c8a6667fe 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR_3072x1536 - control " export CNTL_DIR="datm_cdeps_3072x1536_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_bulk_cfsr b/tests/tests/datm_cdeps_bulk_cfsr index f398b2f47b..efb7784978 100644 --- a/tests/tests/datm_cdeps_bulk_cfsr +++ b/tests/tests/datm_cdeps_bulk_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - bulk flux test" export CNTL_DIR="datm_cdeps_bulk_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_bulk_gefs b/tests/tests/datm_cdeps_bulk_gefs index f404c4678e..c662a4569d 100644 --- a/tests/tests/datm_cdeps_bulk_gefs +++ b/tests/tests/datm_cdeps_bulk_gefs @@ -6,9 +6,9 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - bulk flux test" export CNTL_DIR="datm_cdeps_bulk_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc\ RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export atm_datamode="GEFS" @@ -18,7 +18,7 @@ export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES='1536x768' -export DATM_SRC="GEFS" +export DATM_SRC="GEFS_NEW" export FILENAME_BASE='gefs.' export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" diff --git a/tests/tests/datm_cdeps_ciceC_cfsr b/tests/tests/datm_cdeps_ciceC_cfsr new file mode 100644 index 0000000000..43f76ef2ed --- /dev/null +++ b/tests/tests/datm_cdeps_ciceC_cfsr @@ -0,0 +1,24 @@ +# +# DATM_CDEPS_MOM6_CICE_CMEPS_CFSR test +# + +export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - CICE-C-grid" + +export CNTL_DIR="datm_cdeps_ciceC_cfsr" + +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ + RESTART/iced.2011-10-02-00000.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + +export_datm_cdeps +export DATM_SRC="CFSR" +export FILENAME_BASE='cfsr.' +export IATM=1760 +export JATM=880 +export RESTART_N=12 +export eps_imesh='2.5e-1' +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export GRIDICE=C + +export FV3_RUN=cpld_datm_cdeps.IN diff --git a/tests/tests/datm_cdeps_control_cfsr b/tests/tests/datm_cdeps_control_cfsr index 11835d5555..b326a959c0 100644 --- a/tests/tests/datm_cdeps_control_cfsr +++ b/tests/tests/datm_cdeps_control_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - control " export CNTL_DIR="datm_cdeps_control_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_control_gefs b/tests/tests/datm_cdeps_control_gefs index 108b11142f..7ea140ecbf 100644 --- a/tests/tests/datm_cdeps_control_gefs +++ b/tests/tests/datm_cdeps_control_gefs @@ -6,9 +6,9 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - control" export CNTL_DIR="datm_cdeps_control_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export atm_datamode="GEFS" @@ -19,7 +19,7 @@ export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES='1536x768' -export DATM_SRC="GEFS" +export DATM_SRC="GEFS_NEW" export FILENAME_BASE='gefs.' export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" diff --git a/tests/tests/datm_cdeps_debug_cfsr b/tests/tests/datm_cdeps_debug_cfsr index 62868e2e4a..fb8b01a13e 100644 --- a/tests/tests/datm_cdeps_debug_cfsr +++ b/tests/tests/datm_cdeps_debug_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - debug test" export CNTL_DIR="datm_cdeps_debug_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111001.060000.MOM.res.nc \ RESTART/iced.2011-10-01-21600.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc" diff --git a/tests/tests/datm_cdeps_gfs b/tests/tests/datm_cdeps_gfs index f2dfaa0a1c..6014d99472 100644 --- a/tests/tests/datm_cdeps_gfs +++ b/tests/tests/datm_cdeps_gfs @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GFS - control " export CNTL_DIR="datm_cdeps_gfs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc" diff --git a/tests/tests/datm_cdeps_iau_gefs b/tests/tests/datm_cdeps_iau_gefs index 3d2c947a17..5fa500e6be 100644 --- a/tests/tests/datm_cdeps_iau_gefs +++ b/tests/tests/datm_cdeps_iau_gefs @@ -6,9 +6,9 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - iau" export CNTL_DIR="datm_cdeps_iau_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export atm_datamode="GEFS" @@ -20,7 +20,7 @@ export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES='1536x768' -export DATM_SRC="GEFS" +export DATM_SRC="GEFS_NEW" export FILENAME_BASE='gefs.' export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" diff --git a/tests/tests/datm_cdeps_lnd_gswp3 b/tests/tests/datm_cdeps_lnd_gswp3 new file mode 100644 index 0000000000..a05e435248 --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_gswp3 @@ -0,0 +1,57 @@ +# +# DATM_CDEPS_NOAHMP_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3 - control " + +export CNTL_DIR="datm_cdeps_lnd_gswp3" + +export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc" + +export_datm_cdeps + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=00 + +export DATM_IN_CONFIGURE=datm_in +export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" +export atm_datamode="CLMNCEP" +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="noahmp" +export CPLMODE="nems_orig_data" +export RUNTYPE="startup" +export READRESTART=.false. +export ATM_compute_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_lnd_gswp3_rst b/tests/tests/datm_cdeps_lnd_gswp3_rst new file mode 100644 index 0000000000..8c91f1e2aa --- /dev/null +++ b/tests/tests/datm_cdeps_lnd_gswp3_rst @@ -0,0 +1,62 @@ +# +# DATM_CDEPS_NOAHMP_GSWP test +# + +export TEST_DESCR="DATM_CDEPS_NOAHMP_GSWP3_RST - control restart" + +export CNTL_DIR="datm_cdeps_lnd_gswp3" + +export LIST_FILES="ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc \ + ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc" + +export_datm_cdeps + +export SYEAR=2000 +export SMONTH=01 +export SDAY=01 +export SHOUR=12 +export FHMAX=12 +export FHROT=0 + +export DATM_IN_CONFIGURE=datm_in +export MESH_ATM="INPUT_DATM/fv1.9x2.5_141008_ESMFmesh.nc" +export atm_datamode="CLMNCEP" +export ATM_NX_GLB=144 +export ATM_NY_GLB=96 + +export DATM_STREAM_CONFIGURE=datm.streams.multi.IN +export MESH_ATM_DATA="INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.SCRIP.210520_ESMFmesh.nc" +export MESH_ATM_TOPO="INPUT_DATM/topodata_0.9x1.SCRIP.210520_ESMFmesh.nc" +export SDATE=1999 +export EDATE=2000 +export DATA_ATM01="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Solr.2000-01.nc\"" +export DATA_ATM02="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.Prec.2000-01.nc\"" +export DATA_ATM03="\"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.1999-12.nc\" \"INPUT_DATM/clmforc.GSWP3.c2011.0.5x0.5.TPQWL.2000-01.nc\"" +export DATA_ATM04="\"INPUT_DATM/topodata_0.9x1.25_USGS_070110_stream_c151201.nc\"" + +export NEMS_CONFIGURE="nems.configure.atm_lnd.IN" +export med_model="cmeps" +export atm_model="datm" +export lnd_model="noahmp" +export CPLMODE="nems_orig_data" +export RUNTYPE="continue" +export READRESTART=.false. +export ATM_compute_tasks=144 +export OCN_tasks=0 +export ICE_tasks=0 +export LND_tasks=144 +export lnd_ic_type='custom' +export CALC_SNET=.true. +export layout_x=3 +export layout_y=8 +export mosaic_file="INPUT/C96_mosaic.nc" +export coupling_interval_sec=3600 +export TOPOEDITS="" +export WARM_START=.true. + +export RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( (${FHROT}+ ${SHOUR})*3600 )))" +export FV3_RUN="lnd_datm_cdeps_gswp.IN noahmp_run.IN" diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index 535bdd1ca2..9241869609 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -6,10 +6,10 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - 1/4deg ocean+ice" export CNTL_DIR="datm_cdeps_mx025_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ +export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ + RESTART/20111001.120000.MOM.res_1.nc \ + RESTART/20111001.120000.MOM.res_2.nc \ + RESTART/20111001.120000.MOM.res_3.nc \ RESTART/iced.2011-10-01-43200.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" @@ -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 ace9741465..c61b2d9375 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -6,12 +6,12 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - 1/4deg ocean+ice" export CNTL_DIR="datm_cdeps_mx025_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ - RESTART/MOM.res_1.nc \ - RESTART/MOM.res_2.nc \ - RESTART/MOM.res_3.nc \ +export LIST_FILES="RESTART/20111001.120000.MOM.res.nc \ + RESTART/20111001.120000.MOM.res_1.nc \ + RESTART/20111001.120000.MOM.res_2.nc \ + RESTART/20111001.120000.MOM.res_3.nc \ RESTART/iced.2011-10-01-43200.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc" + RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc" export_datm_cdeps export atm_datamode="GEFS" @@ -26,14 +26,12 @@ export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES='1536x768' -export DATM_SRC="GEFS" +export DATM_SRC="GEFS_NEW" export FILENAME_BASE='gefs.' 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/datm_cdeps_restart_cfsr b/tests/tests/datm_cdeps_restart_cfsr index 1dd0c53c42..7b7b4da0f9 100644 --- a/tests/tests/datm_cdeps_restart_cfsr +++ b/tests/tests/datm_cdeps_restart_cfsr @@ -6,7 +6,7 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_CFSR - restart test " export CNTL_DIR="datm_cdeps_control_cfsr" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" diff --git a/tests/tests/datm_cdeps_stochy_gefs b/tests/tests/datm_cdeps_stochy_gefs index 02621d33e0..f93fca91fe 100644 --- a/tests/tests/datm_cdeps_stochy_gefs +++ b/tests/tests/datm_cdeps_stochy_gefs @@ -6,9 +6,9 @@ export TEST_DESCR="DATM_CDEPS-MOM6-CICE-CMEPS_GEFS - stochastic" export CNTL_DIR="datm_cdeps_stochy_gefs" -export LIST_FILES="RESTART/MOM.res.nc \ +export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc" export_datm_cdeps export atm_datamode="GEFS" @@ -19,7 +19,7 @@ export JATM=768 export ATM_NX_GLB=$IATM export ATM_NY_GLB=$JATM export ATMRES='1536x768' -export DATM_SRC="GEFS" +export DATM_SRC="GEFS_NEW" export FILENAME_BASE='gefs.' export mesh_file="gefs_mesh.nc" export MESH_ATM="DATM_INPUT/${mesh_file}" diff --git a/tests/tests/hafs_global_1nest_atm b/tests/tests/hafs_global_1nest_atm index 9ee6061d55..0e705f870a 100644 --- a/tests/tests/hafs_global_1nest_atm +++ b/tests/tests/hafs_global_1nest_atm @@ -19,14 +19,13 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -49,7 +48,7 @@ export DLON_2=0.25 export DLAT_2=0.25 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 diff --git a/tests/tests/hafs_global_multiple_4nests_atm b/tests/tests/hafs_global_multiple_4nests_atm index 809f61fba9..6dac3d6d45 100644 --- a/tests/tests/hafs_global_multiple_4nests_atm +++ b/tests/tests/hafs_global_multiple_4nests_atm @@ -13,11 +13,16 @@ export LIST_FILES="atmf006.nc \ atm.nest02.f006.nc \ sfc.nest02.f006.nc \ atm.nest03.f006.nc \ - atm.nest03.f006.nc \ - sfc.nest04.f006.nc \ + sfc.nest03.f006.nc \ + atm.nest04.f006.nc \ sfc.nest04.f006.nc \ atm.nest05.f006.nc \ - sfc.nest05.f006.nc" + sfc.nest05.f006.nc \ + HURPRS.GrbF06 \ + HURPRS.GrbF06.nest02 \ + HURPRS.GrbF06.nest03 \ + HURPRS.GrbF06.nest04 \ + HURPRS.GrbF06.nest05" export_fv3 export_hafs @@ -25,19 +30,20 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 export SYEAR=2020 export WRTTASK_PER_GROUP=60 +export WRITE_DOPOST=.true. +export POSTAPP='hafs' export NTILES=6 export OUTPUT_GRID='global_latlon' @@ -85,7 +91,7 @@ export DLON_5=0.05 export DLAT_5=0.05 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 @@ -173,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 cc5f0eeb42..cffe0f361a 100644 --- a/tests/tests/hafs_global_storm_following_1nest_atm +++ b/tests/tests/hafs_global_storm_following_1nest_atm @@ -19,15 +19,14 @@ 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 export NFHMAX_HF=-1 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -50,7 +49,7 @@ export DLON_2=0.25 export DLAT_2=0.25 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=4 export JNPES=5 diff --git a/tests/tests/hafs_regional_1nest_atm b/tests/tests/hafs_regional_1nest_atm index ee9b6be65f..5563c36217 100644 --- a/tests/tests/hafs_regional_1nest_atm +++ b/tests/tests/hafs_regional_1nest_atm @@ -19,14 +19,13 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -54,7 +53,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm index 0c69ade48c..0e057a77c2 100644 --- a/tests/tests/hafs_regional_atm +++ b/tests/tests/hafs_regional_atm @@ -18,14 +18,13 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -45,7 +44,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn index 31f2da9fca..b372f50f45 100644 --- a/tests/tests/hafs_regional_atm_ocn +++ b/tests/tests/hafs_regional_atm_ocn @@ -22,13 +22,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -46,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 diff --git a/tests/tests/hafs_regional_atm_ocn_wav b/tests/tests/hafs_regional_atm_ocn_wav index c81c236b0b..251dbbaba5 100644 --- a/tests/tests/hafs_regional_atm_ocn_wav +++ b/tests/tests/hafs_regional_atm_ocn_wav @@ -13,7 +13,9 @@ export LIST_FILES="atmf006.nc \ archv.2019_241_06.a \ archs.2019_241_06.a \ out_grd.ww3 \ - out_pnt.ww3" + out_pnt.ww3 \ + 20190829.060000.restart.ww3 \ + ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 export_hafs @@ -22,13 +24,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -46,7 +47,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -88,8 +89,8 @@ export CPLWAV=.true. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export FLD_DT="10800" -export PNT_DT="10800" +export DTFLD="10800" +export DTPNT="10800" export GOFILETYPE="" export POFILETYPE="" export UNIPOINTS='ww3' diff --git a/tests/tests/hafs_regional_atm_thompson_gfdlsf b/tests/tests/hafs_regional_atm_thompson_gfdlsf index b71656e183..530d7c8683 100644 --- a/tests/tests/hafs_regional_atm_thompson_gfdlsf +++ b/tests/tests/hafs_regional_atm_thompson_gfdlsf @@ -17,14 +17,14 @@ 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 export NFHMAX_HF=-1 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -34,7 +34,7 @@ export WRTTASK_PER_GROUP=60 export OUTPUT_GRID='cubed_sphere_grid' export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_thompson_tedmf_gfdlsf" +export CCPP_SUITE="FV3_HAFS_v1_thompson_tedmf_gfdlsf" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 diff --git a/tests/tests/hafs_regional_atm_wav b/tests/tests/hafs_regional_atm_wav index 1f9b1da19c..73830aba29 100644 --- a/tests/tests/hafs_regional_atm_wav +++ b/tests/tests/hafs_regional_atm_wav @@ -11,7 +11,9 @@ export CNTL_DIR=hafs_regional_atm_wav export LIST_FILES="atmf006.nc \ sfcf006.nc \ out_grd.ww3 \ - out_pnt.ww3" + out_pnt.ww3 \ + 20190829.060000.restart.ww3 \ + ufs.hafs.cpl.r.2019-08-29-21600.nc" export_fv3 export_hafs @@ -20,13 +22,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -44,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 @@ -86,8 +87,10 @@ export CPLWAV=.true. export CPLWAV2ATM=.true. export CPL_IMP_MRG=.true. -export FLD_DT="10800" -export PNT_DT="10800" +# shel.inp +export INPUT_CURFLD='F F Currents' +export DTFLD="10800" +export DTPNT="10800" export GOFILETYPE="" export POFILETYPE="" export OUTPARS_WAV="WND HS T01 T02 DIR FP DP PHS PTP PDIR UST CHA USP" 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 be6378ca7f..f57dff0fab 100644 --- a/tests/tests/hafs_regional_docn +++ b/tests/tests/hafs_regional_docn @@ -22,13 +22,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -46,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst index a20e3659cc..457172714e 100644 --- a/tests/tests/hafs_regional_docn_oisst +++ b/tests/tests/hafs_regional_docn_oisst @@ -22,13 +22,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=29 export SHOUR=00 export SMONTH=08 @@ -46,7 +45,7 @@ export DLON=0.1 export DLAT=0.1 export BLOCKSIZE=40 -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=20 export JNPES=12 diff --git a/tests/tests/hafs_regional_specified_moving_1nest_atm b/tests/tests/hafs_regional_specified_moving_1nest_atm index e01ae2eec8..7b66095f09 100644 --- a/tests/tests/hafs_regional_specified_moving_1nest_atm +++ b/tests/tests/hafs_regional_specified_moving_1nest_atm @@ -11,7 +11,9 @@ export CNTL_DIR=hafs_regional_specified_moving_1nest_atm export LIST_FILES="atmf006.nc \ sfcf006.nc \ atm.nest02.f006.nc \ - sfc.nest02.f006.nc" + sfc.nest02.f006.nc \ + HURPRS.GrbF06 \ + HURPRS.GrbF06.nest02" export_fv3 export_hafs @@ -19,19 +21,20 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 export SYEAR=2020 export WRTTASK_PER_GROUP=60 +export WRITE_DOPOST=.true. +export POSTAPP='hafs' export OUTPUT_GRID='rotated_latlon' export CEN_LON=-86.3 @@ -50,7 +53,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm b/tests/tests/hafs_regional_storm_following_1nest_atm index a22a026c57..4ed5495ad6 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm +++ b/tests/tests/hafs_regional_storm_following_1nest_atm @@ -19,14 +19,13 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -50,7 +49,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn index a4dcff5725..d1fe55ad09 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn @@ -22,19 +22,17 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" 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 @@ -53,7 +51,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -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_debug b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug new file mode 100644 index 0000000000..3c2330bf76 --- /dev/null +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_debug @@ -0,0 +1,136 @@ +############################################################################### +# +# HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled with HYCOM +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional with 1 storm-following moving nest and atmosphere-ocean coupled results with previous trunk version" + +export CNTL_DIR=hafs_regional_storm_following_1nest_atm_ocn_debug + +export LIST_FILES="atmf001.nc \ + sfcf001.nc \ + atm.nest02.f001.nc \ + sfc.nest02.f001.nc" + +export_fv3 +export_hafs +export_hafs_regional + +export HAFS=true +export FHMAX=1 +export RESTART_N=${FHMAX} +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=1 +export NFHOUT=1 +export OUTPUT_FILE="'netcdf' 'netcdf'" +export SDAY=25 +export SHOUR=12 +export SMONTH=08 +export SYEAR=2020 +export WRTTASK_PER_GROUP=120 + +export OUTPUT_GRID='regional_latlon' +export CEN_LON=-86.3 +export CEN_LAT=23.3 +export LON1=-131.30 +export LAT1=-16.70 +export LON2=-41.30 +export LAT2=63.30 +export DLON=0.25 +export DLAT=0.25 + +export OUTPUT_GRID_2='regional_latlon_moving' +export IMO_2=501 +export JMO_2=501 +export DLON_2=0.1 +export DLAT_2=0.1 + +export BLOCKSIZE=${BLOCKSIZE:-24} +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" +export DEFLATE_LEVEL=-1 +export INPES=6 +export JNPES=10 +export NPX=241 +export NPY=241 +export NPZ=64 +export NPZP=$(($NPZ + 1)) +export K_SPLIT=4 +export N_SPLIT=5 +export NWAT=6 +export NA_INIT=1 +export EXTERNAL_IC=.true. +export NGGPS_IC=.true. +export MOUNTAIN=.false. +export WARM_START=.false. +export TARGET_LAT="23.3" +export TARGET_LON="-86.3" +export STRETCH_FAC=1.0001 +export REGIONAL=.true. +export BC_UPDATE_INTERVAL=3 +export NROWS_BLEND=10 +export FULL_ZS_FILTER=.false. +export N_ZS_FILTER=0 + +export GRID_PES="60,60" +export TILE_COARSE="0,1" +export NUM_TILE_TOP=1 +export NEST_REFINE="0,3" +export NEST_IOFFSETS="999,61" +export NEST_JOFFSETS="999,61" +export IS_MOVING_NEST=".false.,.true." +export VORTEX_TRACKER="0,7" +export NTRACK="0,5" +export MOVE_CD_X="0,0" +export MOVE_CD_Y="0,0" + +export INPES_NEST02=6 +export JNPES_NEST02=10 +export NPX_NEST02=361 +export NPY_NEST02=361 +export K_SPLIT_NEST02=4 +export N_SPLIT_NEST02=5 + +export FHCYC=0 +export FHSWR=1800 +export FHLWR=1800 +export NSTF_NAME=0,0,0,0,0 +export CPLFLX=.true. +export CPLOCN2ATM=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPL_IMP_MRG=.true. + +# nems.configure +export med_model=cmeps +export CAP_DBUG_FLAG=0 +export RESTART_N=${FHMAX} +export CPLMODE=hafs +export RUNTYPE=startup +export USE_COLDSTART=false + +export CDEPS_DOCN=false +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" + +export FIELD_TABLE=field_table_hafs +export DIAG_TABLE=diag_table_hafs_template +export INPUT_NML=input_regional_hafs.nml.IN +export INPUT_NEST02_NML=input_nest_hafs.nml.IN +export MODEL_CONFIGURE="model_configure_hafs.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export FV3_RUN="hafs_fv3_run.IN hycom_hat10_run.IN" 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 1a9af0ddaa..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,14 +24,12 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -59,7 +57,7 @@ export DLON_2=0.1 export DLAT_2=0.1 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf_nonsst" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf_nonsst" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 @@ -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 @@ -115,8 +111,8 @@ export CPLWAV=.true. export CPLWAV2ATM=.false. export CPL_IMP_MRG=.true. -export FLD_DT="10800" -export PNT_DT="10800" +export DTFLD="10800" +export DTPNT="10800" export GOFILETYPE="" export POFILETYPE="" export UNIPOINTS='ww3' @@ -125,7 +121,7 @@ export WW3GRIDLINE="'ww3' 'no' 'no' 'CPL:native' 'no' 'no' 'no' 'no' 'no' 'no' export WW3RSTDTHR=${FHMAX} export DT_2_RST="$(printf "%02d" $(( ${WW3RSTDTHR}*3600 )))" export RUN_BEG="${SYEAR}${SMONTH}${SDAY} $(printf "%02d" $(( ${SHOUR} )))0000" -export RUN_END="20200825 120000" +export RUN_END="20200825 180000" export OUT_BEG=$RUN_BEG export OUT_END=$RUN_END export RST_BEG=$RUN_BEG @@ -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 9afbb7e4eb..033769df84 100644 --- a/tests/tests/hafs_regional_telescopic_2nests_atm +++ b/tests/tests/hafs_regional_telescopic_2nests_atm @@ -21,14 +21,13 @@ 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 export NFHOUT_HF=3 export NFHOUT=3 -export OUTPUT_FILE="'netcdf_parallel' 'netcdf'" +export OUTPUT_FILE="'netcdf' 'netcdf'" export SDAY=25 export SHOUR=12 export SMONTH=08 @@ -66,7 +65,7 @@ export DLON_3=0.05 export DLAT_3=0.05 export BLOCKSIZE=${BLOCKSIZE:-24} -export CCPP_SUITE="FV3_HAFS_v0_gfdlmp_tedmf" +export CCPP_SUITE="FV3_HAFS_v1_gfdlmp_tedmf" export DEFLATE_LEVEL=-1 export INPES=6 export JNPES=10 diff --git a/tests/tests/hrrr_control b/tests/tests/hrrr_control index 7d5783645e..1e47a413f2 100644 --- a/tests/tests/hrrr_control +++ b/tests/tests/hrrr_control @@ -9,49 +9,49 @@ export TEST_DESCR="Compare HRRR results with previous trunk version" export CNTL_DIR=hrrr_control export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -61,21 +61,22 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_HRRR export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export SFCLAY_COMPUTE_FLUX=.true. +export LKM=1 export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. @@ -90,6 +91,7 @@ export DO_DEEP=.false. export SHAL_CNV=.false. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads new file mode 100644 index 0000000000..be17532b24 --- /dev/null +++ b/tests/tests/hrrr_control_2threads @@ -0,0 +1,112 @@ +############################################################################### +# +# HRRR control with 2 threads test +# +############################################################################### + +export TEST_DESCR="Compare HRRR with 2 threads results with control test" + +export CNTL_DIR=hrrr_control + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 new file mode 100644 index 0000000000..cfecbb0a2c --- /dev/null +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -0,0 +1,113 @@ +############################################################################### +# +# HRRR control with 2 threads test +# +############################################################################### + +export TEST_DESCR="Compare HRRR with 2 threads results with control test" + +export CNTL_DIR=hrrr_control_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=12 + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_debug b/tests/tests/hrrr_control_debug new file mode 100644 index 0000000000..7067153aff --- /dev/null +++ b/tests/tests/hrrr_control_debug @@ -0,0 +1,66 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR debug results with previous trunk version" + +export CNTL_DIR=hrrr_control_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export OUTPUT_FH='0 1' +export FHMAX=1 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_debug_dyn32_phy32 b/tests/tests/hrrr_control_debug_dyn32_phy32 new file mode 100644 index 0000000000..7a2438e435 --- /dev/null +++ b/tests/tests/hrrr_control_debug_dyn32_phy32 @@ -0,0 +1,66 @@ +############################################################################## +# +# HRRR debug control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR debug results with previous trunk version" + +export CNTL_DIR=hrrr_control_debug_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export OUTPUT_FH='0 1' +export FHMAX=1 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_decomp b/tests/tests/hrrr_control_decomp new file mode 100644 index 0000000000..77b89a3475 --- /dev/null +++ b/tests/tests/hrrr_control_decomp @@ -0,0 +1,110 @@ +############################################################################### +# +# HRRR control test with different PEs +# +############################################################################### + +export TEST_DESCR="Compare HRRR decomp results with control" + +export CNTL_DIR=hrrr_control + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' + +export INPES=6 +export JNPES=4 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_decomp_dyn32_phy32 b/tests/tests/hrrr_control_decomp_dyn32_phy32 new file mode 100644 index 0000000000..f7837892e4 --- /dev/null +++ b/tests/tests/hrrr_control_decomp_dyn32_phy32 @@ -0,0 +1,111 @@ +############################################################################### +# +# HRRR control test with different PEs +# +############################################################################### + +export TEST_DESCR="Compare HRRR decomp results with control" + +export CNTL_DIR=hrrr_control_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=12 + +export INPES=6 +export JNPES=4 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_dyn32_phy32 b/tests/tests/hrrr_control_dyn32_phy32 new file mode 100644 index 0000000000..aee729a131 --- /dev/null +++ b/tests/tests/hrrr_control_dyn32_phy32 @@ -0,0 +1,108 @@ +############################################################################### +# +# HRRR control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare HRRR results with previous trunk version" + +export CNTL_DIR=hrrr_control_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=12 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export SFCLAY_COMPUTE_FLUX=.true. +export LHEATSTRG=.false. +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_restart b/tests/tests/hrrr_control_restart new file mode 100644 index 0000000000..9292f6e8fa --- /dev/null +++ b/tests/tests/hrrr_control_restart @@ -0,0 +1,106 @@ +############################################################################### +# +# HRRR restart test +# +############################################################################### + +export TEST_DESCR="Compare HRRR restart results with control" + +export CNTL_DIR=hrrr_control + +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FHROT=6 + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" + +export SFCLAY_COMPUTE_FLUX=.true. + +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/hrrr_control_restart_dyn32_phy32 b/tests/tests/hrrr_control_restart_dyn32_phy32 new file mode 100644 index 0000000000..a10379c088 --- /dev/null +++ b/tests/tests/hrrr_control_restart_dyn32_phy32 @@ -0,0 +1,107 @@ +############################################################################### +# +# HRRR restart test +# +############################################################################### + +export TEST_DESCR="Compare HRRR restart results with control" + +export CNTL_DIR=hrrr_control_dyn32_phy32 + +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12 \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FHROT=6 +export FHMAX=12 + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" + +export SFCLAY_COMPUTE_FLUX=.true. +export LHEATSTRG=.false. +export LKM=1 +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/merra2_thompson b/tests/tests/merra2_thompson new file mode 100644 index 0000000000..c401e83d2f --- /dev/null +++ b/tests/tests/merra2_thompson @@ -0,0 +1,175 @@ +############################################################################### +# +# Global control test GFSv16 atmosphere only at C96L127, P8 configuration +# +############################################################################### + +export TEST_DESCR="Compare global control merra2 thompson results with previous trunk version" + +export CNTL_DIR=merra2_thompson + +export LIST_FILES="sfcf000.nc \ + sfcf021.nc \ + sfcf024.nc \ + atmf000.nc \ + atmf021.nc \ + atmf024.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF21 \ + GFSFLX.GrbF24 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF21 \ + GFSPRS.GrbF24 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=600 +export DT_INNER=${DT_ATMOS} +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="12 -1" +export OUTPUT_GRID='gaussian_grid' +export WRITE_DOPOST=.true. +export OUTPUT_FH='0 21 24' + +# P7 default +export IALB=2 +export IEMS=2 +export LSM=2 +export IOPT_DVEG=4 +export IOPT_CRS=2 +export IOPT_RAD=3 +export IOPT_ALB=1 +export IOPT_STC=3 +# P8 +export IOPT_SFC=3 +export IOPT_TRS=2 + +# FV3 P7 settings +export D2_BG_K1=0.20 +export D2_BG_K2=0.04 +export PSM_BC=1 +# P8 +export DDDMP=0.1 + +# P7 Merra2 Aerosols & NSST +export USE_MERRA2=.true. +export LTAEROSOL=.false. +export MRAEROSOL=.true. +export IAER=1011 +export NSTF_NAME=2,1,0,0,0 + +export LHEATSTRG=.false. +export LSEASPRAY=.true. + +# P7 UGWP1 +export GWD_OPT=2 +export DO_UGWP_V1=.false. +export KNOB_UGWP_VERSION=0 +export KNOB_UGWP_NSLOPE=1 +export DO_UGWP_V0=.true. +export DO_GSL_DRAG_LS_BL=.false. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.false. +export DO_UGWP_V1_OROG_ONLY=.false. +export DO_UGWP_V0_NST_ONLY=.false. +export LDIAG_UGWP=.false. + +# P7 CA +export DO_CA=.true. +export CA_SGS=.true. +export CA_GLOBAL=.false. +export NCA=1 +export NCELLS=5 +export NLIVES=12 +export NTHRESH=18 +export NSEED=1 +export NFRACSEED=0.5 +export CA_TRIGGER=.true. +export NSPINUP=1 +export ISEED_CA=12345 + +# P7 settings +export TILEDFIX=.true. +export FNALBC="'C96.snowfree_albedo.tileX.nc'" +export FNALBC2="'C96.facsf.tileX.nc'" +export FNTG3C="'C96.substrate_temperature.tileX.nc'" +export FNVEGC="'C96.vegetation_greenness.tileX.nc'" +export FNVETC="'C96.vegetation_type.tileX.nc'" +export FNSOTC="'C96.soil_type.tileX.nc'" +export FNSMCC=${FNSMCC_control} +export FNMSKH=${FNMSKH_control} +export FNVMNC="'C96.vegetation_greenness.tileX.nc'" +export FNVMXC="'C96.vegetation_greenness.tileX.nc'" +export FNSLPC="'C96.slope_type.tileX.nc'" +export FNABSC="'C96.maximum_snow_albedo.tileX.nc'" +export LANDICE=".false." +export FSICL=0 +export FSICS=0 + +export IMP_PHYSICS=8 +export LGFDLMPRAD=.false. +export DO_SAT_ADJ=.false. +export DNATS=2 +export DZ_MIN=6 + +#required for NML.IN sharing +export MIN_SEAICE=0.15 +export FRAC_GRID=.true. +export MOM6_RESTART_SETTING=n +# P8 (not used for standalone) +export USE_CICE_ALB=.false. + +export WRITE_NSFLIP=.true. + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v17_p8 +export FIELD_TABLE=field_table_mr2 +export DIAG_TABLE=diag_table_mr2 +# use same namelist for standalone,coupled P7 +export INPUT_NML=merra2_thompson.nml.IN + +# RRTMGP +export DO_RRTMGP=.false. +export DOGP_CLDOPTICS_LUT=.true. +export DOGP_LWSCAT=.true. +export DOGP_SGS_CNV=.true. + +if [[ $MACHINE_ID = cheyenne.* ]]; then + TPN=18 +fi diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index ddc201e882..4b63c36c2c 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -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 @@ -78,8 +77,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 new file mode 100644 index 0000000000..ffbc7318cf --- /dev/null +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -0,0 +1,108 @@ +############################################################################### +# +# RAP control with 2 threads test +# +############################################################################### + +export TEST_DESCR="Compare RAP control with 2 threads results with control test" + +export CNTL_DIR=rap_control_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=24 + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_cires_ugwp_debug b/tests/tests/rap_cires_ugwp_debug index de53dcfeaf..5ec257675d 100644 --- a/tests/tests/rap_cires_ugwp_debug +++ b/tests/tests/rap_cires_ugwp_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_cires_ugwp export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_control b/tests/tests/rap_control index f1e6ebc324..6d62bec12c 100644 --- a/tests/tests/rap_control +++ b/tests/tests/rap_control @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -72,8 +72,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_control_debug b/tests/tests/rap_control_debug index ec63751206..2a98c31adf 100644 --- a/tests/tests/rap_control_debug +++ b/tests/tests/rap_control_debug @@ -32,8 +32,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_rrtmgp_debug b/tests/tests/rap_control_debug_dyn32_phy32 similarity index 76% rename from tests/tests/rap_rrtmgp_debug rename to tests/tests/rap_control_debug_dyn32_phy32 index e9b11e609f..0b03e91689 100644 --- a/tests/tests/rap_rrtmgp_debug +++ b/tests/tests/rap_control_debug_dyn32_phy32 @@ -1,12 +1,12 @@ ############################################################################### # -# RAP with RRTMGP debug test: atmosphere only at C96L127 in debug mode +# RAP debug test: atmosphere only at C96L127 in debug mode # ############################################################################### -export TEST_DESCR="Compare RAP RRTMGP debug results with previous trunk version" +export TEST_DESCR="Compare RAP debug results with previous trunk version" -export CNTL_DIR=rap_rrtmgp_debug +export CNTL_DIR=rap_control_debug_dyn32_phy32 export LIST_FILES="sfcf000.nc \ sfcf001.nc \ @@ -16,7 +16,7 @@ export LIST_FILES="sfcf000.nc \ export_fv3 export NPZ=127 export NPZP=128 -export DT_ATMOS=150 +export DT_ATMOS=300 export SYEAR=2021 export SMONTH=03 export SDAY=22 @@ -29,9 +29,10 @@ export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -45,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 @@ -58,8 +60,3 @@ export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. -# RRTMGP -export CCPP_SUITE=FV3_RAP_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. diff --git a/tests/tests/rap_control_dyn32_phy32 b/tests/tests/rap_control_dyn32_phy32 new file mode 100644 index 0000000000..7f115435cc --- /dev/null +++ b/tests/tests/rap_control_dyn32_phy32 @@ -0,0 +1,103 @@ +############################################################################### +# +# RAP control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP control results with previous trunk version" + +export CNTL_DIR=rap_control_dyn32_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=24 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_control_dyn64_phy32 b/tests/tests/rap_control_dyn64_phy32 new file mode 100644 index 0000000000..3b979124de --- /dev/null +++ b/tests/tests/rap_control_dyn64_phy32 @@ -0,0 +1,103 @@ +############################################################################### +# +# RAP control test: atmosphere only at C96L127 +# +############################################################################### + +export TEST_DESCR="Compare RAP control results with previous trunk version" + +export CNTL_DIR=rap_control_dyn64_phy32 + +export LIST_FILES="sfcf000.nc \ + sfcf009.nc \ + sfcf012.nc \ + atmf000.nc \ + atmf009.nc \ + atmf012.nc \ + GFSFLX.GrbF00 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF00 \ + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210322.180000.coupler.res \ + RESTART/20210322.180000.fv_core.res.nc \ + RESTART/20210322.180000.fv_core.res.tile1.nc \ + RESTART/20210322.180000.fv_core.res.tile2.nc \ + RESTART/20210322.180000.fv_core.res.tile3.nc \ + RESTART/20210322.180000.fv_core.res.tile4.nc \ + RESTART/20210322.180000.fv_core.res.tile5.nc \ + RESTART/20210322.180000.fv_core.res.tile6.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210322.180000.fv_tracer.res.tile1.nc \ + RESTART/20210322.180000.fv_tracer.res.tile2.nc \ + RESTART/20210322.180000.fv_tracer.res.tile3.nc \ + RESTART/20210322.180000.fv_tracer.res.tile4.nc \ + RESTART/20210322.180000.fv_tracer.res.tile5.nc \ + RESTART/20210322.180000.fv_tracer.res.tile6.nc \ + RESTART/20210322.180000.phy_data.tile1.nc \ + RESTART/20210322.180000.phy_data.tile2.nc \ + RESTART/20210322.180000.phy_data.tile3.nc \ + RESTART/20210322.180000.phy_data.tile4.nc \ + RESTART/20210322.180000.phy_data.tile5.nc \ + RESTART/20210322.180000.phy_data.tile6.nc \ + RESTART/20210322.180000.sfc_data.tile1.nc \ + RESTART/20210322.180000.sfc_data.tile2.nc \ + RESTART/20210322.180000.sfc_data.tile3.nc \ + RESTART/20210322.180000.sfc_data.tile4.nc \ + RESTART/20210322.180000.sfc_data.tile5.nc \ + RESTART/20210322.180000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export RESTART_INTERVAL="6 -1" +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export OUTPUT_FH='0 09 12' +export FHMAX=12 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_progcld_thompson_rrtmgp_debug b/tests/tests/rap_control_dyn64_phy32_debug similarity index 69% rename from tests/tests/rap_progcld_thompson_rrtmgp_debug rename to tests/tests/rap_control_dyn64_phy32_debug index d5cb31f80e..1c2e0b77cd 100644 --- a/tests/tests/rap_progcld_thompson_rrtmgp_debug +++ b/tests/tests/rap_control_dyn64_phy32_debug @@ -1,12 +1,12 @@ ############################################################################### # -# RAP with Thompson's prognostic cloud scheme w/ RRTMGP debug test: atmosphere only at C96L127 in debug mode +# RAP debug test: atmosphere only at C96L127 in debug mode # ############################################################################### -export TEST_DESCR="Compare RAP debug with Thompson's prognostic cloud scheme w/ RRTMGPP results with previous trunk version" +export TEST_DESCR="Compare RAP debug results with previous trunk version" -export CNTL_DIR=rap_progcld_thompson_rrtmgp_debug +export CNTL_DIR=rap_control_debug_dyn64_phy32 export LIST_FILES="sfcf000.nc \ sfcf001.nc \ @@ -29,9 +29,10 @@ export OUTPUT_FH="0 1" #export WRITE_DOPOST=.true. export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -40,17 +41,16 @@ export LRADAR=.true. export LTAEROSOL=.true. export IALB=2 export IEMS=2 -export ICLOUD=3 export HYBEDMF=.false. export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. + export GWD_OPT=3 export DO_UGWP_V0=.false. export DO_UGWP_V0_OROG_ONLY=.false. @@ -60,8 +60,3 @@ export DO_GSL_DRAG_TOFD=.true. export DO_UGWP_V1=.false. export DO_UGWP_V1_OROG_ONLY=.false. -# RRTMGP -export CCPP_SUITE=FV3_RAP_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_decomp b/tests/tests/rap_decomp index 5b82dc7e16..a70eafea0e 100644 --- a/tests/tests/rap_decomp +++ b/tests/tests/rap_decomp @@ -20,38 +20,38 @@ export LIST_FILES="sfcf000.nc \ GFSPRS.GrbF00 \ GFSPRS.GrbF21 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -75,8 +75,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_diag_debug b/tests/tests/rap_diag_debug index d5a4a02cab..747f914acc 100644 --- a/tests/tests/rap_diag_debug +++ b/tests/tests/rap_diag_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_flake_debug b/tests/tests/rap_flake_debug index 5b00e1ab50..39b90e85f1 100644 --- a/tests/tests/rap_flake_debug +++ b/tests/tests/rap_flake_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_flake export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_lndp_debug b/tests/tests/rap_lndp_debug index 276f4033f2..c33a17a728 100644 --- a/tests/tests/rap_lndp_debug +++ b/tests/tests/rap_lndp_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_noah_debug b/tests/tests/rap_noah_debug index b7e37117aa..97963ad660 100644 --- a/tests/tests/rap_noah_debug +++ b/tests/tests/rap_noah_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_noah export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=8 export DNATS=0 @@ -44,6 +44,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=1 export LSOIL_LSM=4 diff --git a/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug b/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug index 520ceb8f25..61744b596f 100644 --- a/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug +++ b/tests/tests/rap_noah_sfcdiff_cires_ugwp_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_noah_sfcdiff_cires_ugwp export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=8 export DNATS=0 @@ -43,6 +43,7 @@ export HYBEDMF=.false. export DO_MYNNEDMF=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=1 export LSOIL_LSM=4 diff --git a/tests/tests/rap_progcld_thompson_debug b/tests/tests/rap_progcld_thompson_debug index 214f34c2de..38474e2956 100644 --- a/tests/tests/rap_progcld_thompson_debug +++ b/tests/tests/rap_progcld_thompson_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -47,6 +47,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_restart b/tests/tests/rap_restart index d00e0f1780..bd1fd04961 100644 --- a/tests/tests/rap_restart +++ b/tests/tests/rap_restart @@ -12,38 +12,38 @@ export LIST_FILES="sfcf024.nc \ atmf024.nc \ GFSFLX.GrbF24 \ GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -70,9 +70,10 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_restart_dyn32_phy32 b/tests/tests/rap_restart_dyn32_phy32 new file mode 100644 index 0000000000..1c18453c5d --- /dev/null +++ b/tests/tests/rap_restart_dyn32_phy32 @@ -0,0 +1,102 @@ +############################################################################### +# +# RAP restart test +# +############################################################################### + +export TEST_DESCR="Compare RAP restart results with control" + +export CNTL_DIR=rap_control_dyn32_phy32 + +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=300 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export WRITE_DOPOST=.true. +export IAER=5111 +export FHROT=6 +export FHMAX=24 + +export WARM_START=.true. +export NGGPS_IC=.false. +export EXTERNAL_IC=.false. +export MAKE_NH=.false. +export MOUNTAIN=.true. +export NA_INIT=0 + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_RAP +export INPUT_NML=rap.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_rap +export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.false. +export LRADAR=.true. +export LTAEROSOL=.true. +export IALB=2 +export IEMS=2 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export IMFSHALCNV=3 +export IMFDEEPCNV=3 +export LHEATSTRG=.false. +export LSM=3 +export LSOIL_LSM=9 +export KICE=9 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + diff --git a/tests/tests/rap_rrtmgp b/tests/tests/rap_rrtmgp deleted file mode 100644 index 04e3e3dbca..0000000000 --- a/tests/tests/rap_rrtmgp +++ /dev/null @@ -1,105 +0,0 @@ -############################################################################### -# -# RAP control test with RRTMGP: atmosphere only at C96L127 -# -############################################################################### - -export TEST_DESCR="Compare RAP control results with previous trunk version" - -export CNTL_DIR=rap_rrtmgp - -export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ - atmf000.nc \ - atmf021.nc \ - atmf024.nc \ - GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" - -export_fv3 -export NPZ=127 -export NPZP=128 -export DT_ATMOS=300 -export SYEAR=2021 -export SMONTH=03 -export SDAY=22 -export SHOUR=06 -export RESTART_INTERVAL="12 -1" -export OUTPUT_GRID='gaussian_grid' -export NSTF_NAME='2,0,0,0,0' -export WRITE_DOPOST=.true. -export IAER=5111 -export OUTPUT_FH='0 21 24' - -export FV3_RUN=control_run.IN -export INPUT_NML=rap.nml.IN -export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap - -export IMP_PHYSICS=8 -export DNATS=0 -export DO_SAT_ADJ=.false. -export LRADAR=.true. -export LTAEROSOL=.true. -export IALB=2 -export IEMS=2 -export HYBEDMF=.false. -export DO_MYNNEDMF=.true. -export DO_MYNNSFCLAY=.true. -export IMFSHALCNV=3 -export IMFDEEPCNV=3 -export LSM=3 -export LSOIL_LSM=9 -export KICE=9 - -export GWD_OPT=3 -export DO_UGWP_V0=.false. -export DO_UGWP_V0_OROG_ONLY=.false. -export DO_GSL_DRAG_LS_BL=.true. -export DO_GSL_DRAG_SS=.true. -export DO_GSL_DRAG_TOFD=.true. -export DO_UGWP_V1=.false. -export DO_UGWP_V1_OROG_ONLY=.false. - -# RRTMGP -export CCPP_SUITE=FV3_RAP_RRTMGP -export DO_RRTMGP=.true. -export DOGP_CLDOPTICS_LUT=.true. -export DOGP_LWSCAT=.true. \ No newline at end of file diff --git a/tests/tests/rap_sfcdiff b/tests/tests/rap_sfcdiff index d9840489a9..3d05397b7b 100644 --- a/tests/tests/rap_sfcdiff +++ b/tests/tests/rap_sfcdiff @@ -9,49 +9,49 @@ export TEST_DESCR="Compare RAP with sfcdiff results with previous trunk version" export CNTL_DIR=rap_sfcdiff export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -61,19 +61,20 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_sfcdiff_debug b/tests/tests/rap_sfcdiff_debug index 11fc2c2b62..f5b0548c0f 100644 --- a/tests/tests/rap_sfcdiff_debug +++ b/tests/tests/rap_sfcdiff_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -45,6 +45,7 @@ export HYBEDMF=.false. export DO_MYNNEDMF=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_sfcdiff_decomp b/tests/tests/rap_sfcdiff_decomp index 82fca4e1c0..e06f4ab50b 100644 --- a/tests/tests/rap_sfcdiff_decomp +++ b/tests/tests/rap_sfcdiff_decomp @@ -9,49 +9,49 @@ export TEST_DESCR="Compare RAP with sfcdiff decomp results with control" export CNTL_DIR=rap_sfcdiff export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -61,12 +61,12 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export INPES=6 export JNPES=4 @@ -75,8 +75,9 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_sfcdiff_restart b/tests/tests/rap_sfcdiff_restart index 7c365bacc3..f73064e6f5 100644 --- a/tests/tests/rap_sfcdiff_restart +++ b/tests/tests/rap_sfcdiff_restart @@ -8,42 +8,42 @@ export TEST_DESCR="Compare RAP with sfcdiff restart results with control" export CNTL_DIR=rap_sfcdiff -export LIST_FILES="sfcf024.nc \ - atmf024.nc \ - GFSFLX.GrbF24 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" +export LIST_FILES="sfcf012.nc \ + atmf012.nc \ + GFSFLX.GrbF12 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -57,7 +57,7 @@ export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export FHROT=12 +export FHROT=6 export WARM_START=.true. export NGGPS_IC=.false. @@ -70,9 +70,10 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_sfcdiff export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( ${SHOUR} + ${FHROT} )))0000" +export LHEATSTRG=.false. export IMP_PHYSICS=8 export DNATS=0 export DO_SAT_ADJ=.false. diff --git a/tests/tests/rap_unified_drag_suite_debug b/tests/tests/rap_unified_drag_suite_debug index 8b47fac214..61f038f9cc 100644 --- a/tests/tests/rap_unified_drag_suite_debug +++ b/tests/tests/rap_unified_drag_suite_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_unified_ugwp export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/rap_unified_ugwp_debug b/tests/tests/rap_unified_ugwp_debug index 428a39d8d1..58d75c66d2 100644 --- a/tests/tests/rap_unified_ugwp_debug +++ b/tests/tests/rap_unified_ugwp_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RAP_unified_ugwp export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap +export DIAG_TABLE=diag_table_rap export IMP_PHYSICS=8 export DNATS=0 @@ -46,6 +46,7 @@ export DO_MYNNEDMF=.true. export DO_MYNNSFCLAY=.true. export IMFSHALCNV=3 export IMFDEEPCNV=3 +export LHEATSTRG=.false. export LSM=3 export LSOIL_LSM=9 export KICE=9 diff --git a/tests/tests/regional_3km b/tests/tests/regional_2dwrtdecomp similarity index 71% rename from tests/tests/regional_3km rename to tests/tests/regional_2dwrtdecomp index 275f6675e7..e8aa94b004 100644 --- a/tests/tests/regional_3km +++ b/tests/tests/regional_2dwrtdecomp @@ -1,12 +1,12 @@ ############################################################################### # -# FV3 regional hi-res 3km test +# FV3 regional 2D write decomposition domain test # ############################################################################### -export TEST_DESCR="Compare FV3 regional hi-res 3km results with previous trunk version" +export TEST_DESCR="Compare FV3 regional 2D write decomposition domain with control test" -export CNTL_DIR=fv3_regional_3km +export CNTL_DIR=regional_control export LIST_FILES="dynf000.nc \ dynf006.nc \ @@ -19,28 +19,28 @@ export LIST_FILES="dynf000.nc \ export_fv3 -export FV3_RUN=regional_3km_run.IN +export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. export HYBEDMF=.false. -export RESTART_INTERVAL="0" +export RESTART_INTERVAL="3 -1" export WRITE_DOPOST=.true. export POSTAPP='lam' export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km -export INPUT_NML=regional_3km.nml.IN -export MODEL_CONFIGURE=model_configure_regional_3km.IN +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam 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" WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 +export ITASKS=2 diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index d48c83c9eb..e705ab6747 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -1,21 +1,21 @@ ############################################################################### # -# FV3 CCPP regional control threading test +# FV3 regional threading test # ############################################################################### export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" -export CNTL_DIR=fv3_regional_control +export CNTL_DIR=regional_control export LIST_FILES="dynf000.nc \ - dynf024.nc \ + dynf006.nc \ phyf000.nc \ - phyf024.nc \ + phyf006.nc \ PRSLEV.GrbF00 \ - PRSLEV.GrbF24 \ + PRSLEV.GrbF06 \ NATLEV.GrbF00 \ - NATLEV.GrbF24" + NATLEV.GrbF06" export_fv3 @@ -28,17 +28,18 @@ export HYBEDMF=.false. export WRITE_DOPOST=.true. export POSTAPP='lam' -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional -export TASKS=68 +export WLCLK=15 +export FHMAX=6 export INPES=10 -export JNPES=6 -export THRD=2 -export OUTPUT_FH="12 -1" +export JNPES=11 +export atm_omp_num_threads=2 +export OUTPUT_FH="3 -1" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq new file mode 100644 index 0000000000..862a6b81b4 --- /dev/null +++ b/tests/tests/regional_atmaq @@ -0,0 +1,99 @@ +############################################################################### +# +# regional aqm test: GFSv15p2 atmosphere with aqm (CMAQ) C96L64 +# +############################################################################### + +export TEST_DESCR="AQM (CMAQ) regional test for comparison of results with previous trunk version" + +export CNTL_DIR=regional_atmaq + +export LIST_FILES="sfcf000.nc \ + sfcf003.nc \ + sfcf006.nc \ + atmf000.nc \ + atmf003.nc \ + atmf006.nc \ + RESTART/20190801.180000.coupler.res \ + RESTART/20190801.180000.fv_core.res.nc \ + RESTART/20190801.180000.fv_core.res.tile1.nc \ + RESTART/20190801.180000.fv_srf_wnd.res.tile1.nc \ + RESTART/20190801.180000.fv_tracer.res.tile1.nc \ + RESTART/20190801.180000.phy_data.nc \ + RESTART/20190801.180000.sfc_data.nc" + +export_fv3 + +export SYEAR=2019 +export SMONTH=08 +export SDAY=1 +export SHOUR=12 +export FHMAX=6 +export DT_ATMOS=180 +export WRTTASK_PER_GROUP=8 +export NSOUT=-1 +export OUTPUT_GRID='lambert_conformal' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export IOVR=3 +export OUTPUT_FH='0 3 6' + +#AQM Specifics +#NPZ input.nml 64 +#DNATS input.nml 4 +#RES_LATLON_DYNAMICS input.nml 'fv3_increment.nc' +#fhzero = 1.0 input.nml +#fhcyc = 0 input.nml +#cdmbgwd = 3.5, 0.25 input.nml +export AQM=.true. +export MAX_OUTPUT_FIELDS=450 +export OUTPUT_GRID='lambert_conformal' +export CEN_LON=-97.5 +export CEN_LAT=38.5 +export LON1=-121.70231097 +export LAT1=22.57417972 +export STDLAT1=38.5 +export STDLAT2=38.5 +export NPX=397 +export NPY=233 +export NX=393 +export NY=225 +export DX=13000.0 +export DY=13000.0 +export FNALBC="'C775.snowfree_albedo.tileX.nc'" +export FNVETC="'C775.vegetation_type.tileX.nc'" +export FNSOTC="'C775.soil_type.tileX.nc'" +export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" + +export INPES=${INPES_aqm} +export JNPES=${JNPES_aqm} +export NTILES=1 +export atm_model='fv3' +export aqm_model='aqm' + +export FIELD_TABLE=field_table_aqm +export DIAG_TABLE=diag_table_aqm +export DNATS=5 +export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', + 'ald2:0.0', 'ald2_primary:0.0', 'aldx:0.0', 'benzene:0.0', + 'butadiene13:0.0', 'cat1:0.0', 'cl2:0.0', 'clno2:0.0', + 'co:0.0', 'cres:0.0', 'cron:0.0', 'ech4:0.0', 'epox:0.0', + 'eth:0.0', 'etha:0.0', 'ethy:0.0', 'etoh:0.0', 'facd:0.0', + 'fmcl:0.0', 'form:0.0', 'form_primary:0.0', 'gly:0.0', + 'glyd:0.0', 'h2o2:0.0', 'hcl:0.0', 'hg:0.0', 'hgiigas:0.0', + 'hno3:0.0', 'hocl:0.0', 'hono:0.0', 'hpld:0.0', 'intr:0.0', + 'iole:0.0', 'isop:0.0', 'ispd:0.0', 'ispx:0.0', 'ket:0.0', + 'meoh:0.0', 'mepx:0.0', 'mgly:0.0', 'n2o5:0.0', 'naph:0.0', + 'no:0.0', 'no2:0.0', 'no3:0.0', 'ntr1:0.0', 'ntr2:0.0', + 'o3:0.0', 'ole:0.0', 'opan:0.0', 'open:0.0', 'opo3:0.0', + 'pacd:0.0', 'pan:0.0', 'panx:0.0', 'par:0.0', 'pcvoc:0.0', + 'pna:0.0', 'prpa:0.0', 'rooh:0.0', 'sesq:0.0', 'so2:0.0', + 'soaalk:0.0', 'sulf:0.0', 'terp:0.0', 'tol:0.0', 'tolu:0.0', + 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', + 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', + 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" +export INPUT_NML="regional_atmaq.nml.IN" +export MODEL_CONFIGURE="model_configure_atmaq.IN" +export NEMS_CONFIGURE="nems.configure.atmaq.IN" +export FV3_RUN="fv3_aqm.IN" +export CCPP_SUITE=FV3_GFS_v15p2 diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug new file mode 100644 index 0000000000..f157901508 --- /dev/null +++ b/tests/tests/regional_atmaq_debug @@ -0,0 +1,97 @@ +############################################################################### +# +# regional aqm test: GFSv15p2 atmosphere with aqm (CMAQ) in DEBUG mode C96L64 +# +############################################################################### + +export TEST_DESCR="AQM (CMAQ) regional test for comparison in debug mode of results with previous trunk version" + +export CNTL_DIR=regional_atmaq_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc \ + RESTART/20190801.130000.coupler.res \ + RESTART/20190801.130000.fv_core.res.nc \ + RESTART/20190801.130000.fv_core.res.tile1.nc \ + RESTART/20190801.130000.fv_srf_wnd.res.tile1.nc \ + RESTART/20190801.130000.fv_tracer.res.tile1.nc \ + RESTART/20190801.130000.phy_data.nc \ + RESTART/20190801.130000.sfc_data.nc" + +export_fv3 + +export SYEAR=2019 +export SMONTH=08 +export SDAY=1 +export SHOUR=12 +export FHMAX=1 +export DT_ATMOS=180 +export WRTTASK_PER_GROUP=8 +export NSOUT=-1 +export OUTPUT_GRID='lambert_conformal' +export NSTF_NAME='2,0,0,0,0' +export IAER=5111 +export IOVR=3 +export OUTPUT_FH='0 1' + +#AQM Specifics +#NPZ input.nml 64 +#DNATS input.nml 4 +#RES_LATLON_DYNAMICS input.nml 'fv3_increment.nc' +#fhzero = 1.0 input.nml +#fhcyc = 0 input.nml +#cdmbgwd = 3.5, 0.25 input.nml +export AQM=.true. +export MAX_OUTPUT_FIELDS=450 +export OUTPUT_GRID='lambert_conformal' +export CEN_LON=-97.5 +export CEN_LAT=38.5 +export LON1=-121.70231097 +export LAT1=22.57417972 +export STDLAT1=38.5 +export STDLAT2=38.5 +export NPX=397 +export NPY=233 +export NX=393 +export NY=225 +export DX=13000.0 +export DY=13000.0 +export FNALBC="'C775.snowfree_albedo.tileX.nc'" +export FNVETC="'C775.vegetation_type.tileX.nc'" +export FNSOTC="'C775.soil_type.tileX.nc'" +export FNABSC="'C775.maximum_snow_albedo.tileX.nc'" + +export INPES=${INPES_aqm} +export JNPES=${JNPES_aqm} +export NTILES=1 +export atm_model='fv3' +export aqm_model='aqm' + +export FIELD_TABLE=field_table_aqm +export DIAG_TABLE=diag_table_aqm +export DNATS=5 +export FSCAV_AERO="'aacd:0.0', 'acet:0.0', 'acrolein:0.0', 'acro_primary:0.0', + 'ald2:0.0', 'ald2_primary:0.0', 'aldx:0.0', 'benzene:0.0', + 'butadiene13:0.0', 'cat1:0.0', 'cl2:0.0', 'clno2:0.0', + 'co:0.0', 'cres:0.0', 'cron:0.0', 'ech4:0.0', 'epox:0.0', + 'eth:0.0', 'etha:0.0', 'ethy:0.0', 'etoh:0.0', 'facd:0.0', + 'fmcl:0.0', 'form:0.0', 'form_primary:0.0', 'gly:0.0', + 'glyd:0.0', 'h2o2:0.0', 'hcl:0.0', 'hg:0.0', 'hgiigas:0.0', + 'hno3:0.0', 'hocl:0.0', 'hono:0.0', 'hpld:0.0', 'intr:0.0', + 'iole:0.0', 'isop:0.0', 'ispd:0.0', 'ispx:0.0', 'ket:0.0', + 'meoh:0.0', 'mepx:0.0', 'mgly:0.0', 'n2o5:0.0', 'naph:0.0', + 'no:0.0', 'no2:0.0', 'no3:0.0', 'ntr1:0.0', 'ntr2:0.0', + 'o3:0.0', 'ole:0.0', 'opan:0.0', 'open:0.0', 'opo3:0.0', + 'pacd:0.0', 'pan:0.0', 'panx:0.0', 'par:0.0', 'pcvoc:0.0', + 'pna:0.0', 'prpa:0.0', 'rooh:0.0', 'sesq:0.0', 'so2:0.0', + 'soaalk:0.0', 'sulf:0.0', 'terp:0.0', 'tol:0.0', 'tolu:0.0', + 'vivpo1:0.0', 'vlvoo1:0.0', 'vlvoo2:0.0', 'vlvpo1:0.0', + 'vsvoo1:0.0', 'vsvoo2:0.0', 'vsvoo3:0.0', 'vsvpo1:0.0', + 'vsvpo2:0.0', 'vsvpo3:0.0', 'xopn:0.0', 'xylmn:0.0', '*:0.2'" +export INPUT_NML="regional_atmaq.nml.IN" +export MODEL_CONFIGURE="model_configure_atmaq.IN" +export NEMS_CONFIGURE="nems.configure.atmaq.IN" +export FV3_RUN="fv3_aqm.IN" +export CCPP_SUITE=FV3_GFS_v15p2 diff --git a/tests/tests/regional_c768 b/tests/tests/regional_c768 deleted file mode 100644 index 9a6d1e97fa..0000000000 --- a/tests/tests/regional_c768 +++ /dev/null @@ -1,30 +0,0 @@ -############################################################################### -# -# FV3 CCPP regional c768 test -# -############################################################################### - -export TEST_DESCR="Compare FV3 CCPP regional c768 results with previous trunk version" - -export CNTL_DIR=fv3_regional_c768 - -export LIST_FILES=" atmos_4xdaily.nc \ - dynf000.nc \ - dynf003.nc \ - phyf000.nc \ - phyf003.nc " -export_fv3 - -export TASKS=480 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. - -export CCPP_SUITE=FV3_GFS_2017_gfdlmp_regional_c768 -export INPUT_NML=regional_c768.nml.IN -export MODEL_CONFIGURE=regional_c768-model_configure.IN -export FV3_RUN=regional_c786_run.IN -NTILES=1 diff --git a/tests/tests/regional_control b/tests/tests/regional_control index 18c0268b7a..98d50028e7 100644 --- a/tests/tests/regional_control +++ b/tests/tests/regional_control @@ -1,21 +1,21 @@ ############################################################################### # -# FV3 regional control test +# FV3 regional control (hi-res 3km, small domain) test # ############################################################################### -export TEST_DESCR="Compare FV3 regional results with previous trunk version" +export TEST_DESCR="Compare FV3 regional control results with previous trunk version" -export CNTL_DIR=fv3_regional_control +export CNTL_DIR=regional_control export LIST_FILES="dynf000.nc \ - dynf024.nc \ + dynf006.nc \ phyf000.nc \ - phyf024.nc \ + phyf006.nc \ PRSLEV.GrbF00 \ - PRSLEV.GrbF24 \ + PRSLEV.GrbF06 \ NATLEV.GrbF00 \ - NATLEV.GrbF24" + NATLEV.GrbF06" export_fv3 @@ -25,20 +25,21 @@ export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. export HYBEDMF=.false. -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="3 -1" export WRITE_DOPOST=.true. export POSTAPP='lam' -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional -export TASKS=68 +export WLCLK=15 +export FHMAX=6 export INPES=10 -export JNPES=6 -export OUTPUT_FH="12 -1" +export JNPES=11 +export OUTPUT_FH="3 -1" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 diff --git a/tests/tests/regional_control_2dwrtdecomp b/tests/tests/regional_control_2dwrtdecomp deleted file mode 100644 index 0a1d939548..0000000000 --- a/tests/tests/regional_control_2dwrtdecomp +++ /dev/null @@ -1,41 +0,0 @@ -############################################################################### -# -# FV3 regional 2D write decomposition domain test -# -############################################################################### - -export TEST_DESCR="Compare FV3 regional 2D write decomposition domain with control test" - -export CNTL_DIR=fv3_regional_control - -export LIST_FILES="dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc" - -export_fv3 - -export FV3_RUN=regional_run.IN - -export OZ_PHYS_OLD=.false. -export OZ_PHYS_NEW=.true. -export H2O_PHYS=.true. -export HYBEDMF=.false. -export RESTART_INTERVAL="12 -1" -export WRITE_DOPOST=.false. -export POSTAPP='lam' - -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn -export INPUT_NML=regional.nml.IN -export MODEL_CONFIGURE=model_configure_regional.IN -export DIAG_TABLE=diag_table_lam -export FIELD_TABLE=field_table_regional - -export TASKS=68 -export INPES=10 -export JNPES=6 -export ITASKS=2 -export OUTPUT_FH="12 -1" -WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 -NTILES=1 diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index d862f219d9..b70749183c 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -6,7 +6,7 @@ export TEST_DESCR="Compare FV3 regional debug results with previous trunk version" -export CNTL_DIR=fv3_regional_debug +export CNTL_DIR=regional_debug export LIST_FILES="dynf000.nc \ dynf001.nc \ @@ -17,26 +17,22 @@ export_fv3 export FV3_RUN=regional_run.IN -export OZ_PHYS_OLD=.F. -export OZ_PHYS_NEW=.T. -export H2O_PHYS=.T. -export HYBEDMF=.F. -export POSTAPP='lam' +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional -export FDIAG=1 +export WLCLK=30 export FHMAX=1 -export TASKS=68 export INPES=10 -export JNPES=6 +export JNPES=11 export OUTPUT_FH="0 1" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 - -export WLCLK=30 diff --git a/tests/tests/regional_decomp b/tests/tests/regional_decomp index e7e4dec646..55566313b2 100644 --- a/tests/tests/regional_decomp +++ b/tests/tests/regional_decomp @@ -1,21 +1,21 @@ ############################################################################### # -# FV3 regional control decomposition test +# FV3 regional different MPI decomposition (hi-res 3km, small domain) test # ############################################################################### -export TEST_DESCR="Compare FV3 CCPP regional decomposition results with previous trunk version" +export TEST_DESCR="Compare FV3 regional different decomposition results with previous trunk version" -export CNTL_DIR=fv3_regional_control +export CNTL_DIR=regional_control export LIST_FILES="dynf000.nc \ - dynf024.nc \ + dynf006.nc \ phyf000.nc \ - phyf024.nc \ + phyf006.nc \ PRSLEV.GrbF00 \ - PRSLEV.GrbF24 \ + PRSLEV.GrbF06 \ NATLEV.GrbF00 \ - NATLEV.GrbF24" + NATLEV.GrbF06" export_fv3 @@ -25,19 +25,21 @@ export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. export HYBEDMF=.false. +export RESTART_INTERVAL="0" export WRITE_DOPOST=.true. export POSTAPP='lam' -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional -export TASKS=68 -export INPES=5 -export JNPES=12 -export OUTPUT_FH="12 -1" +export WLCLK=15 +export FHMAX=6 +export INPES=11 +export JNPES=10 +export OUTPUT_FH="3 -1" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 diff --git a/tests/tests/regional_netcdf_parallel b/tests/tests/regional_netcdf_parallel index a1609c8713..0f20b07d94 100644 --- a/tests/tests/regional_netcdf_parallel +++ b/tests/tests/regional_netcdf_parallel @@ -1,40 +1,40 @@ ############################################################################### # -# FV3 regional parallel netcdf test +# FV3 regional parallel netcdfparallel netcdf test # ############################################################################### -export TEST_DESCR="Compare FV3 regional with parallel netcdf results with previous trunk version" +export TEST_DESCR="Compare FV3 regional parallel netcdf results with previous trunk version" -export CNTL_DIR=fv3_regional_netcdf_parallel +export CNTL_DIR=regional_netcdf_parallel -export LIST_FILES=" dynf000.nc \ - dynf024.nc \ - phyf000.nc \ - phyf024.nc " +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc" export_fv3 -export TASKS=68 - export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. export HYBEDMF=.false. -export MODEL_CONFIGURE=model_configure_regional.IN -export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" -export IDEFLATE=1 -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam export FIELD_TABLE=field_table_regional +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export IDEFLATE=1 +export WLCLK=15 +export FHMAX=6 export INPES=10 -export JNPES=6 -export OUTPUT_FH="12 -1" +export JNPES=11 +export OUTPUT_FH="3 -1" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 diff --git a/tests/tests/regional_noquilt b/tests/tests/regional_noquilt index 38877b2693..a87447702b 100644 --- a/tests/tests/regional_noquilt +++ b/tests/tests/regional_noquilt @@ -1,12 +1,12 @@ - +############################################################################### # # FV3 regional noquilt test # ############################################################################### -export TEST_DESCR="Compare FV3 regional noquilt test results with previous trunk version" +export TEST_DESCR="Compare FV3 regional noquilt results with previous trunk version" -export CNTL_DIR=fv3_regional_noquilt +export CNTL_DIR=regional_noquilt export LIST_FILES=" atmos_4xdaily.nc \ fv3_history2d.nc \ @@ -16,25 +16,25 @@ export LIST_FILES=" atmos_4xdaily.nc \ export_fv3 -export TASKS=60 - export FV3_RUN=regional_run.IN export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. export HYBEDMF=.false. -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="3 -1" export QUILTING=.false. -export MODEL_CONFIGURE=model_configure_regional.IN -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN -export DIAG_TABLE=diag_table_regional +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_noquilt export FIELD_TABLE=field_table_regional +export WLCLK=15 +export FHMAX=6 export INPES=10 -export JNPES=6 +export JNPES=11 export WRITE_RESTART_WITH_BCS=.true. -export OUTPUT_FH="3 6 9 12 15 18 21 24" +export OUTPUT_FH="2 4 6" NTILES=1 diff --git a/tests/tests/regional_restart b/tests/tests/regional_restart index 3ae0129a4d..6ce9242440 100644 --- a/tests/tests/regional_restart +++ b/tests/tests/regional_restart @@ -1,17 +1,17 @@ ############################################################################### # -# FV3 regional restart test +# FV3 regional restart (hi-res 3km, small domain) test # ############################################################################### export TEST_DESCR="Compare FV3 regional restart results with previous trunk version" -export CNTL_DIR=fv3_regional_control +export CNTL_DIR=regional_control -export LIST_FILES="dynf024.nc \ - phyf024.nc \ - PRSLEV.GrbF24 \ - NATLEV.GrbF24" +export LIST_FILES="dynf006.nc \ + phyf006.nc \ + PRSLEV.GrbF06 \ + NATLEV.GrbF06" export_fv3 @@ -24,7 +24,7 @@ export HYBEDMF=.false. export WRITE_DOPOST=.true. export POSTAPP='lam' -export CCPP_SUITE=FV3_GFS_v15_thompson_mynn +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km export INPUT_NML=regional.nml.IN export MODEL_CONFIGURE=model_configure_regional.IN export DIAG_TABLE=diag_table_lam @@ -37,12 +37,12 @@ export MAKE_NH=.false. export MOUNTAIN=.true. export NA_INIT=0 -export TASKS=68 +export WLCLK=15 +export FHMAX=6 export INPES=10 -export JNPES=6 -export OUTPUT_FH="15 18 21 24" - -export FHROT=12 +export JNPES=11 +export OUTPUT_FH="4 6" WRITE_GROUP=1 -WRTTASK_PER_GROUP=8 +WRTTASK_PER_GROUP=10 NTILES=1 +export FHROT=3 diff --git a/tests/tests/regional_rrfs_a b/tests/tests/regional_rrfs_a new file mode 100644 index 0000000000..f1b6d09d93 --- /dev/null +++ b/tests/tests/regional_rrfs_a @@ -0,0 +1,38 @@ +############################################################################### +# +# FV3 regional RRFS-a large domain weekly test +# +############################################################################### + +export TEST_DESCR="Weekly FV3 regional RRFS-a large domain run" + +export CNTL_DIR=regional_rrfs_a + +export LIST_FILES="dynf000.nc \ + dynf001.nc \ + phyf000.nc \ + phyf001.nc" + +export_fv3 + +export FV3_RUN=regional_rrfs_a_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="0" + +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=regional_rrfs_a.nml.IN +export MODEL_CONFIGURE=model_configure_regional_rrfs_a.IN +export DIAG_TABLE=diag_table_rrfs_a +export FIELD_TABLE=field_table_regional_rrfs_a + +export WLCLK=15 +export FHMAX=1 +export INPES=30 +export JNPES=16 +WRITE_GROUP=1 +WRTTASK_PER_GROUP=16 +NTILES=1 diff --git a/tests/tests/regional_spp_sppt_shum_skeb b/tests/tests/regional_spp_sppt_shum_skeb index 3a74589fff..830886bc27 100644 --- a/tests/tests/regional_spp_sppt_shum_skeb +++ b/tests/tests/regional_spp_sppt_shum_skeb @@ -1,7 +1,7 @@ #################################################################### # # Regional test with stochastic physics (SPP, SPPT, SHUM, and SKEB) -# +# #################################################################### export TEST_DESCR="Compare regional stochastic physics results with previous trunk version" @@ -21,6 +21,7 @@ export_fv3 export FV3_RUN=regional_run_stoch.IN +export LHEATSTRG=.false. export OZ_PHYS_OLD=.false. export OZ_PHYS_NEW=.true. export H2O_PHYS=.true. @@ -41,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 @@ -59,4 +59,4 @@ export SPP_TAU='21600.0,21600.0,21600.0,21600.0,21600.0' export SPP_SIGTOP1='0.1,0.1,0.1,0.1,0.1' export SPP_SIGTOP2='0.025,0.025,0.025,0.025,0.025' export SPP_STDDEV_CUTOFF='1.5,1.5,2.5,1.5,1.5' -export ISEED_SPP='4,4,4,4,4' +export ISEED_SPP='4,4,4,4,4' diff --git a/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 new file mode 100644 index 0000000000..9431e9b26a --- /dev/null +++ b/tests/tests/regional_spp_sppt_shum_skeb_dyn32_phy32 @@ -0,0 +1,62 @@ +#################################################################### +# +# Regional test with stochastic physics (SPP, SPPT, SHUM, and SKEB) +# +#################################################################### + +export TEST_DESCR="Compare regional stochastic physics results with previous trunk version" + +export CNTL_DIR=regional_spp_sppt_shum_skeb_dyn32_phy32 + +export LIST_FILES="dynf000.nc \ + dynf001.nc \ + phyf000.nc \ + phyf001.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF01 \ + NATLEV.GrbF00 \ + NATLEV.GrbF01" + +export_fv3 + +export FV3_RUN=regional_run_stoch.IN + +export LHEATSTRG=.false. +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="12 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' +export OUTPUT_FH="1 -1" + +export CCPP_SUITE=FV3_HRRR +export INPUT_NML=regional_stoch.nml.IN +export MODEL_CONFIGURE=model_configure_regional_stoch.IN +export DIAG_TABLE=diag_table_hrrr_stoch +export FIELD_TABLE=field_table_regional_stoch + +export SFCLAY_COMPUTE_FLUX=.true. + +export INPES=15 +export JNPES=12 +export FHMAX=1 +export atm_omp_num_threads=2 +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=12 +NTILES=1 + +export DO_SPP=.true. +export DO_SPPT=.true. +export DO_SHUM=.true. +export DO_SKEB=.true. +export N_VAR_SPP=5 +export SPP_VAR_LIST="'pbl','sfc','mp','rad','gwd'" +export SPP_PRT_LIST='0.2,0.2,0.75,0.2,0.2' +export SPP_LSCALE='150000.0,150000.0,150000.0,150000.0,150000.0' +export SPP_TAU='21600.0,21600.0,21600.0,21600.0,21600.0' +export SPP_SIGTOP1='0.1,0.1,0.1,0.1,0.1' +export SPP_SIGTOP2='0.025,0.025,0.025,0.025,0.025' +export SPP_STDDEV_CUTOFF='1.5,1.5,2.5,1.5,1.5' +export ISEED_SPP='4,4,4,4,4' diff --git a/tests/tests/regional_wofs b/tests/tests/regional_wofs new file mode 100644 index 0000000000..d1ee23a786 --- /dev/null +++ b/tests/tests/regional_wofs @@ -0,0 +1,65 @@ +############################################################################### +# +# FV3_WoFS_v0 test atmosphere only with hi-res 3km +# +############################################################################### + +export TEST_DESCR="Compare FV3_WoFS_v0 hi-res 3km results with previous trunk version" + +export CNTL_DIR=fv3_regional_wofs + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export RESTART_INTERVAL="0" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_WoFS_v0 +export INPUT_NML=regional_wofs.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export FIELD_TABLE=field_table_nssl_tke +export DIAG_TABLE=diag_table_lam + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 + +export IMP_PHYSICS=17 +export DNATS=0 +export NWAT=7 +export NSSL_CCN_ON=.true. +export NSSL_HAIL_ON=.true. +export NSSL_INVERTCCN=.true. +export DO_SAT_ADJ=.false. +export LTAEROSOL=.false. +export IALB=1 +export IEMS=1 +export HYBEDMF=.false. +export DO_MYNNEDMF=.true. +export DO_MYNNSFCLAY=.true. +export DO_DEEP=.false. +export SHAL_CNV=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export LSM=1 +export LSOIL_LSM=4 +export NSTF_NAME="2, 1, 0, 0, 0" diff --git a/tests/tests/rrfs_conus13km_hrrr_warm b/tests/tests/rrfs_conus13km_hrrr_warm index 1c5ba36978..daa4830575 100644 --- a/tests/tests/rrfs_conus13km_hrrr_warm +++ b/tests/tests/rrfs_conus13km_hrrr_warm @@ -25,7 +25,7 @@ export SMONTH=5 export SDAY=12 export SHOUR=16 export FHMAX=2 -export DT_ATMOS=60 +export DT_ATMOS=120 export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 @@ -40,6 +40,7 @@ export OUTPUT_FILE="'netcdf'" export SEDI_SEMI=.false. export DECFL=8 +export LKM=1 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_2threads b/tests/tests/rrfs_conus13km_hrrr_warm_2threads new file mode 100644 index 0000000000..77a147a665 --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_2threads @@ -0,0 +1,112 @@ +############################################################################### +# +# HRRR physics on 13km domain, different threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, different threads" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_debug b/tests/tests/rrfs_conus13km_hrrr_warm_debug new file mode 100644 index 0000000000..014c3eed8d --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_debug @@ -0,0 +1,105 @@ +############################################################################### +# +# HRRR physics on 13km domain, debug run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, debug run" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm_debugs + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=1 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_decomp b/tests/tests/rrfs_conus13km_hrrr_warm_decomp new file mode 100644 index 0000000000..bf77d3a7e7 --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_decomp @@ -0,0 +1,108 @@ +############################################################################### +# +# HRRR physics on 13km domain, different PEs +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, different PEs" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export INPES=16 +export JNPES=9 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_hrrr_warm_restart b/tests/tests/rrfs_conus13km_hrrr_warm_restart new file mode 100644 index 0000000000..916aa940b5 --- /dev/null +++ b/tests/tests/rrfs_conus13km_hrrr_warm_restart @@ -0,0 +1,106 @@ +############################################################################### +# +# HRRR physics on 13km domain, control run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, control run" + +export CNTL_DIR=rrfs_conus13km_hrrr_warm + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_fv3 + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export FHROT=1 +export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) +export RRFS_RESTART=YES + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm b/tests/tests/rrfs_conus13km_radar_tten_warm index 650185f08b..82389f595e 100644 --- a/tests/tests/rrfs_conus13km_radar_tten_warm +++ b/tests/tests/rrfs_conus13km_radar_tten_warm @@ -27,7 +27,7 @@ export SMONTH=5 export SDAY=12 export SHOUR=16 export FHMAX=2 -export DT_ATMOS=60 +export DT_ATMOS=120 export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 @@ -42,6 +42,7 @@ export OUTPUT_FILE="'netcdf'" export SEDI_SEMI=.false. export DECFL=8 +export LKM=1 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_2threads b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads new file mode 100644 index 0000000000..32b5cbd374 --- /dev/null +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_2threads @@ -0,0 +1,114 @@ +############################################################################### +# +# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different threads" + +export CNTL_DIR=rrfs_conus13km_radar_tten_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export atm_omp_num_threads=2 +export INPES=$INPES_thrd +export JNPES=$JNPES_thrd +export WRTTASK_PER_GROUP=6 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_debug b/tests/tests/rrfs_conus13km_radar_tten_warm_debug new file mode 100644 index 0000000000..fb1eeff8fc --- /dev/null +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_debug @@ -0,0 +1,107 @@ +############################################################################### +# +# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, debug run" + +export CNTL_DIR=rrfs_conus13km_radar_tten_warm_debug + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 + +export FH_DFI_RADAR='0.0, 0.125, 0.25, 0.375, 0.5' + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=1 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_decomp b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp new file mode 100644 index 0000000000..38a9ad5f36 --- /dev/null +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_decomp @@ -0,0 +1,110 @@ +############################################################################### +# +# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour, different PEs" + +export CNTL_DIR=rrfs_conus13km_radar_tten_warm + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + sfcf002.nc \ + atmf000.nc \ + atmf001.nc \ + atmf002.nc" + +export_fv3 + +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export RESTART_INTERVAL=1 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export INPES=16 +export JNPES=9 + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_conus13km_radar_tten_warm_restart b/tests/tests/rrfs_conus13km_radar_tten_warm_restart new file mode 100644 index 0000000000..1ae6524575 --- /dev/null +++ b/tests/tests/rrfs_conus13km_radar_tten_warm_restart @@ -0,0 +1,108 @@ +############################################################################### +# +# HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour +# +############################################################################### + +# This configuration is supposed to match the rrfs_dev1 parallel, so +# do not change the namelist without checking the current parallel. + +export TEST_DESCR="HRRR physics on 13km domain, with radar-derived MP temperature tendencies for 1 hour" + +export CNTL_DIR=rrfs_conus13km_radar_tten_warm + +export LIST_FILES="sfcf002.nc \ + atmf002.nc" + +export_fv3 + +export FH_DFI_RADAR='0.0, 0.25, 0.50, 0.75, 1.0' + +export SYEAR=2021 +export SMONTH=5 +export SDAY=12 +export SHOUR=16 +export FHMAX=2 +export DT_ATMOS=120 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export NTILES=1 +export WRITE_DOPOST=.false. +export OUTPUT_HISTORY=.true. +export OUTPUT_GRID=lambert_conformal +export OUTPUT_FILE="'netcdf'" + +export FHROT=1 +export RESTART_FILE_PREFIX=$( printf %04d%02d%02d.%02d0000 $SYEAR $SMONTH $SDAY $(( SHOUR+FHROT )) ) +export RRFS_RESTART=YES + +# Revert these two to GFS_typedefs defaults to avoid a crash: +export SEDI_SEMI=.false. +export DECFL=8 + +export LKM=1 +export SFCLAY_COMPUTE_FLUX=.true. +export IALB=2 +export ICLIQ_SW=2 +export IEMS=2 +export IOVR=3 +export KICE=9 +export LSM=3 +export LSOIL_LSM=9 +export DO_MYNNSFCLAY=.true. +export DO_MYNNEDMF=.true. +export DO_MYJPBL=.true +export HYBEDMF=.false. +export SHAL_CNV=.false. +export DO_SAT_ADJ=.false. +export DO_DEEP=.false. +export CCPP_SUITE='FV3_HRRR' +export INPES=12 +export JNPES=12 +export NPX=397 +export NPY=233 +export NPZ=65 +export MAKE_NH=.false. +export NA_INIT=0 +export DNATS=0 +export EXTERNAL_IC=.false. +export NGGPS_IC=.false. +export MOUNTAIN=.true. +export WARM_START=.true. +export READ_INCREMENT=.false. +export RES_LATLON_DYNAMICS="'fv3_increment.nc'" +export NPZP=66 +export FHZERO=1.0 +export IMP_PHYSICS=8 +export LDIAG3D=.false. +export QDIAG3D=.false. +export PRINT_DIFF_PGR=.true. +export FHCYC=0.0 +export IAER=5111 +export LHEATSTRG=.false. +export RANDOM_CLDS=.false. +export CNVCLD=.false. +export IMFSHALCNV=-1 +export IMFDEEPCNV=-1 +export CDMBWD='3.5,1.0' +export DO_SPPT=.false. +export DO_SHUM=.false. +export DO_SKEB=.false. +export LNDP_TYPE=0 +export N_VAR_LNDP=0 + +export GWD_OPT=3 +export DO_UGWP_V0=.false. +export DO_UGWP_V0_OROG_ONLY=.false. +export DO_GSL_DRAG_LS_BL=.true. +export DO_GSL_DRAG_SS=.true. +export DO_GSL_DRAG_TOFD=.true. +export DO_UGWP_V1=.false. +export DO_UGWP_V1_OROG_ONLY=.false. + +export FV3_RUN=rrfs_warm_run.IN +export INPUT_NML=rrfs_conus13km_hrrr.nml.IN +export FIELD_TABLE=field_table_thompson_aero_tke +export DIAG_TABLE=diag_table_hrrr +export MODEL_CONFIGURE=model_configure_rrfs_conus13km.IN diff --git a/tests/tests/rrfs_smoke_conus13km_hrrr_warm b/tests/tests/rrfs_smoke_conus13km_hrrr_warm index 33ad26593b..99e6c40728 100644 --- a/tests/tests/rrfs_smoke_conus13km_hrrr_warm +++ b/tests/tests/rrfs_smoke_conus13km_hrrr_warm @@ -25,7 +25,7 @@ export SMONTH=5 export SDAY=12 export SHOUR=16 export FHMAX=2 -export DT_ATMOS=60 +export DT_ATMOS=120 export RESTART_INTERVAL=1 export QUILTING=.true. export WRITE_GROUP=1 @@ -43,6 +43,7 @@ export DECFL=8 export RRFS_SMOKE=.true. export SEAS_OPT=0 +export LKM=1 export SFCLAY_COMPUTE_FLUX=.true. export IALB=2 export ICLIQ_SW=2 diff --git a/tests/tests/rrfs_v1beta b/tests/tests/rrfs_v1beta index 9cf987ff69..514d9b0435 100644 --- a/tests/tests/rrfs_v1beta +++ b/tests/tests/rrfs_v1beta @@ -9,49 +9,49 @@ export TEST_DESCR="Compare RRFS_v1beta results with previous trunk version" export CNTL_DIR=rrfs_v1beta export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24 \ - RESTART/coupler.res \ - RESTART/fv_core.res.nc \ - RESTART/fv_core.res.tile1.nc \ - RESTART/fv_core.res.tile2.nc \ - RESTART/fv_core.res.tile3.nc \ - RESTART/fv_core.res.tile4.nc \ - RESTART/fv_core.res.tile5.nc \ - RESTART/fv_core.res.tile6.nc \ - RESTART/fv_srf_wnd.res.tile1.nc \ - RESTART/fv_srf_wnd.res.tile2.nc \ - RESTART/fv_srf_wnd.res.tile3.nc \ - RESTART/fv_srf_wnd.res.tile4.nc \ - RESTART/fv_srf_wnd.res.tile5.nc \ - RESTART/fv_srf_wnd.res.tile6.nc \ - RESTART/fv_tracer.res.tile1.nc \ - RESTART/fv_tracer.res.tile2.nc \ - RESTART/fv_tracer.res.tile3.nc \ - RESTART/fv_tracer.res.tile4.nc \ - RESTART/fv_tracer.res.tile5.nc \ - RESTART/fv_tracer.res.tile6.nc \ - RESTART/phy_data.tile1.nc \ - RESTART/phy_data.tile2.nc \ - RESTART/phy_data.tile3.nc \ - RESTART/phy_data.tile4.nc \ - RESTART/phy_data.tile5.nc \ - RESTART/phy_data.tile6.nc \ - RESTART/sfc_data.tile1.nc \ - RESTART/sfc_data.tile2.nc \ - RESTART/sfc_data.tile3.nc \ - RESTART/sfc_data.tile4.nc \ - RESTART/sfc_data.tile5.nc \ - RESTART/sfc_data.tile6.nc" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12 \ + RESTART/20210323.060000.coupler.res \ + RESTART/20210323.060000.fv_core.res.nc \ + RESTART/20210323.060000.fv_core.res.tile1.nc \ + RESTART/20210323.060000.fv_core.res.tile2.nc \ + RESTART/20210323.060000.fv_core.res.tile3.nc \ + RESTART/20210323.060000.fv_core.res.tile4.nc \ + RESTART/20210323.060000.fv_core.res.tile5.nc \ + RESTART/20210323.060000.fv_core.res.tile6.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc \ + RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc \ + RESTART/20210323.060000.fv_tracer.res.tile1.nc \ + RESTART/20210323.060000.fv_tracer.res.tile2.nc \ + RESTART/20210323.060000.fv_tracer.res.tile3.nc \ + RESTART/20210323.060000.fv_tracer.res.tile4.nc \ + RESTART/20210323.060000.fv_tracer.res.tile5.nc \ + RESTART/20210323.060000.fv_tracer.res.tile6.nc \ + RESTART/20210323.060000.phy_data.tile1.nc \ + RESTART/20210323.060000.phy_data.tile2.nc \ + RESTART/20210323.060000.phy_data.tile3.nc \ + RESTART/20210323.060000.phy_data.tile4.nc \ + RESTART/20210323.060000.phy_data.tile5.nc \ + RESTART/20210323.060000.phy_data.tile6.nc \ + RESTART/20210323.060000.sfc_data.tile1.nc \ + RESTART/20210323.060000.sfc_data.tile2.nc \ + RESTART/20210323.060000.sfc_data.tile3.nc \ + RESTART/20210323.060000.sfc_data.tile4.nc \ + RESTART/20210323.060000.sfc_data.tile5.nc \ + RESTART/20210323.060000.sfc_data.tile6.nc" export_fv3 export NPZ=127 @@ -61,18 +61,18 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1beta export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=8 export DNATS=0 @@ -88,6 +88,7 @@ export DO_DEEP=.false. export SHAL_CNV=.false. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 +export LHEATSTRG=.false. export LSM=2 export LSOIL_LSM=4 diff --git a/tests/tests/rrfs_v1beta_debug b/tests/tests/rrfs_v1beta_debug index 70bfc2657d..2390819b6f 100644 --- a/tests/tests/rrfs_v1beta_debug +++ b/tests/tests/rrfs_v1beta_debug @@ -32,7 +32,7 @@ export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1beta export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_thompson_aero_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=8 export DNATS=0 @@ -48,6 +48,7 @@ export DO_DEEP=.false. export SHAL_CNV=.false. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 +export LHEATSTRG=.false. export LSM=2 export LSOIL_LSM=4 diff --git a/tests/tests/rrfs_v1nssl b/tests/tests/rrfs_v1nssl index 1c2c897226..4a472dc167 100644 --- a/tests/tests/rrfs_v1nssl +++ b/tests/tests/rrfs_v1nssl @@ -9,17 +9,17 @@ export TEST_DESCR="Compare RRFS_v1nssl results with previous trunk version" export CNTL_DIR=rrfs_v1nssl export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -29,18 +29,18 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1nssl export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_nssl_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=17 export DNATS=0 @@ -59,5 +59,6 @@ export DO_DEEP=.false. export SHAL_CNV=.false. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 +export LHEATSTRG=.false. export LSM=2 export LSOIL_LSM=4 diff --git a/tests/tests/rrfs_v1nssl_nohailnoccn b/tests/tests/rrfs_v1nssl_nohailnoccn index 2918090f21..c37cdef82f 100644 --- a/tests/tests/rrfs_v1nssl_nohailnoccn +++ b/tests/tests/rrfs_v1nssl_nohailnoccn @@ -9,17 +9,17 @@ export TEST_DESCR="Compare RRFS_v1nssl_nohailnoccn results with previous trunk v export CNTL_DIR=rrfs_v1nssl_nohailnoccn export LIST_FILES="sfcf000.nc \ - sfcf021.nc \ - sfcf024.nc \ + sfcf009.nc \ + sfcf012.nc \ atmf000.nc \ - atmf021.nc \ - atmf024.nc \ + atmf009.nc \ + atmf012.nc \ GFSFLX.GrbF00 \ - GFSFLX.GrbF21 \ - GFSFLX.GrbF24 \ + GFSFLX.GrbF09 \ + GFSFLX.GrbF12 \ GFSPRS.GrbF00 \ - GFSPRS.GrbF21 \ - GFSPRS.GrbF24" + GFSPRS.GrbF09 \ + GFSPRS.GrbF12" export_fv3 export NPZ=127 @@ -29,18 +29,18 @@ export SYEAR=2021 export SMONTH=03 export SDAY=22 export SHOUR=06 -export RESTART_INTERVAL="12 -1" +export RESTART_INTERVAL="6 -1" export OUTPUT_GRID='gaussian_grid' export NSTF_NAME='2,0,0,0,0' export WRITE_DOPOST=.true. export IAER=5111 -export OUTPUT_FH='0 21 24' +export OUTPUT_FH='0 09 12' export FV3_RUN=control_run.IN export CCPP_SUITE=FV3_RRFS_v1nssl export INPUT_NML=rap.nml.IN export FIELD_TABLE=field_table_nssl_nohailnoccn_tke -export NEW_DIAGTABLE=diag_table_rap_noah +export DIAG_TABLE=diag_table_rap_noah export IMP_PHYSICS=17 export DNATS=0 @@ -59,5 +59,6 @@ export DO_DEEP=.false. export SHAL_CNV=.false. export IMFSHALCNV=-1 export IMFDEEPCNV=-1 +export LHEATSTRG=.false. export LSM=2 export LSOIL_LSM=4