diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml new file mode 100644 index 0000000000..37cc54b9bd --- /dev/null +++ b/.github/workflows/aux.yml @@ -0,0 +1,148 @@ +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: 6 + + +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 }} + + + repocheck: + name: Repo check + runs-on: ubuntu-20.04 + + steps: + - name: Check up-to-dateness and post comment + run: | + if [[ ${{ github.event.workflow_run.event }} == push ]]; then + echo "This is a push event. No need to check." + comment='' + elif [[ ${{ github.event.workflow_run.event }} == pull_request ]]; then + echo "This is a pull_request event. Check." + head_sha=${{ github.event.workflow_run.head_sha }} + echo "head_sha is $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" + fi + + 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 $(./setup.py no_builds)) + 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 ae8e75dd7f..a233cc21aa 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -1,48 +1,125 @@ -name: Pull request tests - +name: Pull Request Tests on: push: branches: ['develop'] pull_request: branches: ['develop'] +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 + + + runcheck: + name: Check if run-ci is requested + runs-on: ubuntu-20.04 + + outputs: + cirun: ${{ steps.check.outputs.cirun }} + + steps: + - name: Check + id: check + run: | + if [[ ${{github.event_name}} == pull_request ]]; then + sha=${{github.event.pull_request.head.sha}} + url=$(echo ${{github.event.pull_request.head.repo.git_commits_url}} \ + | sed "s:{/sha}:/$sha:") + elif [[ ${{github.event_name}} == push ]]; then + sha=${{github.event.after}} + url=$(echo ${{github.event.repository.git_commits_url}} | sed "s:{/sha}:/$sha:") + fi + + message="$(curl -sS -H "$app" $url | jq '.message')" + echo $message | grep run-ci >/dev/null 2>&1 && d=$? || d=$? + if [[ $d -eq 0 ]]; then + echo "::set-output name=cirun::yes" + elif [[ $d -eq 1 ]]; then + echo "::set-output name=cirun::no" + fi + printf "Commit message is %s\n" "$message" + + setup: - name: Set up + name: Configure cases to run + needs: [repocheck,runcheck] runs-on: ubuntu-20.04 + if: needs.repocheck.outputs.current == 'yes' && needs.runcheck.outputs.cirun == 'yes' outputs: - tn: ${{ steps.parse.outputs.tn }} bld: ${{ steps.parse.outputs.bld }} test: ${{ steps.parse.outputs.test }} img: ${{ steps.parse.outputs.img }} steps: - - name: Checkout codes - uses: actions/checkout@v2 + - uses: actions/checkout@v2 - - name: Parse cases + - name: Collect cases to run id: parse run: | - cd ${GITHUB_WORKSPACE}/tests/ci - parsed_output=( $(./parse.sh) ) - name_=${parsed_output[0]} - bld_=${parsed_output[1]} - test_=${parsed_output[2]} - img_=${parsed_output[3]} - - echo "::set-output name=tn::$name_" + cd ${{ github.workspace }}/tests/ci + IFS='|'; parsed_output=( $(./setup.py cases) ) + 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 "test name : $name_" echo "build set : $bld_" echo "test set : $test_" echo "image name: $img_" + echo "repocheck: ${{needs.repocheck.outputs.current}}" + echo "runcheck: ${{needs.runcheck.outputs.cirun}}" + + build: - name: Build (${{ matrix.bld_set }}) + name: Build ${{ matrix.bld_set }} needs: setup runs-on: ubuntu-20.04 @@ -51,8 +128,7 @@ jobs: matrix: ${{ fromJson(needs.setup.outputs.bld) }} steps: - - name: Checkout codes - uses: actions/checkout@v2 + - uses: actions/checkout@v2 with: submodules: recursive @@ -61,7 +137,7 @@ jobs: 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 ${{ needs.setup.outputs.tn }} -b ${{ matrix.bld_set }} + cd tests/ci && ./ci.sh -n ${{ matrix.name }} -b ${{ matrix.case }} - name: Free up disk space run: | @@ -71,41 +147,75 @@ jobs: - name: Prepare artifacts run: | cd tests/ci - sudo docker save ${{ needs.setup.outputs.img }} | gzip >${{ needs.setup.outputs.img }}.tar.gz + sudo docker save ${{ needs.setup.outputs.img }} \ + | gzip >${{ needs.setup.outputs.img }}.tar.gz tar cvjf artifact.tar.bz2 ${{ needs.setup.outputs.img }}.tar.gz ci.sh ci.test - - name: Upload artifacts - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v2 with: name: ${{ matrix.bld_set }}.artifact.tar.bz2 path: tests/ci/artifact.tar.bz2 + + 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: Unit test (${{ needs.setup.outputs.tn }}, ${{ matrix.test_set }}) - needs: [setup,build] + 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: Download artifacts - uses: actions/download-artifact@v2 + - name: Clean up in case of left-over files + run: | + rm -f artifact.tar.bz2 ${{ needs.setup.outputs.img }}.tar.gz + docker ps -a --filter "name=my-container" | grep my-container >/dev/null 2>&1 \ + && docker rm my-container >/dev/null 2>&1 && d=$? || d=$? + docker image ls | grep ${{ needs.setup.outputs.img }} >/dev/null 2>&1 \ + && docker rmi ${{ needs.setup.outputs.img }} >/dev/null 2>&1 && d=$? || d=$? + + - uses: actions/download-artifact@v2 with: name: ${{ matrix.artifact }}.artifact.tar.bz2 - name: Prepare artifacts run: | tar xvjf artifact.tar.bz2 && rm -f artifact.tar.bz2 - docker load --input ${{ needs.setup.outputs.img }}.tar.gz && rm -f ${{ needs.setup.outputs.img }}.tar.gz + docker load --input ${{ needs.setup.outputs.img }}.tar.gz \ + && rm -f ${{ needs.setup.outputs.img }}.tar.gz - name: Run utest - run: ./ci.sh -n ${{ needs.setup.outputs.tn }} -r ${{ matrix.test_set }} + run: ./ci.sh -n ${{ matrix.name }} -r ${{ matrix.case }} - - name: Upload memory usage file + - uses: actions/upload-artifact@v2 if: ${{ always() }} - uses: actions/upload-artifact@v2 with: name: memory_stat_${{ matrix.test_set }} path: memory_stat @@ -114,7 +224,7 @@ jobs: if: ${{ always() }} run: | rm -f ci.sh ci.test - docker stop my-container && docker rm my-container && docker rmi ${{ needs.setup.outputs.img }}:latest + docker stop my-container && docker rm my-container \ + && docker rmi ${{ needs.setup.outputs.img }}:latest docker volume rm DataVolume - #docker rmi minsukjinoaa/fv3-input-data:input-data-20210115 rm -f memory_stat diff --git a/.github/workflows/manage_workflows.yml b/.github/workflows/manage_workflows.yml deleted file mode 100644 index 96544c3ca1..0000000000 --- a/.github/workflows/manage_workflows.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: Manage workflows - -on: - workflow_run: - workflows: ["Pull request tests"] - types: - - requested - -jobs: - job1: - name: Cancel workflows - runs-on: ubuntu-20.04 - - steps: - - name: Checkout codes - uses: actions/checkout@v2 - - - name: Check if run-ci is requested - run: | - sleep 40 - cd ${GITHUB_WORKSPACE}/tests/ci - repo="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/actions/runs" - tr_id=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_id) - tr_br=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py get_trigger_br) - check=$(cat ${GITHUB_EVENT_PATH} | ./json_helper.py check_run) - echo "TRIGGER_ID=${tr_id}" >> $GITHUB_ENV - echo "TRIGGER_BR=${tr_br}" >> $GITHUB_ENV - echo "run-ci: ${check}" - if [[ $check == no ]]; then - echo "run-ci is not requested" - echo "CURR_JOB=cancelled" >> $GITHUB_ENV - curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" ${repo}/$tr_id/cancel - else - echo "run-ci is requested" - echo "CURR_JOB=running" >> $GITHUB_ENV - fi - - - name: Cancel redundant jobs - run: | - echo "CURR_JOB is $CURR_JOB" - echo "TRIGGER_ID is $TRIGGER_ID" - echo "TRIGGER_BR is $TRIGGER_BR" - export GITHUB_ACTOR - export GITHUB_RUN_ID - export TRIGGER_ID - export TRIGGER_BR - cd ${GITHUB_WORKSPACE}/tests/ci - repo="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/actions/runs" - cancel_ids=$(curl -H "Accept: application/vnd.github.v3+json" ${repo} | ./json_helper.py cancel_workflow) - echo "cancel ids: $cancel_ids" - if [[ $cancel_ids != '' ]]; then - for i in $cancel_ids; do - curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github.v3+json" ${repo}/$i/cancel - done - fi - if: ${{ env.CURR_JOB == 'running' }} diff --git a/.github/workflows/start_runners.yml b/.github/workflows/start_runners.yml deleted file mode 100644 index 423315de58..0000000000 --- a/.github/workflows/start_runners.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: Start runners - -on: - workflow_run: - workflows: ["Pull request tests"] - types: - - requested - -jobs: - job1: - name: Start AWS runners - runs-on: ubuntu-20.04 - - steps: - - name: Check out codes - uses: actions/checkout@v2 - - - name: Configure AWS - 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: Check the status of build and start self-hosted runners - env: - aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} - run: | - cd ${GITHUB_WORKSPACE}/tests/ci - conclusion=$(cat ${GITHUB_EVENT_PATH} | ./build_status_check.py) - if [[ $conclusion == "success" ]]; then - aws ec2 start-instances --instance-ids $aws_instance_id - fi diff --git a/.github/workflows/stop_runners.yml b/.github/workflows/stop_runners.yml deleted file mode 100644 index f3497318c3..0000000000 --- a/.github/workflows/stop_runners.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Stop runners - -on: - workflow_run: - workflows: ["Pull request tests"] - types: - - completed - -jobs: - job1: - name: Stop AWS runners - runs-on: ubuntu-20.04 - - steps: - - name: Configure AWS - 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 self-hosted runners - env: - aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} - run: aws ec2 stop-instances --instance-ids $aws_instance_id diff --git a/FV3 b/FV3 index 6c529fa6c6..28888f072c 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 6c529fa6c67ca68d69d78a44cb293f60babb4d7c +Subproject commit 28888f072c9a38b7d8e3d2df864d822e7f489733 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 807586a403..f751d75dbb 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,19 @@ -Mon Apr 26 14:21:53 MDT 2021 +Tue Apr 27 09:00:54 MDT 2021 Start Regression test -Compile 001 elapsed time 483 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 458 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 492 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 457 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 308 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 215 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 544 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 228 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 520 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 439 seconds. APP=DATM_NEMS - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfdlmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfdlmp +Compile 001 elapsed time 415 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 422 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 466 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 414 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 306 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 185 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 463 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 186 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 517 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 418 seconds. APP=DATM_NEMS + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfdlmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 75.162014 +0:The total amount of wall time = 74.839712 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 228.948198 +0:The total amount of wall time = 233.792954 Test 002 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 136.764325 +0:The total amount of wall time = 136.584534 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 89.881952 +0:The total amount of wall time = 89.598395 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 153.039730 +0:The total amount of wall time = 151.408325 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_RRTMGP Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -407,13 +407,13 @@ Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 266.001118 +0:The total amount of wall time = 264.900811 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gsd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -502,13 +502,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 356.299933 +0:The total amount of wall time = 355.927261 Test 007 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -573,13 +573,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 160.771488 +0:The total amount of wall time = 161.755017 Test 008 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_thompson_no_aero Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -644,13 +644,13 @@ Checking test 009 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 162.230842 +0:The total amount of wall time = 160.048831 Test 009 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_rrfs_v1alpha Checking test 010 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.711418 +0:The total amount of wall time = 172.181691 Test 010 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_rrfs_v1beta Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.674758 +0:The total amount of wall time = 171.731147 Test 011 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_HAFS_v0_hwrf_thompson Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -857,13 +857,13 @@ Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 261.691034 +0:The total amount of wall time = 260.293068 Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_esg_HAFS_v0_hwrf_thompson Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -878,13 +878,13 @@ Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 464.049913 +0:The total amount of wall time = 445.159865 Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfsv16_ugwpv1 Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 309.465207 +0:The total amount of wall time = 308.022888 Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfsv16_ugwpv1_warmstart Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1008,13 +1008,13 @@ Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 307.170406 +0:The total amount of wall time = 304.825323 Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_ras Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 016 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.512770 +0:The total amount of wall time = 169.424708 Test 016 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_control_debug Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1112,13 +1112,13 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -0:The total amount of wall time = 77.788508 +0:The total amount of wall time = 77.427101 Test 017 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_regional_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_regional_control_debug Checking test 018 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1126,13 +1126,13 @@ Checking test 018 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 188.701061 +0:The total amount of wall time = 188.579616 Test 018 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 113.014107 +0:The total amount of wall time = 112.887492 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 111.750994 +0:The total amount of wall time = 112.298341 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gsd_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 118.173208 +0:The total amount of wall time = 119.085894 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 188.934359 +0:The total amount of wall time = 186.824534 Test 022 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.424228 +0:The total amount of wall time = 183.340850 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.205160 +0:The total amount of wall time = 138.203441 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1623,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 152.253232 +0:The total amount of wall time = 150.262031 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_RRTMGP_debug Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,13 +1694,13 @@ Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 204.869370 +0:The total amount of wall time = 206.022233 Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_multigases -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_multigases +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_multigases +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_multigases Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1771,13 +1771,13 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 179.991683 +0:The total amount of wall time = 176.088070 Test 027 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_HAFS_v0_hwrf_thompson_debug Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,13 +1842,13 @@ Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 115.825906 +0:The total amount of wall time = 113.178896 Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1863,13 +1863,13 @@ Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 217.619890 +0:The total amount of wall time = 218.474937 Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfsv16_ugwpv1_debug Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1928,13 +1928,13 @@ Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 310.839231 +0:The total amount of wall time = 307.806787 Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_38786/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_28428/fv3_gfs_v16_ras_debug Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,11 +1999,11 @@ Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 175.824917 +0:The total amount of wall time = 176.792772 Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 26 15:09:41 MDT 2021 -Elapsed time: 00h:47m:48s. Have a nice day! +Tue Apr 27 09:25:45 MDT 2021 +Elapsed time: 00h:24m:52s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 172204d5de..f1c3f84c12 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,29 +1,29 @@ -Mon Apr 26 19:30:13 MDT 2021 +Tue Apr 27 11:00:58 MDT 2021 Start Regression test -Compile 001 elapsed time 738 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 721 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 754 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 796 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 895 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1023 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 816 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 753 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 819 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 862 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 250 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 282 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 014 elapsed time 262 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 1051 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 016 elapsed time 1106 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 368 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 661 seconds. APP=DATM_NEMS -Compile 019 elapsed time 240 seconds. APP=DATM_NEMS DEBUG=Y +Compile 001 elapsed time 750 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 710 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 778 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 775 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 780 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 906 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1043 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 796 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 763 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 832 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 881 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 264 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 287 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 014 elapsed time 266 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 1059 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 016 elapsed time 1117 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 363 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 655 seconds. APP=DATM_NEMS +Compile 019 elapsed time 238 seconds. APP=DATM_NEMS DEBUG=Y Compile 020 elapsed time 663 seconds. APP=DATM -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +88,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 48.334382 +0:The total amount of wall time = 48.014209 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +159,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 49.048560 +0:The total amount of wall time = 48.871485 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +230,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 75.588291 +0:The total amount of wall time = 74.818372 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +283,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 23.310289 +0:The total amount of wall time = 23.114961 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_read_inc -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_read_inc +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +354,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 47.768034 +0:The total amount of wall time = 47.243315 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 123.389588 +0:The total amount of wall time = 112.094985 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +456,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 46.769379 +0:The total amount of wall time = 47.017089 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,9 +471,9 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -507,13 +507,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 48.777024 +0:The total amount of wall time = 48.546324 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +558,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 47.015924 +0:The total amount of wall time = 47.409956 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +609,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 47.000964 +0:The total amount of wall time = 46.740529 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -660,13 +660,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 124.320169 +0:The total amount of wall time = 124.494485 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +731,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 57.057238 +0:The total amount of wall time = 58.029802 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_ca -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +802,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 29.967005 +0:The total amount of wall time = 29.970914 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lndp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lndp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +873,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 53.145849 +0:The total amount of wall time = 52.814911 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_iau -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_iau +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +944,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 47.434530 +0:The total amount of wall time = 46.872286 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lheatstrg -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lheatstrg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 47.287885 +0:The total amount of wall time = 46.625491 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_multigases_repro -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_multigases_repro +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1072,13 +1072,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 112.340459 +0:The total amount of wall time = 114.279249 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_32bit -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_32bit +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1143,13 +1143,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 40.446316 +0:The total amount of wall time = 40.893643 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1202,13 +1202,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 330.808059 +0:The total amount of wall time = 331.558687 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1272,13 +1272,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -0:The total amount of wall time = 350.099650 +0:The total amount of wall time = 348.450016 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1286,25 +1286,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 275.415695 +0:The total amount of wall time = 279.301318 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_restart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_restart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -0:The total amount of wall time = 149.761107 +0:The total amount of wall time = 147.218058 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1315,13 +1315,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 272.440229 +0:The total amount of wall time = 267.561213 Test 023 fv3_regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1330,27 +1330,27 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 272.228400 +0:The total amount of wall time = 272.569364 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 276.090028 +0:The total amount of wall time = 272.042052 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1395,13 +1395,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 53.256244 +0:The total amount of wall time = 53.656891 Test 026 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1446,13 +1446,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 53.365471 +0:The total amount of wall time = 55.052163 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1497,13 +1497,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 53.207691 +0:The total amount of wall time = 54.215286 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_csawmg -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_csawmg +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1548,13 +1548,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 142.625346 +0:The total amount of wall time = 142.156140 Test 029 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1599,13 +1599,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 60.244836 +0:The total amount of wall time = 58.843493 Test 030 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmfq -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmfq +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1650,13 +1650,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 61.288256 +0:The total amount of wall time = 60.224541 Test 031 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1701,13 +1701,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 42.405967 +0:The total amount of wall time = 42.039290 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1756,13 +1756,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 78.437827 +0:The total amount of wall time = 76.625168 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_cpt -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_cpt +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1813,13 +1813,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 331.668202 +0:The total amount of wall time = 333.197181 Test 034 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1908,13 +1908,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 196.342787 +0:The total amount of wall time = 196.705518 Test 035 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_rrfs_v1alpha Checking test 036 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1979,13 +1979,13 @@ Checking test 036 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 98.211904 +0:The total amount of wall time = 98.298459 Test 036 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rap -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rap +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2050,13 +2050,13 @@ Checking test 037 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.448746 +0:The total amount of wall time = 99.098632 Test 037 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_hrrr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_hrrr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2121,13 +2121,13 @@ Checking test 038 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.470813 +0:The total amount of wall time = 96.924632 Test 038 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_thompson Checking test 039 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2192,13 +2192,13 @@ Checking test 039 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 90.509773 +0:The total amount of wall time = 89.526424 Test 039 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_thompson_no_aero Checking test 040 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2263,13 +2263,13 @@ Checking test 040 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 91.147549 +0:The total amount of wall time = 91.227947 Test 040 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2334,13 +2334,13 @@ Checking test 041 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 98.452500 +0:The total amount of wall time = 99.472028 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2417,13 +2417,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 173.774060 +0:The total amount of wall time = 171.180021 Test 042 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2470,13 +2470,13 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 104.349480 +0:The total amount of wall time = 104.958871 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2541,13 +2541,13 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 64.375364 +0:The total amount of wall time = 63.900813 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_RRTMGP Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2612,13 +2612,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 226.813378 +0:The total amount of wall time = 227.073864 Test 045 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_RRTMGP_c192L127 Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2677,13 +2677,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 936.233682 +0:The total amount of wall time = 934.488539 Test 046 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_RRTMGP_2thrd Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2748,13 +2748,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 357.918587 +0:The total amount of wall time = 361.100125 Test 047 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gocart_clm -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gocart_clm +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gocart_clm Checking test 048 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,13 +2799,13 @@ Checking test 048 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 56.840636 +0:The total amount of wall time = 57.380158 Test 048 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_flake Checking test 049 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2870,13 +2870,13 @@ Checking test 049 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 117.620511 +0:The total amount of wall time = 117.331277 Test 049 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_HAFS_v0_hwrf_thompson Checking test 050 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2941,13 +2941,13 @@ Checking test 050 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 197.700730 +0:The total amount of wall time = 195.376462 Test 050 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_esg_HAFS_v0_hwrf_thompson Checking test 051 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2962,13 +2962,13 @@ Checking test 051 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 323.506535 +0:The total amount of wall time = 345.236127 Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfsv16_ugwpv1 Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3027,13 +3027,13 @@ Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 219.149867 +0:The total amount of wall time = 219.570744 Test 052 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfsv16_ugwpv1_warmstart Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3092,13 +3092,13 @@ Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 221.779582 +0:The total amount of wall time = 219.453027 Test 053 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_ras Checking test 054 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3163,13 +3163,13 @@ Checking test 054 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 116.841600 +0:The total amount of wall time = 116.157672 Test 054 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3234,13 +3234,13 @@ Checking test 055 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 271.381621 +0:The total amount of wall time = 273.336168 Test 055 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_RRTMGP_debug Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3305,13 +3305,13 @@ Checking test 056 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 393.282716 +0:The total amount of wall time = 395.284827 Test 056 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3319,13 +3319,13 @@ Checking test 057 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 370.870329 +0:The total amount of wall time = 371.487026 Test 057 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3352,13 +3352,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -0:The total amount of wall time = 146.908422 +0:The total amount of wall time = 148.173479 Test 058 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_stretched_nest_debug Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3375,13 +3375,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -0:The total amount of wall time = 438.798819 +0:The total amount of wall time = 439.811875 Test 059 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3446,13 +3446,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 217.727732 +0:The total amount of wall time = 218.883066 Test 060 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3517,13 +3517,13 @@ Checking test 061 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 264.502825 +0:The total amount of wall time = 258.120362 Test 061 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3588,13 +3588,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 363.407189 +0:The total amount of wall time = 364.755036 Test 062 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_thompson_no_aero_debug Checking test 063 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3659,13 +3659,13 @@ Checking test 063 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 350.551952 +0:The total amount of wall time = 351.142605 Test 063 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3730,13 +3730,13 @@ Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.817425 +0:The total amount of wall time = 210.325489 Test 064 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_rrfs_v1alpha_debug Checking test 065 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3801,13 +3801,13 @@ Checking test 065 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 211.004970 +0:The total amount of wall time = 213.239610 Test 065 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3872,13 +3872,13 @@ Checking test 066 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 219.387724 +0:The total amount of wall time = 218.121665 Test 066 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3893,13 +3893,13 @@ Checking test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 402.062279 +0:The total amount of wall time = 400.569934 Test 067 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfsv16_ugwpv1_debug Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3958,13 +3958,13 @@ Checking test 068 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 605.865554 +0:The total amount of wall time = 613.309320 Test 068 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/fv3_gfs_v16_ras_debug Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4029,13 +4029,13 @@ Checking test 069 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 346.291979 +0:The total amount of wall time = 345.704343 Test 069 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_control Checking test 070 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4085,13 +4085,13 @@ Checking test 070 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 95.685837 +0:The total amount of wall time = 99.704811 Test 070 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart Checking test 071 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4141,13 +4141,13 @@ Checking test 071 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 56.507453 +0:The total amount of wall time = 54.209088 Test 071 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_controlfrac Checking test 072 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4197,13 +4197,13 @@ Checking test 072 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 98.802542 +0:The total amount of wall time = 98.399918 Test 072 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restartfrac Checking test 073 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4253,13 +4253,13 @@ Checking test 073 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 54.173341 +0:The total amount of wall time = 55.295887 Test 073 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_2threads Checking test 074 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4309,13 +4309,13 @@ Checking test 074 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 140.733431 +0:The total amount of wall time = 141.570231 Test 074 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_decomp Checking test 075 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4365,13 +4365,13 @@ Checking test 075 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 93.713075 +0:The total amount of wall time = 97.650266 Test 075 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_satmedmf -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_satmedmf +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_satmedmf Checking test 076 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4421,13 +4421,13 @@ Checking test 076 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 93.110021 +0:The total amount of wall time = 92.842994 Test 076 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_ca -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_ca +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_ca Checking test 077 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4477,13 +4477,13 @@ Checking test 077 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 97.517276 +0:The total amount of wall time = 96.243034 Test 077 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_control_c192 Checking test 078 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4533,13 +4533,13 @@ Checking test 078 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 401.555078 +0:The total amount of wall time = 411.393365 Test 078 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart_c192 Checking test 079 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4589,13 +4589,13 @@ Checking test 079 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 293.617776 +0:The total amount of wall time = 293.507719 Test 079 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_controlfrac_c192 Checking test 080 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4645,13 +4645,13 @@ Checking test 080 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 397.758287 +0:The total amount of wall time = 408.110839 Test 080 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restartfrac_c192 Checking test 081 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4701,13 +4701,13 @@ Checking test 081 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 292.452011 +0:The total amount of wall time = 293.594953 Test 081 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_control_c384 Checking test 082 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,13 +4760,13 @@ Checking test 082 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 1610.282212 +0:The total amount of wall time = 1508.099435 Test 082 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart_c384 Checking test 083 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4819,13 +4819,13 @@ Checking test 083 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 842.291400 +0:The total amount of wall time = 841.329832 Test 083 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_controlfrac_c384 Checking test 084 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4878,13 +4878,13 @@ Checking test 084 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 1588.183510 +0:The total amount of wall time = 1597.462576 Test 084 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restartfrac_c384 Checking test 085 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4937,13 +4937,13 @@ Checking test 085 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 841.094579 +0:The total amount of wall time = 850.043225 Test 085 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmark Checking test 086 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4996,13 +4996,13 @@ Checking test 086 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 957.643899 +0:The total amount of wall time = 898.596331 Test 086 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart_bmark Checking test 087 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5055,13 +5055,13 @@ Checking test 087 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 490.378789 +0:The total amount of wall time = 493.273939 Test 087 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmarkfrac Checking test 088 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5114,13 +5114,13 @@ Checking test 088 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 895.382700 +0:The total amount of wall time = 951.993016 Test 088 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart_bmarkfrac Checking test 089 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5173,13 +5173,13 @@ Checking test 089 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 470.123373 +0:The total amount of wall time = 487.574756 Test 089 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmarkfrac_v16 Checking test 090 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5232,13 +5232,13 @@ Checking test 090 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -0:The total amount of wall time = 1633.209118 +0:The total amount of wall time = 1636.651825 Test 090 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmarkfrac_v16_nsst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmarkfrac_v16_nsst Checking test 091 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5291,13 +5291,13 @@ Checking test 091 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -0:The total amount of wall time = 1633.517455 +0:The total amount of wall time = 1632.038905 Test 091 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_restart_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_restart_bmarkfrac_v16 Checking test 092 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5350,13 +5350,13 @@ Checking test 092 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -0:The total amount of wall time = 884.623973 +0:The total amount of wall time = 831.862689 Test 092 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmark_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmark_wave Checking test 093 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5412,13 +5412,13 @@ Checking test 093 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 1613.371636 +0:The total amount of wall time = 1566.932325 Test 093 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmarkfrac_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmarkfrac_wave Checking test 094 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5474,13 +5474,13 @@ Checking test 094 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -0:The total amount of wall time = 1607.058271 +0:The total amount of wall time = 1599.082444 Test 094 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_bmarkfrac_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_bmarkfrac_wave_v16 Checking test 095 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5535,13 +5535,13 @@ Checking test 095 cpld_bmarkfrac_wave_v16 results .... 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 = 1042.935443 +0:The total amount of wall time = 1049.534973 Test 095 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_wave -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_wave +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_control_wave Checking test 096 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5594,13 +5594,13 @@ Checking test 096 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -0:The total amount of wall time = 814.129723 +0:The total amount of wall time = 810.403540 Test 096 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debug -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debug +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_debug Checking test 097 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5650,13 +5650,13 @@ Checking test 097 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 306.401315 +0:The total amount of wall time = 304.829261 Test 097 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debugfrac -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/cpld_debugfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debugfrac +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/cpld_debugfrac Checking test 098 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5706,73 +5706,73 @@ Checking test 098 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 303.937408 +0:The total amount of wall time = 305.618277 Test 098 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_control_cfsr Checking test 099 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 -0:The total amount of wall time = 102.714683 +0:The total amount of wall time = 102.656581 Test 099 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_restart_cfsr Checking test 100 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 -0:The total amount of wall time = 65.017204 +0:The total amount of wall time = 62.416019 Test 100 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_control_gefs Checking test 101 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 -0:The total amount of wall time = 96.574882 +0:The total amount of wall time = 96.402580 Test 101 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_bulk_cfsr Checking test 102 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 -0:The total amount of wall time = 98.893595 +0:The total amount of wall time = 99.763548 Test 102 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_bulk_gefs Checking test 103 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 -0:The total amount of wall time = 96.921604 +0:The total amount of wall time = 97.074801 Test 103 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_mx025_cfsr Checking test 104 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5781,13 +5781,13 @@ Checking test 104 datm_mx025_cfsr results .... 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 = 396.377320 +0:The total amount of wall time = 398.230362 Test 104 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_mx025_gefs -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_mx025_gefs +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_mx025_gefs Checking test 105 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5796,23 +5796,23 @@ Checking test 105 datm_mx025_gefs results .... 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 = 394.582899 +0:The total amount of wall time = 394.506521 Test 105 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_debug_cfsr -working dir = /glade/scratch/briancurtis/FV3_RT/rt_49377/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_debug_cfsr +working dir = /glade/scratch/briancurtis/FV3_RT/rt_29182/datm_debug_cfsr Checking test 106 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 -0:The total amount of wall time = 283.792470 +0:The total amount of wall time = 284.541813 Test 106 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 26 21:22:48 MDT 2021 -Elapsed time: 01h:52m:35s. Have a nice day! +Tue Apr 27 12:27:56 MDT 2021 +Elapsed time: 01h:26m:58s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b6721802ea..291bdc6ed5 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,28 +1,28 @@ -Mon Apr 26 21:42:04 EDT 2021 +Tue Apr 27 16:18:40 EDT 2021 Start Regression test -Compile 001 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 736 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 767 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 684 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 748 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 809 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 819 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 722 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 790 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 703 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 731 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 239 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 291 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 014 elapsed time 278 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 015 elapsed time 799 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 016 elapsed time 265 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 568 seconds. APP=DATM_NEMS -Compile 018 elapsed time 262 seconds. APP=DATM_NEMS DEBUG=Y -Compile 019 elapsed time 546 seconds. APP=DATM - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_control +Compile 001 elapsed time 800 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 769 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 875 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 815 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 828 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 875 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 812 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 842 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 749 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 745 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 743 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 259 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 311 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 014 elapsed time 361 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 015 elapsed time 822 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 016 elapsed time 329 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 017 elapsed time 656 seconds. APP=DATM_NEMS +Compile 018 elapsed time 337 seconds. APP=DATM_NEMS DEBUG=Y +Compile 019 elapsed time 649 seconds. APP=DATM + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -87,13 +87,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.111154 +The total amount of wall time = 48.411708 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -158,13 +158,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 75.476882 +The total amount of wall time = 54.038134 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -229,13 +229,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 70.561583 +The total amount of wall time = 70.103007 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -282,13 +282,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 21.599893 +The total amount of wall time = 22.370087 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_read_inc +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.078927 +The total amount of wall time = 44.505856 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -404,13 +404,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 109.338278 +The total amount of wall time = 98.327665 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 43.189779 +The total amount of wall time = 43.859479 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -506,13 +506,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 218.235894 +The total amount of wall time = 244.014100 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -557,13 +557,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.920010 +The total amount of wall time = 40.778740 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.176716 +The total amount of wall time = 45.391778 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -659,13 +659,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.032957 +The total amount of wall time = 112.586694 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -730,13 +730,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 76.530505 +The total amount of wall time = 48.507927 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -801,13 +801,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.184305 +The total amount of wall time = 35.694660 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 48.726166 +The total amount of wall time = 54.978482 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_iau -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_iau +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_iau +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 41.864550 +The total amount of wall time = 43.415811 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -994,13 +994,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.581603 +The total amount of wall time = 84.839456 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1071,13 +1071,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 95.114092 +The total amount of wall time = 95.296239 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_control_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 42.826685 +The total amount of wall time = 40.839506 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_stretched +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1201,13 +1201,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 343.493884 +The total amount of wall time = 314.173848 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1271,13 +1271,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 338.933053 +The total amount of wall time = 342.289363 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1285,25 +1285,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 252.193826 +The total amount of wall time = 252.978821 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 136.414603 +The total amount of wall time = 136.091442 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1314,13 +1314,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 249.901188 +The total amount of wall time = 254.064748 Test 023 fv3_regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 249.159266 +The total amount of wall time = 279.765691 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1343,13 +1343,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 295.480085 +The total amount of wall time = 340.676541 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1394,13 +1394,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 46.926199 +The total amount of wall time = 51.758332 Test 026 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,13 +1445,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.848791 +The total amount of wall time = 73.447746 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1496,13 +1496,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 47.096774 +The total amount of wall time = 47.813269 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1547,13 +1547,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.324302 +The total amount of wall time = 122.898842 Test 029 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1598,13 +1598,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 71.669789 +The total amount of wall time = 54.109929 Test 030 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1649,13 +1649,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 57.490113 +The total amount of wall time = 53.472318 Test 031 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 41.711170 +The total amount of wall time = 71.236672 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 78.506101 +The total amount of wall time = 81.594874 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_cpt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1812,13 +1812,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 294.351036 +The total amount of wall time = 290.064457 Test 034 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1907,13 +1907,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.562715 +The total amount of wall time = 185.397952 Test 035 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_rrfs_v1alpha +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_rrfs_v1alpha Checking test 036 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1978,13 +1978,13 @@ Checking test 036 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.625336 +The total amount of wall time = 91.949494 Test 036 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2049,13 +2049,13 @@ Checking test 037 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.042993 +The total amount of wall time = 90.600948 Test 037 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2120,13 +2120,13 @@ Checking test 038 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.826813 +The total amount of wall time = 88.865189 Test 038 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_thompson Checking test 039 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2191,13 +2191,13 @@ Checking test 039 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.488171 +The total amount of wall time = 84.544462 Test 039 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_thompson_no_aero Checking test 040 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2262,13 +2262,13 @@ Checking test 040 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.149006 +The total amount of wall time = 87.970591 Test 040 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2333,13 +2333,13 @@ Checking test 041 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.248804 +The total amount of wall time = 99.461238 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2416,13 +2416,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 150.169605 +The total amount of wall time = 197.437696 Test 042 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2469,13 +2469,13 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 94.140682 +The total amount of wall time = 89.604412 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2540,13 +2540,13 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 59.511326 +The total amount of wall time = 56.049662 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_RRTMGP Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2611,13 +2611,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.563994 +The total amount of wall time = 199.101175 Test 045 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_RRTMGP_c192L127 Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2676,13 +2676,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 817.947560 +The total amount of wall time = 819.739264 Test 046 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_RRTMGP_2thrd Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2747,13 +2747,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 307.565799 +The total amount of wall time = 307.365741 Test 047 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfsv16_csawmg Checking test 048 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2798,13 +2798,13 @@ Checking test 048 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 131.039409 +The total amount of wall time = 131.823451 Test 048 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfsv16_csawmgt Checking test 049 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2849,13 +2849,13 @@ Checking test 049 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 128.766381 +The total amount of wall time = 129.635455 Test 049 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gocart_clm Checking test 050 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2900,13 +2900,13 @@ Checking test 050 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 79.235811 +The total amount of wall time = 70.701664 Test 050 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_flake Checking test 051 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2971,13 +2971,13 @@ Checking test 051 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 120.443129 +The total amount of wall time = 104.348996 Test 051 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_HAFS_v0_hwrf_thompson Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3042,13 +3042,13 @@ Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 199.754067 +The total amount of wall time = 170.942700 Test 052 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_esg_HAFS_v0_hwrf_thompson Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3063,13 +3063,13 @@ Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 324.571769 +The total amount of wall time = 337.187804 Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfsv16_ugwpv1 Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3128,13 +3128,13 @@ Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 189.653055 +The total amount of wall time = 189.749684 Test 054 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfsv16_ugwpv1_warmstart Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3193,13 +3193,13 @@ Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 188.976646 +The total amount of wall time = 189.515798 Test 055 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_ras Checking test 056 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3264,13 +3264,13 @@ Checking test 056 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 117.042751 +The total amount of wall time = 130.685352 Test 056 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_debug Checking test 057 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3335,13 +3335,13 @@ Checking test 057 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.586633 +The total amount of wall time = 255.370684 Test 057 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_RRTMGP_debug Checking test 058 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3406,13 +3406,13 @@ Checking test 058 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 379.496124 +The total amount of wall time = 378.837044 Test 058 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_regional_control_debug Checking test 059 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3420,13 +3420,13 @@ Checking test 059 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 368.322112 +The total amount of wall time = 369.388614 Test 059 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_control_debug Checking test 060 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3453,13 +3453,13 @@ Checking test 060 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 135.821384 +The total amount of wall time = 135.932762 Test 060 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_stretched_nest_debug Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3476,13 +3476,13 @@ Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 437.935132 +The total amount of wall time = 439.101313 Test 061 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gsd_debug Checking test 062 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3547,13 +3547,13 @@ Checking test 062 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 204.165132 +The total amount of wall time = 206.117471 Test 062 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gsd_diag3d_debug Checking test 063 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3618,13 +3618,13 @@ Checking test 063 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.595578 +The total amount of wall time = 241.086197 Test 063 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_thompson_debug Checking test 064 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3689,13 +3689,13 @@ Checking test 064 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 349.760890 +The total amount of wall time = 350.169384 Test 064 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_thompson_no_aero_debug Checking test 065 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3760,13 +3760,13 @@ Checking test 065 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 337.130034 +The total amount of wall time = 339.160288 Test 065 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_rrfs_v1beta_debug Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3831,13 +3831,13 @@ Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 198.834815 +The total amount of wall time = 199.636643 Test 066 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_rrfs_v1alpha_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_rrfs_v1alpha_debug Checking test 067 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3902,13 +3902,13 @@ Checking test 067 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.134310 +The total amount of wall time = 200.035932 Test 067 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3973,13 +3973,13 @@ Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 210.198241 +The total amount of wall time = 210.695829 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3994,13 +3994,13 @@ Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 381.937528 +The total amount of wall time = 382.838215 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4059,13 +4059,13 @@ Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 590.422849 +The total amount of wall time = 589.878222 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/fv3_gfs_v16_ras_debug Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4130,13 +4130,13 @@ Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.268391 +The total amount of wall time = 331.857285 Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4186,13 +4186,13 @@ Checking test 072 cpld_control results .... 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 = 96.211505 +The total amount of wall time = 107.684022 Test 072 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4242,13 +4242,13 @@ Checking test 073 cpld_restart results .... 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 = 55.485385 +The total amount of wall time = 81.520686 Test 073 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_controlfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4298,13 +4298,13 @@ Checking test 074 cpld_controlfrac results .... 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 = 96.432304 +The total amount of wall time = 102.260391 Test 074 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restartfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4354,13 +4354,13 @@ Checking test 075 cpld_restartfrac results .... 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 = 51.739257 +The total amount of wall time = 52.478322 Test 075 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4410,13 +4410,13 @@ Checking test 076 cpld_2threads results .... 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 = 130.628294 +The total amount of wall time = 131.235801 Test 076 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4466,13 +4466,13 @@ Checking test 077 cpld_decomp results .... 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 = 93.746754 +The total amount of wall time = 122.544342 Test 077 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4522,13 +4522,13 @@ Checking test 078 cpld_satmedmf results .... 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 = 93.398936 +The total amount of wall time = 98.336220 Test 078 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4578,13 +4578,13 @@ Checking test 079 cpld_ca results .... 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 = 93.622677 +The total amount of wall time = 123.972731 Test 079 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4634,13 +4634,13 @@ Checking test 080 cpld_control_c192 results .... 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.630775 +The total amount of wall time = 434.244173 Test 080 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4690,13 +4690,13 @@ Checking test 081 cpld_restart_c192 results .... 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 = 283.007012 +The total amount of wall time = 282.343978 Test 081 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4746,13 +4746,13 @@ Checking test 082 cpld_controlfrac_c192 results .... 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 = 435.752709 +The total amount of wall time = 410.585674 Test 082 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4802,13 +4802,13 @@ Checking test 083 cpld_restartfrac_c192 results .... 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 = 289.493891 +The total amount of wall time = 282.989624 Test 083 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4861,13 +4861,13 @@ Checking test 084 cpld_control_c384 results .... 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 = 1527.265778 +The total amount of wall time = 1536.226173 Test 084 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4920,13 +4920,13 @@ Checking test 085 cpld_restart_c384 results .... 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 = 783.970615 +The total amount of wall time = 793.643664 Test 085 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4979,13 +4979,13 @@ Checking test 086 cpld_controlfrac_c384 results .... 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 = 1515.848605 +The total amount of wall time = 1526.568949 Test 086 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5038,13 +5038,13 @@ Checking test 087 cpld_restartfrac_c384 results .... 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 = 772.779654 +The total amount of wall time = 800.647021 Test 087 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5097,13 +5097,13 @@ Checking test 088 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 882.693777 +The total amount of wall time = 886.436947 Test 088 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5156,13 +5156,13 @@ Checking test 089 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 466.048680 +The total amount of wall time = 469.234671 Test 089 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5215,13 +5215,13 @@ Checking test 090 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 867.681883 +The total amount of wall time = 887.795595 Test 090 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5274,13 +5274,13 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -The total amount of wall time = 451.981915 +The total amount of wall time = 459.629961 Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_debug Checking test 092 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5330,13 +5330,13 @@ Checking test 092 cpld_debug results .... 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 = 272.569665 +The total amount of wall time = 278.401001 Test 092 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/cpld_debugfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/cpld_debugfrac Checking test 093 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5386,73 +5386,73 @@ Checking test 093 cpld_debugfrac results .... 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 = 272.136907 +The total amount of wall time = 277.123424 Test 093 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_control_cfsr Checking test 094 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 = 107.891250 +The total amount of wall time = 121.372517 Test 094 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_restart_cfsr Checking test 095 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 = 66.102327 +The total amount of wall time = 60.924034 Test 095 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_control_gefs Checking test 096 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 = 96.482414 +The total amount of wall time = 99.716372 Test 096 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_bulk_cfsr Checking test 097 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 = 100.638184 +The total amount of wall time = 104.074590 Test 097 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_bulk_gefs Checking test 098 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.883617 +The total amount of wall time = 131.372054 Test 098 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_mx025_gefs Checking test 099 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5461,23 +5461,23 @@ Checking test 099 datm_mx025_gefs results .... 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 = 392.657802 +The total amount of wall time = 404.738049 Test 099 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_45847/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_21581/datm_debug_cfsr Checking test 100 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 = 230.683675 +The total amount of wall time = 235.674094 Test 100 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 26 23:03:43 EDT 2021 -Elapsed time: 01h:21m:40s. Have a nice day! +Tue Apr 27 17:44:27 EDT 2021 +Elapsed time: 01h:25m:48s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 3facfb30d3..a0bc216149 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Mon Apr 26 21:47:05 UTC 2021 +Tue Apr 27 15:45:58 UTC 2021 Start Regression test -Compile 001 elapsed time 284 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 289 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 327 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 285 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 160 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 103 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 311 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 130 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 009 elapsed time 288 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 259 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfdlmp +Compile 001 elapsed time 302 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 298 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 332 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 303 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 182 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 105 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 512 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 308 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 009 elapsed time 505 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 277 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 229.261942 + 0: The total amount of wall time = 296.000548 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +141,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 625.104844 + 0: The total amount of wall time = 621.534802 Test 002 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +194,13 @@ Checking test 003 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 311.890401 + 0: The total amount of wall time = 332.736694 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -265,13 +265,13 @@ Checking test 004 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 359.294193 + 0: The total amount of wall time = 343.983863 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -336,13 +336,13 @@ Checking test 005 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 617.742571 + 0: The total amount of wall time = 643.000532 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_RRTMGP Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -407,13 +407,13 @@ Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 708.369739 + 0: The total amount of wall time = 723.859467 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -502,13 +502,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 802.645205 + 0: The total amount of wall time = 814.634428 Test 007 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -573,13 +573,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.283999 + 0: The total amount of wall time = 385.897001 Test 008 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_thompson_no_aero Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -644,13 +644,13 @@ Checking test 009 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 384.813145 + 0: The total amount of wall time = 375.724206 Test 009 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_rrfs_v1alpha Checking test 010 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 389.457401 + 0: The total amount of wall time = 400.971318 Test 010 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_rrfs_v1beta Checking test 011 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 378.289913 + 0: The total amount of wall time = 405.843930 Test 011 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_HAFS_v0_hwrf_thompson Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -857,13 +857,13 @@ Checking test 012 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 606.161529 + 0: The total amount of wall time = 613.908627 Test 012 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_esg_HAFS_v0_hwrf_thompson Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -878,13 +878,13 @@ Checking test 013 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 447.216400 + 0: The total amount of wall time = 440.623628 Test 013 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfsv16_ugwpv1 Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -943,13 +943,13 @@ Checking test 014 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 912.106235 + 0: The total amount of wall time = 892.041991 Test 014 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfsv16_ugwpv1_warmstart Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1008,13 +1008,13 @@ Checking test 015 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 900.993601 + 0: The total amount of wall time = 909.821806 Test 015 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_ras Checking test 016 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 016 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 566.499709 + 0: The total amount of wall time = 553.600976 Test 016 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_control_debug Checking test 017 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1112,13 +1112,13 @@ Checking test 017 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 82.251365 + 0: The total amount of wall time = 80.180993 Test 017 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_regional_control_debug Checking test 018 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1126,13 +1126,13 @@ Checking test 018 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 166.910342 + 0: The total amount of wall time = 170.074345 Test 018 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.396044 + 0: The total amount of wall time = 120.913980 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.015934 + 0: The total amount of wall time = 117.619967 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 124.780297 + 0: The total amount of wall time = 117.317354 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_thompson_debug Checking test 022 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.833351 + 0: The total amount of wall time = 199.290574 Test 022 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_thompson_no_aero_debug Checking test 023 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.375165 + 0: The total amount of wall time = 189.766504 Test 023 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v15p2_debug Checking test 024 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 288.694829 + 0: The total amount of wall time = 298.852778 Test 024 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_debug Checking test 025 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1623,13 +1623,13 @@ Checking test 025 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.193022 + 0: The total amount of wall time = 183.611057 Test 025 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_RRTMGP_debug Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1694,13 +1694,13 @@ Checking test 026 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 356.046099 + 0: The total amount of wall time = 345.788060 Test 026 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_multigases +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_multigases Checking test 027 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1771,13 +1771,13 @@ Checking test 027 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 421.491732 + 0: The total amount of wall time = 434.453826 Test 027 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_HAFS_v0_hwrf_thompson_debug Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1842,13 +1842,13 @@ Checking test 028 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 129.209005 + 0: The total amount of wall time = 129.936001 Test 028 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1863,13 +1863,13 @@ Checking test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 227.885895 + 0: The total amount of wall time = 222.563491 Test 029 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfsv16_ugwpv1_debug Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1928,13 +1928,13 @@ Checking test 030 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 394.100103 + 0: The total amount of wall time = 601.440805 Test 030 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_264545/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244927/fv3_gfs_v16_ras_debug Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1999,11 +1999,11 @@ Checking test 031 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.157234 + 0: The total amount of wall time = 221.906758 Test 031 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 26 22:20:18 UTC 2021 -Elapsed time: 00h:33m:14s. Have a nice day! +Tue Apr 27 17:50:39 UTC 2021 +Elapsed time: 02h:04m:42s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 117af7da06..32dd8e29cb 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,30 +1,30 @@ -Tue Apr 27 01:39:29 UTC 2021 +Tue Apr 27 18:02:41 UTC 2021 Start Regression test -Compile 001 elapsed time 519 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 535 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 487 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 526 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 534 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 583 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 590 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 1033 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 009 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 532 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 554 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 593 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 201 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 201 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 015 elapsed time 203 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 581 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 017 elapsed time 574 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 194 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 469 seconds. APP=DATM_NEMS -Compile 020 elapsed time 126 seconds. APP=DATM_NEMS DEBUG=Y -Compile 021 elapsed time 410 seconds. APP=DATM - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_control +Compile 001 elapsed time 545 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 915 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 978 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 977 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 623 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 920 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 678 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 801 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 009 elapsed time 713 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 870 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 595 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 624 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 269 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 286 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 015 elapsed time 462 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 656 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 017 elapsed time 749 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 453 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 501 seconds. APP=DATM_NEMS +Compile 020 elapsed time 368 seconds. APP=DATM_NEMS DEBUG=Y +Compile 021 elapsed time 500 seconds. APP=DATM + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -89,13 +89,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.072111 + 0: The total amount of wall time = 40.185413 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -160,13 +160,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.421226 + 0: The total amount of wall time = 42.930480 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -231,13 +231,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 60.463161 + 0: The total amount of wall time = 61.573999 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -284,13 +284,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 19.192817 + 0: The total amount of wall time = 22.714603 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.054974 + 0: The total amount of wall time = 45.095747 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -406,13 +406,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.287828 + 0: The total amount of wall time = 118.547944 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -457,13 +457,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.952011 + 0: The total amount of wall time = 41.871322 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,7 +471,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK @@ -508,13 +508,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 47.642867 + 0: The total amount of wall time = 59.649629 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -559,13 +559,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.701797 + 0: The total amount of wall time = 41.927114 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -610,13 +610,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.027794 + 0: The total amount of wall time = 37.636424 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -661,13 +661,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.508423 + 0: The total amount of wall time = 108.351006 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -732,13 +732,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 40.457346 + 0: The total amount of wall time = 43.086235 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -803,13 +803,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 27.096825 + 0: The total amount of wall time = 29.246455 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -874,13 +874,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 44.395490 + 0: The total amount of wall time = 44.754501 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,13 +945,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 37.908652 + 0: The total amount of wall time = 40.387999 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -996,13 +996,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.477070 + 0: The total amount of wall time = 36.986068 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1048,13 +1048,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 335.231363 + 0: The total amount of wall time = 334.593577 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1100,13 +1100,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK - 0: The total amount of wall time = 404.723842 + 0: The total amount of wall time = 404.266239 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1152,13 +1152,13 @@ Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing out_grd.ant_9km .........OK Comparing out_grd.aoc_9km .........OK - 0: The total amount of wall time = 534.957675 + 0: The total amount of wall time = 535.731243 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1229,13 +1229,13 @@ Checking test 020 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 95.452954 + 0: The total amount of wall time = 94.402523 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1300,13 +1300,13 @@ Checking test 021 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 36.795654 + 0: The total amount of wall time = 36.785075 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1359,13 +1359,13 @@ Checking test 022 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.185936 + 0: The total amount of wall time = 248.667022 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1429,13 +1429,13 @@ Checking test 023 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK - 0: The total amount of wall time = 272.234685 + 0: The total amount of wall time = 273.927856 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1443,25 +1443,25 @@ Checking test 024 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 233.074807 + 0: The total amount of wall time = 279.395182 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_restart Checking test 025 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 128.361906 + 0: The total amount of wall time = 127.322856 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_quilt Checking test 026 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1472,13 +1472,13 @@ Checking test 026 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 227.392162 + 0: The total amount of wall time = 238.851498 Test 026 fv3_regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_quilt_hafs Checking test 027 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1487,27 +1487,27 @@ Checking test 027 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 224.709671 + 0: The total amount of wall time = 235.075213 Test 027 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_quilt_netcdf_parallel Checking test 028 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 226.665177 + 0: The total amount of wall time = 243.479043 Test 028 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmp Checking test 029 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 029 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.553482 + 0: The total amount of wall time = 44.487406 Test 029 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmprad_gwd Checking test 030 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1603,13 +1603,13 @@ Checking test 030 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.529058 + 0: The total amount of wall time = 72.933007 Test 030 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmprad_noahmp Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1654,13 +1654,13 @@ Checking test 031 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 42.565324 + 0: The total amount of wall time = 42.724797 Test 031 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_csawmg Checking test 032 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,13 +1705,13 @@ Checking test 032 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.786825 + 0: The total amount of wall time = 118.300028 Test 032 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_satmedmf Checking test 033 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1756,13 +1756,13 @@ Checking test 033 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.950469 + 0: The total amount of wall time = 54.632825 Test 033 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_satmedmfq Checking test 034 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1807,13 @@ Checking test 034 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 45.588432 + 0: The total amount of wall time = 48.319208 Test 034 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmp_32bit Checking test 035 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,13 +1858,13 @@ Checking test 035 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 36.783626 + 0: The total amount of wall time = 249.372704 Test 035 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfdlmprad_32bit_post Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1913,13 +1913,13 @@ Checking test 036 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 71.658339 + 0: The total amount of wall time = 106.980901 Test 036 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_cpt Checking test 037 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1970,13 +1970,13 @@ Checking test 037 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 260.465086 + 0: The total amount of wall time = 318.399149 Test 037 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gsd Checking test 038 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2065,13 +2065,13 @@ Checking test 038 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.557241 + 0: The total amount of wall time = 215.850902 Test 038 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_rrfs_v1alpha Checking test 039 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2136,13 +2136,13 @@ Checking test 039 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.411355 + 0: The total amount of wall time = 313.212675 Test 039 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_rap Checking test 040 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2207,13 +2207,13 @@ Checking test 040 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.405830 + 0: The total amount of wall time = 131.276255 Test 040 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_hrrr Checking test 041 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2278,13 +2278,13 @@ Checking test 041 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.376772 + 0: The total amount of wall time = 148.974434 Test 041 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_thompson Checking test 042 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2349,13 +2349,13 @@ Checking test 042 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 76.963255 + 0: The total amount of wall time = 112.580340 Test 042 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_thompson_no_aero Checking test 043 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2420,13 +2420,13 @@ Checking test 043 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 78.285999 + 0: The total amount of wall time = 78.507607 Test 043 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_rrfs_v1beta Checking test 044 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2491,13 +2491,13 @@ Checking test 044 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.468611 + 0: The total amount of wall time = 311.548427 Test 044 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16 Checking test 045 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2574,13 +2574,13 @@ Checking test 045 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 132.681352 + 0: The total amount of wall time = 154.519495 Test 045 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_restart Checking test 046 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2627,13 +2627,13 @@ Checking test 046 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 79.654138 + 0: The total amount of wall time = 80.776125 Test 046 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_stochy Checking test 047 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2698,13 +2698,13 @@ Checking test 047 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 46.800525 + 0: The total amount of wall time = 50.537950 Test 047 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_RRTMGP Checking test 048 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2769,13 +2769,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 162.478083 + 0: The total amount of wall time = 182.580188 Test 048 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_RRTMGP_c192L127 Checking test 049 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2834,13 +2834,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 664.799646 + 0: The total amount of wall time = 667.312600 Test 049 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_RRTMGP_2thrd Checking test 050 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2905,13 +2905,13 @@ Checking test 050 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 246.592759 + 0: The total amount of wall time = 271.438404 Test 050 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfsv16_csawmg Checking test 051 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2956,13 +2956,13 @@ Checking test 051 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.972328 + 0: The total amount of wall time = 139.027550 Test 051 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfsv16_csawmgt Checking test 052 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3007,13 +3007,13 @@ Checking test 052 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 113.437438 + 0: The total amount of wall time = 140.094559 Test 052 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gocart_clm Checking test 053 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3058,13 +3058,13 @@ Checking test 053 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 47.321795 + 0: The total amount of wall time = 46.790885 Test 053 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_flake Checking test 054 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3129,13 +3129,13 @@ Checking test 054 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 93.241814 + 0: The total amount of wall time = 92.442711 Test 054 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_HAFS_v0_hwrf_thompson Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3200,13 +3200,13 @@ Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 142.859063 + 0: The total amount of wall time = 142.951879 Test 055 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_esg_HAFS_v0_hwrf_thompson Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3221,13 +3221,13 @@ Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 280.539641 + 0: The total amount of wall time = 277.698765 Test 056 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfsv16_ugwpv1 Checking test 057 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3286,13 +3286,13 @@ Checking test 057 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 174.294594 + 0: The total amount of wall time = 165.190309 Test 057 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfsv16_ugwpv1_warmstart Checking test 058 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3351,13 +3351,13 @@ Checking test 058 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 168.993745 + 0: The total amount of wall time = 170.768923 Test 058 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_ras Checking test 059 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3422,13 +3422,13 @@ Checking test 059 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.897990 + 0: The total amount of wall time = 89.548331 Test 059 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_debug Checking test 060 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3493,13 +3493,13 @@ Checking test 060 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.260840 + 0: The total amount of wall time = 241.841887 Test 060 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_RRTMGP_debug Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3564,13 @@ Checking test 061 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 359.230018 + 0: The total amount of wall time = 361.971638 Test 061 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_regional_control_debug Checking test 062 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3578,13 +3578,13 @@ Checking test 062 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 357.184705 + 0: The total amount of wall time = 353.775749 Test 062 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_control_debug Checking test 063 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3611,13 +3611,13 @@ Checking test 063 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 135.510698 + 0: The total amount of wall time = 137.351954 Test 063 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_stretched_nest_debug Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3634,13 +3634,13 @@ Checking test 064 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 372.218957 + 0: The total amount of wall time = 369.607516 Test 064 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gsd_debug Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3705,13 +3705,13 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.353145 + 0: The total amount of wall time = 205.624615 Test 065 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gsd_diag3d_debug Checking test 066 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3776,13 +3776,13 @@ Checking test 066 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.296107 + 0: The total amount of wall time = 245.435943 Test 066 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_thompson_debug Checking test 067 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3847,13 +3847,13 @@ Checking test 067 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.455154 + 0: The total amount of wall time = 337.730226 Test 067 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_thompson_no_aero_debug Checking test 068 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3918,13 +3918,13 @@ Checking test 068 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.819287 + 0: The total amount of wall time = 330.754860 Test 068 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3989,13 +3989,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.594775 + 0: The total amount of wall time = 198.189479 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4060,13 +4060,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.612340 + 0: The total amount of wall time = 201.829170 Test 070 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4131,13 +4131,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 202.647800 + 0: The total amount of wall time = 203.258493 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4152,13 +4152,13 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 393.675122 + 0: The total amount of wall time = 385.230070 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfsv16_ugwpv1_debug Checking test 073 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4217,13 +4217,13 @@ Checking test 073 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 560.214127 + 0: The total amount of wall time = 573.443965 Test 073 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/fv3_gfs_v16_ras_debug Checking test 074 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4288,13 +4288,13 @@ Checking test 074 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.802612 + 0: The total amount of wall time = 320.824399 Test 074 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_control Checking test 075 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4344,13 +4344,13 @@ Checking test 075 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 99.811957 + 0: The total amount of wall time = 93.791613 Test 075 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart Checking test 076 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4400,13 +4400,13 @@ Checking test 076 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 83.749052 + 0: The total amount of wall time = 57.460440 Test 076 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_controlfrac Checking test 077 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4456,13 +4456,13 @@ Checking test 077 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 95.298665 + 0: The total amount of wall time = 95.400099 Test 077 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restartfrac Checking test 078 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4512,13 +4512,13 @@ Checking test 078 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 68.479895 + 0: The total amount of wall time = 59.065894 Test 078 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_2threads Checking test 079 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4568,13 +4568,13 @@ Checking test 079 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 124.523906 + 0: The total amount of wall time = 116.209587 Test 079 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_decomp Checking test 080 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4624,13 +4624,13 @@ Checking test 080 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 105.152783 + 0: The total amount of wall time = 91.816614 Test 080 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_satmedmf Checking test 081 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4680,13 +4680,13 @@ Checking test 081 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.292257 + 0: The total amount of wall time = 92.527779 Test 081 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_ca Checking test 082 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4736,13 +4736,13 @@ Checking test 082 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.729147 + 0: The total amount of wall time = 91.920872 Test 082 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_control_c192 Checking test 083 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4792,13 +4792,13 @@ Checking test 083 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 406.110724 + 0: The total amount of wall time = 379.447336 Test 083 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart_c192 Checking test 084 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4848,13 +4848,13 @@ Checking test 084 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 301.389874 + 0: The total amount of wall time = 273.586273 Test 084 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_controlfrac_c192 Checking test 085 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4904,13 +4904,13 @@ Checking test 085 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 390.633860 + 0: The total amount of wall time = 379.593153 Test 085 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restartfrac_c192 Checking test 086 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4960,13 +4960,13 @@ Checking test 086 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 287.305882 + 0: The total amount of wall time = 281.769737 Test 086 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_control_c384 Checking test 087 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5019,13 +5019,13 @@ Checking test 087 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1315.709613 + 0: The total amount of wall time = 1339.836812 Test 087 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart_c384 Checking test 088 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5078,13 +5078,13 @@ Checking test 088 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 791.235764 + 0: The total amount of wall time = 771.553679 Test 088 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_controlfrac_c384 Checking test 089 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5137,13 +5137,13 @@ Checking test 089 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 1349.905898 + 0: The total amount of wall time = 1336.456176 Test 089 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restartfrac_c384 Checking test 090 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5196,13 +5196,13 @@ Checking test 090 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 772.255827 + 0: The total amount of wall time = 947.129585 Test 090 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmark Checking test 091 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5255,13 +5255,13 @@ Checking test 091 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 854.321882 + 0: The total amount of wall time = 815.611564 Test 091 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart_bmark Checking test 092 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5314,13 +5314,13 @@ Checking test 092 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 733.738013 + 0: The total amount of wall time = 481.100939 Test 092 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmarkfrac Checking test 093 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5373,13 +5373,13 @@ Checking test 093 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 915.561202 + 0: The total amount of wall time = 798.894792 Test 093 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart_bmarkfrac Checking test 094 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5432,13 +5432,13 @@ Checking test 094 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 636.858150 + 0: The total amount of wall time = 528.528634 Test 094 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmarkfrac_v16 Checking test 095 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5491,13 +5491,13 @@ Checking test 095 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1344.450512 + 0: The total amount of wall time = 1330.979927 Test 095 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmarkfrac_v16_nsst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmarkfrac_v16_nsst Checking test 096 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5550,13 +5550,13 @@ Checking test 096 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 1345.770674 + 0: The total amount of wall time = 1314.212632 Test 096 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_restart_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_restart_bmarkfrac_v16 Checking test 097 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5609,13 +5609,13 @@ Checking test 097 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK - 0: The total amount of wall time = 727.664418 + 0: The total amount of wall time = 906.045007 Test 097 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmark_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmark_wave Checking test 098 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5671,13 +5671,13 @@ Checking test 098 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1418.242096 + 0: The total amount of wall time = 1453.162091 Test 098 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmarkfrac_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmarkfrac_wave Checking test 099 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5733,13 +5733,13 @@ Checking test 099 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK - 0: The total amount of wall time = 1385.716850 + 0: The total amount of wall time = 1416.526768 Test 099 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_bmarkfrac_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_bmarkfrac_wave_v16 Checking test 100 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5794,13 +5794,13 @@ Checking test 100 cpld_bmarkfrac_wave_v16 results .... 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 = 904.433538 + 0: The total amount of wall time = 952.204161 Test 100 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_control_wave Checking test 101 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5853,13 +5853,13 @@ Checking test 101 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 769.446880 + 0: The total amount of wall time = 767.732249 Test 101 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_debug Checking test 102 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5909,13 +5909,13 @@ Checking test 102 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 293.658221 + 0: The total amount of wall time = 292.461581 Test 102 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/cpld_debugfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/cpld_debugfrac Checking test 103 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5965,73 +5965,73 @@ Checking test 103 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 287.369452 + 0: The total amount of wall time = 289.728122 Test 103 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_control_cfsr Checking test 104 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 - 0: The total amount of wall time = 102.325532 + 0: The total amount of wall time = 99.128154 Test 104 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_restart_cfsr Checking test 105 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 - 0: The total amount of wall time = 64.104852 + 0: The total amount of wall time = 67.001094 Test 105 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_control_gefs Checking test 106 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 - 0: The total amount of wall time = 121.990967 + 0: The total amount of wall time = 95.022813 Test 106 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_bulk_cfsr Checking test 107 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 - 0: The total amount of wall time = 98.261851 + 0: The total amount of wall time = 93.594686 Test 107 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_bulk_gefs Checking test 108 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 - 0: The total amount of wall time = 100.393023 + 0: The total amount of wall time = 93.572720 Test 108 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_mx025_cfsr Checking test 109 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6040,13 +6040,13 @@ Checking test 109 datm_mx025_cfsr results .... 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 = 378.028528 + 0: The total amount of wall time = 381.303843 Test 109 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_mx025_gefs Checking test 110 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6055,23 +6055,23 @@ Checking test 110 datm_mx025_gefs results .... 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 = 374.816772 + 0: The total amount of wall time = 366.678161 Test 110 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_292562/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_300416/datm_debug_cfsr Checking test 111 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 - 0: The total amount of wall time = 273.110670 + 0: The total amount of wall time = 269.310394 Test 111 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 27 03:19:46 UTC 2021 -Elapsed time: 01h:40m:18s. Have a nice day! +Tue Apr 27 20:23:34 UTC 2021 +Elapsed time: 02h:20m:54s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e545e2a507..060cbe85ff 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,22 @@ -Tue Apr 27 02:41:48 GMT 2021 +Tue Apr 27 20:06:47 GMT 2021 Start Regression test -Compile 001 elapsed time 2257 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1167 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 3406 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 2521 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2257 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 3704 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2910 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 2321 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 2867 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 3145 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 2887 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 404 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 389 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 014 elapsed time 404 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_control +Compile 001 elapsed time 4228 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1181 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 3851 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 3789 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 3532 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 3402 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 2913 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2382 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 4336 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 3705 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 1785 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 1471 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 014 elapsed time 461 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +81,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 62.310247 +The total amount of wall time = 66.578417 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +152,13 @@ Checking test 002 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.288030 +The total amount of wall time = 91.708382 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +205,13 @@ Checking test 003 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.555349 +The total amount of wall time = 28.222145 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_read_inc +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +276,13 @@ Checking test 004 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.533597 +The total amount of wall time = 54.110745 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGauss_netcdf_esmf Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -328,13 +327,13 @@ Checking test 005 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 164.106615 +The total amount of wall time = 181.722223 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +378,13 @@ Checking test 006 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.758237 +The total amount of wall time = 53.424711 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -394,7 +393,7 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK @@ -430,13 +429,13 @@ Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 73.849809 +The total amount of wall time = 71.647875 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +480,13 @@ Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.724483 +The total amount of wall time = 54.435702 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +531,13 @@ Checking test 009 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.071893 +The total amount of wall time = 54.061127 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_wrtGauss_nemsio_c192 Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,13 +582,13 @@ Checking test 010 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 143.753074 +The total amount of wall time = 142.318066 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +653,13 @@ Checking test 011 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.379875 +The total amount of wall time = 59.370547 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +724,13 @@ Checking test 012 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 45.132333 +The total amount of wall time = 48.757232 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +795,13 @@ Checking test 013 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.437972 +The total amount of wall time = 70.609299 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_iau -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_iau +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_iau +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +866,13 @@ Checking test 014 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.829225 +The total amount of wall time = 60.095101 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_lheatstrg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +917,13 @@ Checking test 015 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.019916 +The total amount of wall time = 53.931050 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_multigases_repro +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +994,13 @@ Checking test 016 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 131.959515 +The total amount of wall time = 141.367600 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_control_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1065,13 @@ Checking test 017 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.175208 +The total amount of wall time = 60.004090 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_stretched +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1124,13 @@ Checking test 018 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 390.671098 +The total amount of wall time = 388.938708 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_stretched_nest +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1194,13 @@ Checking test 019 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 416.476446 +The total amount of wall time = 420.074692 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1208,25 @@ Checking test 020 fv3_regional_control results .... 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.174968 +The total amount of wall time = 311.984407 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_restart Checking test 021 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 170.070711 +The total amount of wall time = 172.083691 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_quilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_quilt Checking test 022 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1238,13 +1237,13 @@ Checking test 022 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 307.329174 +The total amount of wall time = 306.568004 Test 022 fv3_regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1253,27 +1252,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 305.685710 +The total amount of wall time = 306.028588 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 307.004066 +The total amount of wall time = 308.395286 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfdlmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1318,13 +1317,13 @@ Checking test 025 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.465495 +The total amount of wall time = 61.570198 Test 025 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1369,13 +1368,13 @@ Checking test 026 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.759140 +The total amount of wall time = 61.417605 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1420,166 +1419,13 @@ Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.842028 +The total amount of wall time = 61.367006 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_csawmg -Checking test 028 fv3_csawmg 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 phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........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 = 151.489344 - -Test 028 fv3_csawmg PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_satmedmf -Checking test 029 fv3_satmedmf 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 phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........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 = 66.442464 - -Test 029 fv3_satmedmf PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_satmedmfq -Checking test 030 fv3_satmedmfq 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 phyf000.nemsio .........OK - Comparing phyf024.nemsio .........OK - Comparing dynf000.nemsio .........OK - Comparing dynf024.nemsio .........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 = 66.594157 - -Test 030 fv3_satmedmfq PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1624,13 +1470,13 @@ Checking test 031 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 52.803155 +The total amount of wall time = 52.267712 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1679,13 +1525,13 @@ Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 101.088640 +The total amount of wall time = 102.856998 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_cpt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_cpt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_cpt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1582,13 @@ Checking test 033 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 356.488497 +The total amount of wall time = 354.253882 Test 033 fv3_cpt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1831,13 +1677,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 228.345478 +The total amount of wall time = 231.270811 Test 034 fv3_gsd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_rrfs_v1alpha +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_rrfs_v1alpha Checking test 035 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1748,13 @@ Checking test 035 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.800129 +The total amount of wall time = 116.303643 Test 035 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_thompson Checking test 036 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1819,13 @@ Checking test 036 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.353275 +The total amount of wall time = 106.520148 Test 036 fv3_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_thompson_no_aero Checking test 037 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +1890,13 @@ Checking test 037 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 106.519838 +The total amount of wall time = 106.063837 Test 037 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16 Checking test 038 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2127,13 +1973,13 @@ Checking test 038 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.267163 +The total amount of wall time = 190.689933 Test 038 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_restart Checking test 039 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2180,13 +2026,13 @@ Checking test 039 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 103.112026 +The total amount of wall time = 102.475760 Test 039 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_stochy Checking test 040 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2251,13 +2097,13 @@ Checking test 040 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 66.549803 +The total amount of wall time = 67.699184 Test 040 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_RRTMGP Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2322,13 +2168,13 @@ Checking test 041 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 195.359494 +The total amount of wall time = 194.894559 Test 041 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_RRTMGP_c192L127 Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2387,13 +2233,13 @@ Checking test 042 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 846.342805 +The total amount of wall time = 839.246718 Test 042 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_RRTMGP_2thrd Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2458,13 +2304,13 @@ Checking test 043 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 325.743165 +The total amount of wall time = 321.929775 Test 043 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfsv16_csawmg Checking test 044 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2509,13 +2355,13 @@ Checking test 044 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.791083 +The total amount of wall time = 162.300391 Test 044 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfsv16_csawmgt Checking test 045 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2560,13 +2406,13 @@ Checking test 045 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 158.753049 +The total amount of wall time = 158.211310 Test 045 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gocart_clm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gocart_clm Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2611,13 +2457,13 @@ Checking test 046 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.341784 +The total amount of wall time = 67.624827 Test 046 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_flake Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2682,13 +2528,13 @@ Checking test 047 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 141.758732 +The total amount of wall time = 123.398225 Test 047 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_HAFS_v0_hwrf_thompson Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2753,13 +2599,13 @@ Checking test 048 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 194.681755 +The total amount of wall time = 195.058226 Test 048 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_esg_HAFS_v0_hwrf_thompson Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2774,13 +2620,13 @@ Checking test 049 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 368.268287 +The total amount of wall time = 373.199286 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfsv16_ugwpv1 Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2839,13 +2685,13 @@ Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 235.484787 +The total amount of wall time = 232.786423 Test 050 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfsv16_ugwpv1_warmstart Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2904,13 +2750,13 @@ Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 232.195604 +The total amount of wall time = 232.444958 Test 051 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_ras Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2975,13 +2821,13 @@ Checking test 052 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.944121 +The total amount of wall time = 124.877628 Test 052 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_debug Checking test 053 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3046,13 +2892,13 @@ Checking test 053 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 318.125899 +The total amount of wall time = 317.973417 Test 053 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_RRTMGP_debug Checking test 054 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3117,13 +2963,13 @@ Checking test 054 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 472.402302 +The total amount of wall time = 471.777683 Test 054 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_regional_control_debug Checking test 055 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3131,13 +2977,13 @@ Checking test 055 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 603.589988 +The total amount of wall time = 456.708973 Test 055 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_control_debug Checking test 056 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3164,13 +3010,13 @@ Checking test 056 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 177.761380 +The total amount of wall time = 177.429029 Test 056 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_stretched_nest_debug Checking test 057 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3187,13 +3033,13 @@ Checking test 057 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 660.391277 +The total amount of wall time = 540.126644 Test 057 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gsd_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gsd_debug Checking test 058 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3258,13 +3104,13 @@ Checking test 058 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 261.460532 +The total amount of wall time = 265.705582 Test 058 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gsd_diag3d_debug Checking test 059 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3329,13 +3175,13 @@ Checking test 059 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 657.309137 +The total amount of wall time = 346.834407 Test 059 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_thompson_debug Checking test 060 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3400,13 +3246,13 @@ Checking test 060 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 642.068019 +The total amount of wall time = 444.113573 Test 060 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_thompson_no_aero_debug Checking test 061 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3317,13 @@ Checking test 061 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 632.761138 +The total amount of wall time = 425.909747 Test 061 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_rrfs_v1beta_debug Checking test 062 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3388,13 @@ Checking test 062 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.995760 +The total amount of wall time = 255.896116 Test 062 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_rrfs_v1alpha_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_rrfs_v1alpha_debug Checking test 063 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3613,13 +3459,13 @@ Checking test 063 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.754732 +The total amount of wall time = 255.220946 Test 063 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,13 +3530,13 @@ Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 332.124398 +The total amount of wall time = 269.260440 Test 064 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3705,13 +3551,13 @@ Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 506.695497 +The total amount of wall time = 508.248241 Test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfsv16_ugwpv1_debug Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3770,13 +3616,13 @@ Checking test 066 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 821.943955 +The total amount of wall time = 739.064154 Test 066 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_102439/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_31260/fv3_gfs_v16_ras_debug Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3841,11 +3687,11 @@ Checking test 067 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 634.886063 +The total amount of wall time = 419.532699 Test 067 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 27 05:03:00 GMT 2021 -Elapsed time: 02h:21m:12s. Have a nice day! +Tue Apr 27 23:22:39 GMT 2021 +Elapsed time: 03h:15m:52s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 892551b30e..6ddb2787d9 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Mon Apr 26 22:28:41 UTC 2021 +Tue Apr 27 15:03:18 UTC 2021 Start Regression test -Compile 001 elapsed time 1178 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1004 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 1085 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 975 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 1062 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 1126 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1394 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 1001 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 959 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 998 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 1030 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 574 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 727 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 014 elapsed time 695 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_control +Compile 001 elapsed time 967 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1053 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 1010 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 953 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 942 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 1039 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1144 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 008 elapsed time 1026 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 997 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 1098 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1062 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 593 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 550 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 014 elapsed time 569 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -82,13 +82,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.107418 +The total amount of wall time = 53.478806 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 54.583041 +The total amount of wall time = 62.563014 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -224,13 +224,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 74.352794 +The total amount of wall time = 74.480843 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -277,13 +277,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 28.560342 +The total amount of wall time = 24.017257 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_read_inc -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_read_inc +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 50.901155 +The total amount of wall time = 49.611128 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -399,13 +399,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 177.958256 +The total amount of wall time = 133.667950 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -450,13 +450,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.870321 +The total amount of wall time = 54.766289 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -501,13 +501,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.865028 +The total amount of wall time = 57.277249 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.943454 +The total amount of wall time = 64.507816 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -603,13 +603,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 56.239465 +The total amount of wall time = 49.351676 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.628882 +The total amount of wall time = 128.318809 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 52.383610 +The total amount of wall time = 52.763575 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_ca +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 37.592184 +The total amount of wall time = 39.704445 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.319332 +The total amount of wall time = 63.623871 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_iau -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_iau +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -938,13 +938,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 55.607654 +The total amount of wall time = 48.547150 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -989,13 +989,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.655150 +The total amount of wall time = 52.931650 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,13 @@ Checking test 017 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 98.331988 +The total amount of wall time = 97.855322 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 018 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 47.273880 +The total amount of wall time = 48.293763 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 019 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 327.755026 +The total amount of wall time = 320.441418 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1266,13 @@ Checking test 020 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -The total amount of wall time = 410.539575 +The total amount of wall time = 369.026723 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1280,25 +1280,25 @@ Checking test 021 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 267.140137 +The total amount of wall time = 274.451386 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_restart Checking test 022 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 166.570199 +The total amount of wall time = 163.996295 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_quilt Checking test 023 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1309,13 +1309,13 @@ Checking test 023 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 246.798973 +The total amount of wall time = 257.652514 Test 023 fv3_regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_quilt_hafs Checking test 024 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1324,13 +1324,13 @@ Checking test 024 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 246.500328 +The total amount of wall time = 251.217777 Test 024 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_quilt_netcdf_parallel Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 025 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 248.414286 +The total amount of wall time = 254.596987 Test 025 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfdlmp Checking test 026 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 026 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.338606 +The total amount of wall time = 56.348327 Test 026 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfdlmprad_gwd Checking test 027 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1440,13 +1440,13 @@ Checking test 027 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.634541 +The total amount of wall time = 62.830228 Test 027 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfdlmprad_noahmp Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1491,13 +1491,13 @@ Checking test 028 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.936249 +The total amount of wall time = 55.550245 Test 028 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_csawmg Checking test 029 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1542,13 +1542,13 @@ Checking test 029 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.676077 +The total amount of wall time = 126.125340 Test 029 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_satmedmf Checking test 030 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,13 +1593,13 @@ Checking test 030 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.321530 +The total amount of wall time = 59.188669 Test 030 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_satmedmfq Checking test 031 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1644,13 +1644,13 @@ Checking test 031 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.940254 +The total amount of wall time = 58.675866 Test 031 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfdlmp_32bit Checking test 032 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 032 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.414208 +The total amount of wall time = 55.351868 Test 032 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfdlmprad_32bit_post Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1750,13 +1750,13 @@ Checking test 033 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 107.213021 +The total amount of wall time = 90.761738 Test 033 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_cpt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_cpt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_cpt Checking test 034 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1807,13 @@ Checking test 034 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 288.913310 +The total amount of wall time = 281.082940 Test 034 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,13 +1902,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.056119 +The total amount of wall time = 188.275943 Test 035 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_rrfs_v1alpha +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_rrfs_v1alpha Checking test 036 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 036 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.761627 +The total amount of wall time = 108.137387 Test 036 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rap +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2044,13 +2044,13 @@ Checking test 037 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.801079 +The total amount of wall time = 99.008386 Test 037 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_hrrr +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2115,13 +2115,13 @@ Checking test 038 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.576639 +The total amount of wall time = 97.697849 Test 038 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_thompson Checking test 039 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2186,13 +2186,13 @@ Checking test 039 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.517376 +The total amount of wall time = 92.065767 Test 039 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_thompson_no_aero Checking test 040 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2257,13 +2257,13 @@ Checking test 040 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.684697 +The total amount of wall time = 101.032253 Test 040 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2328,13 @@ Checking test 041 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.392167 +The total amount of wall time = 97.077853 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2411,13 +2411,13 @@ Checking test 042 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 190.158918 +The total amount of wall time = 176.538072 Test 042 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2464,13 +2464,13 @@ Checking test 043 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 116.577632 +The total amount of wall time = 125.340147 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2535,13 +2535,13 @@ Checking test 044 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.331407 +The total amount of wall time = 60.455676 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_RRTMGP Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2606,13 +2606,13 @@ Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 174.903428 +The total amount of wall time = 177.503569 Test 045 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_RRTMGP_c192L127 Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2671,13 +2671,13 @@ Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 715.066795 +The total amount of wall time = 719.066686 Test 046 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_RRTMGP_2thrd Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2742,13 +2742,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 278.129890 +The total amount of wall time = 282.437764 Test 047 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfsv16_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfsv16_csawmg Checking test 048 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2793,13 +2793,13 @@ Checking test 048 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.470643 +The total amount of wall time = 136.574583 Test 048 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfsv16_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfsv16_csawmgt Checking test 049 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2844,13 +2844,13 @@ Checking test 049 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 135.439343 +The total amount of wall time = 135.205770 Test 049 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gocart_clm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gocart_clm Checking test 050 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2895,13 +2895,13 @@ Checking test 050 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 68.217110 +The total amount of wall time = 62.504362 Test 050 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_flake Checking test 051 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2966,13 +2966,13 @@ Checking test 051 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 109.435677 +The total amount of wall time = 103.273948 Test 051 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_HAFS_v0_hwrf_thompson Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3037,13 +3037,13 @@ Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 162.063351 +The total amount of wall time = 160.606277 Test 052 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_esg_HAFS_v0_hwrf_thompson Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3058,13 +3058,13 @@ Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 304.881865 +The total amount of wall time = 307.533300 Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfsv16_ugwpv1 Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3123,13 +3123,13 @@ Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.132925 +The total amount of wall time = 193.696472 Test 054 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfsv16_ugwpv1_warmstart Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3188,13 +3188,13 @@ Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 192.180250 +The total amount of wall time = 193.312133 Test 055 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_ras Checking test 056 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3259,13 +3259,13 @@ Checking test 056 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 108.217185 +The total amount of wall time = 105.567745 Test 056 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_debug Checking test 057 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3330,13 +3330,13 @@ Checking test 057 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 250.071454 +The total amount of wall time = 256.639082 Test 057 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_RRTMGP_debug Checking test 058 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3401,13 +3401,13 @@ Checking test 058 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 355.461414 +The total amount of wall time = 350.745741 Test 058 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_regional_control_debug Checking test 059 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3415,13 +3415,13 @@ Checking test 059 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 352.126720 +The total amount of wall time = 350.214766 Test 059 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_control_debug Checking test 060 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3448,13 +3448,13 @@ Checking test 060 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 136.525571 +The total amount of wall time = 132.326639 Test 060 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_stretched_nest_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_stretched_nest_debug Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3471,13 +3471,13 @@ Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 415.046887 +The total amount of wall time = 414.233565 Test 061 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gsd_debug Checking test 062 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3542,13 +3542,13 @@ Checking test 062 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 202.386056 +The total amount of wall time = 199.113398 Test 062 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gsd_diag3d_debug Checking test 063 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3613,13 +3613,13 @@ Checking test 063 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 265.554442 +The total amount of wall time = 244.182660 Test 063 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_thompson_debug Checking test 064 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3684,13 +3684,13 @@ Checking test 064 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 332.948870 +The total amount of wall time = 334.620587 Test 064 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_thompson_no_aero_debug Checking test 065 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3755,13 +3755,13 @@ Checking test 065 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 322.437233 +The total amount of wall time = 318.530787 Test 065 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_rrfs_v1beta_debug Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3826,13 +3826,13 @@ Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.558636 +The total amount of wall time = 196.284335 Test 066 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_rrfs_v1alpha_debug Checking test 067 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3897,13 +3897,13 @@ Checking test 067 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 195.068738 +The total amount of wall time = 192.298783 Test 067 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3968,13 +3968,13 @@ Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.213134 +The total amount of wall time = 193.999998 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3989,13 +3989,13 @@ Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 361.517482 +The total amount of wall time = 355.566548 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4054,13 +4054,13 @@ Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 556.395348 +The total amount of wall time = 556.069755 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_8656/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_19433/fv3_gfs_v16_ras_debug Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4125,11 +4125,11 @@ Checking test 071 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 314.417205 +The total amount of wall time = 317.244974 Test 071 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Apr 26 23:12:19 UTC 2021 -Elapsed time: 00h:43m:39s. Have a nice day! +Tue Apr 27 15:46:00 UTC 2021 +Elapsed time: 00h:42m:42s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 985afa29ed..0a46dafb24 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,30 +1,30 @@ -Mon Apr 26 23:51:45 UTC 2021 +Tue Apr 27 16:28:17 UTC 2021 Start Regression test -Compile 001 elapsed time 1556 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1728 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 1450 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 1659 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1583 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 1663 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 2018 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 2522 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 009 elapsed time 1694 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1613 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 1767 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 1902 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 379 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 433 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 015 elapsed time 391 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -Compile 016 elapsed time 2808 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 017 elapsed time 2724 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 018 elapsed time 670 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 019 elapsed time 1367 seconds. APP=DATM_NEMS -Compile 020 elapsed time 410 seconds. APP=DATM_NEMS DEBUG=Y -Compile 021 elapsed time 1522 seconds. APP=DATM - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_control +Compile 001 elapsed time 1584 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1724 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1516 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1834 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1647 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 1764 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 2004 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 2574 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y +Compile 009 elapsed time 1843 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1646 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 1893 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1996 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 386 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 465 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y +Compile 015 elapsed time 438 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 016 elapsed time 2843 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +Compile 017 elapsed time 2755 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 018 elapsed time 734 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 019 elapsed time 1378 seconds. APP=DATM_NEMS +Compile 020 elapsed time 546 seconds. APP=DATM_NEMS DEBUG=Y +Compile 021 elapsed time 1433 seconds. APP=DATM + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -89,13 +89,13 @@ Checking test 001 fv3_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 64.332005 +[0] The total amount of wall time = 65.734777 Test 001 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -160,13 +160,13 @@ Checking test 002 fv3_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 65.499813 +[0] The total amount of wall time = 66.077196 Test 002 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -231,13 +231,13 @@ Checking test 003 fv3_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 70.061574 +[0] The total amount of wall time = 70.352405 Test 003 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -284,13 +284,13 @@ Checking test 004 fv3_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 30.385203 +[0] The total amount of wall time = 32.166980 Test 004 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -355,13 +355,13 @@ Checking test 005 fv3_read_inc results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 58.422744 +[0] The total amount of wall time = 59.279181 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -406,13 +406,13 @@ Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 174.154239 +[0] The total amount of wall time = 191.066733 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -457,13 +457,13 @@ Checking test 007 fv3_wrtGauss_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.408774 +[0] The total amount of wall time = 56.349506 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -471,10 +471,10 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile4.nc .........OK Comparing atmos_4xdaily.tile5.nc .........OK Comparing atmos_4xdaily.tile6.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -508,13 +508,13 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 71.796800 +[0] The total amount of wall time = 89.797095 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -559,13 +559,13 @@ Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.361649 +[0] The total amount of wall time = 56.508564 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -610,13 +610,13 @@ Checking test 010 fv3_wrtGauss_nemsio results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.028686 +[0] The total amount of wall time = 55.824473 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -661,13 +661,13 @@ Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 147.227740 +[0] The total amount of wall time = 143.945198 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -732,13 +732,13 @@ Checking test 012 fv3_stochy results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 67.301781 +[0] The total amount of wall time = 67.041507 Test 012 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_ca +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -803,13 +803,13 @@ Checking test 013 fv3_ca results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 44.888092 +[0] The total amount of wall time = 46.374818 Test 013 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -874,13 +874,13 @@ Checking test 014 fv3_lndp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 70.758022 +[0] The total amount of wall time = 71.498851 Test 014 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_iau -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_iau +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -945,13 +945,13 @@ Checking test 015 fv3_iau results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 56.774045 +[0] The total amount of wall time = 59.147682 Test 015 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -996,13 +996,13 @@ Checking test 016 fv3_lheatstrg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 55.906154 +[0] The total amount of wall time = 56.274937 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1048,13 +1048,13 @@ Checking test 017 fv3_gfdlmprad results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 548.355020 +[0] The total amount of wall time = 551.420549 Test 017 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1100,13 +1100,13 @@ Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing RESTART/phy_data.tile6.nc .........OK Comparing out_grd.glo_30m .........OK -[0] The total amount of wall time = 659.250572 +[0] The total amount of wall time = 660.581047 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_multigases_repro Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1177,13 +1177,13 @@ Checking test 019 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 158.060797 +[0] The total amount of wall time = 158.825553 Test 019 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_control_32bit Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,13 +1248,13 @@ Checking test 020 fv3_control_32bit results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 59.855739 +[0] The total amount of wall time = 61.075244 Test 020 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_stretched Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1307,13 +1307,13 @@ Checking test 021 fv3_stretched results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 445.216777 +[0] The total amount of wall time = 445.125169 Test 021 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_stretched_nest Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,13 +1377,13 @@ Checking test 022 fv3_stretched_nest results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/sfc_data.nest02.tile7.nc .........OK -[0] The total amount of wall time = 455.906985 +[0] The total amount of wall time = 459.516364 Test 022 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_control Checking test 023 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1391,25 +1391,25 @@ Checking test 023 fv3_regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 372.460571 +[0] The total amount of wall time = 372.362594 Test 023 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_restart Checking test 024 fv3_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 205.143905 +[0] The total amount of wall time = 205.922450 Test 024 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_quilt Checking test 025 fv3_regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1420,13 +1420,13 @@ Checking test 025 fv3_regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 263.693102 +[0] The total amount of wall time = 263.371852 Test 025 fv3_regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1435,27 +1435,27 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 263.476790 +[0] The total amount of wall time = 262.035700 Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc ............ALT CHECK......NOT OK + Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......NOT OK + Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......NOT OK + Comparing phyf024.nc .........OK -[0] The total amount of wall time = 438.366890 +[0] The total amount of wall time = 441.041114 -Test 027 fv3_regional_quilt_netcdf_parallel FAIL +Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 028 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 65.292295 +[0] The total amount of wall time = 66.077115 Test 028 fv3_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmprad_gwd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 029 fv3_gfdlmprad_gwd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 65.718131 +[0] The total amount of wall time = 66.460069 Test 029 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1602,13 +1602,13 @@ Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 65.653467 +[0] The total amount of wall time = 65.571922 Test 030 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1653,13 +1653,13 @@ Checking test 031 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 170.446908 +[0] The total amount of wall time = 170.708223 Test 031 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 032 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 71.423888 +[0] The total amount of wall time = 71.259305 Test 032 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1755,13 +1755,13 @@ Checking test 033 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 71.650584 +[0] The total amount of wall time = 72.309785 Test 033 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1806,13 @@ Checking test 034 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 54.987884 +[0] The total amount of wall time = 54.706374 Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1861,13 +1861,13 @@ Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 116.937467 +[0] The total amount of wall time = 116.360809 Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_cpt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_cpt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1918,13 +1918,13 @@ Checking test 036 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 306.932367 +[0] The total amount of wall time = 307.749628 Test 036 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2013,13 +2013,13 @@ Checking test 037 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 235.965746 +[0] The total amount of wall time = 236.439357 Test 037 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_rrfs_v1alpha +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_rrfs_v1alpha Checking test 038 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2084,13 +2084,13 @@ Checking test 038 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 123.160737 +[0] The total amount of wall time = 122.471965 Test 038 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rap -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rap +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,13 +2155,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 122.097333 +[0] The total amount of wall time = 121.559741 Test 039 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2226,13 +2226,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 120.785242 +[0] The total amount of wall time = 121.375979 Test 040 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_thompson Checking test 041 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2297,13 +2297,13 @@ Checking test 041 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.805468 +[0] The total amount of wall time = 114.427545 Test 041 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_thompson_no_aero Checking test 042 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2368,13 +2368,13 @@ Checking test 042 fv3_thompson_no_aero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 114.171719 +[0] The total amount of wall time = 113.773151 Test 042 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_rrfs_v1beta Checking test 043 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2439,13 +2439,13 @@ Checking test 043 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 122.803632 +[0] The total amount of wall time = 123.677273 Test 043 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16 Checking test 044 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2522,13 +2522,13 @@ Checking test 044 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 191.382293 +[0] The total amount of wall time = 195.026444 Test 044 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_restart Checking test 045 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2575,13 +2575,13 @@ Checking test 045 fv3_gfs_v16_restart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 111.244085 +[0] The total amount of wall time = 110.803163 Test 045 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_stochy Checking test 046 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2646,13 +2646,13 @@ Checking test 046 fv3_gfs_v16_stochy results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 76.049499 +[0] The total amount of wall time = 76.977355 Test 046 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_RRTMGP Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2717,13 +2717,13 @@ Checking test 047 fv3_gfs_v16_RRTMGP results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 219.078962 +[0] The total amount of wall time = 218.488402 Test 047 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_RRTMGP_c192L127 Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2782,13 +2782,13 @@ Checking test 048 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 862.638056 +[0] The total amount of wall time = 866.643399 Test 048 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_RRTMGP_2thrd Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2853,13 +2853,13 @@ Checking test 049 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 247.650342 +[0] The total amount of wall time = 245.323222 Test 049 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfsv16_csawmg Checking test 050 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2904,13 +2904,13 @@ Checking test 050 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 181.962377 +[0] The total amount of wall time = 181.002547 Test 050 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfsv16_csawmgt Checking test 051 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2955,13 +2955,13 @@ Checking test 051 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 178.077675 +[0] The total amount of wall time = 181.676348 Test 051 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gocart_clm Checking test 052 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3006,13 +3006,13 @@ Checking test 052 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 71.921716 +[0] The total amount of wall time = 70.150662 Test 052 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_flake Checking test 053 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3077,13 +3077,13 @@ Checking test 053 fv3_gfs_v16_flake results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 144.761763 +[0] The total amount of wall time = 145.318420 Test 053 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_HAFS_v0_hwrf_thompson Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3148,13 +3148,13 @@ Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 204.010339 +[0] The total amount of wall time = 202.907230 Test 054 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_esg_HAFS_v0_hwrf_thompson Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3169,13 +3169,13 @@ Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 325.153828 +[0] The total amount of wall time = 322.447810 Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfsv16_ugwpv1 Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3234,13 +3234,13 @@ Checking test 056 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 251.694042 +[0] The total amount of wall time = 251.602579 Test 056 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfsv16_ugwpv1_warmstart Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3299,13 +3299,13 @@ Checking test 057 fv3_gfsv16_ugwpv1_warmstart results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 251.787269 +[0] The total amount of wall time = 251.322770 Test 057 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_ras Checking test 058 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3370,13 +3370,13 @@ Checking test 058 fv3_gfs_v16_ras results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 132.268803 +[0] The total amount of wall time = 132.161648 Test 058 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_debug Checking test 059 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3441,13 +3441,13 @@ Checking test 059 fv3_gfs_v16_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 464.532649 +[0] The total amount of wall time = 461.651474 Test 059 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_RRTMGP_debug Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3512,13 +3512,13 @@ Checking test 060 fv3_gfs_v16_RRTMGP_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 673.482883 +[0] The total amount of wall time = 673.771566 Test 060 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_regional_control_debug Checking test 061 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3526,13 +3526,13 @@ Checking test 061 fv3_regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 781.221364 +[0] The total amount of wall time = 781.089733 Test 061 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_control_debug Checking test 062 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3559,13 +3559,13 @@ Checking test 062 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 278.363309 +[0] The total amount of wall time = 278.514807 Test 062 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_stretched_nest_debug Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3582,13 +3582,13 @@ Checking test 063 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 901.949558 +[0] The total amount of wall time = 902.198376 Test 063 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gsd_debug Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3653,13 +3653,13 @@ Checking test 064 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 416.932252 +[0] The total amount of wall time = 416.421106 Test 064 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gsd_diag3d_debug Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3724,13 +3724,13 @@ Checking test 065 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 485.590823 +[0] The total amount of wall time = 484.077038 Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_thompson_debug Checking test 066 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3795,13 +3795,13 @@ Checking test 066 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 726.994058 +[0] The total amount of wall time = 726.700425 Test 066 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_thompson_no_aero_debug Checking test 067 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3866,13 +3866,13 @@ Checking test 067 fv3_thompson_no_aero_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 702.501950 +[0] The total amount of wall time = 702.395378 Test 067 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_rrfs_v1beta_debug Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3937,13 +3937,13 @@ Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 410.371914 +[0] The total amount of wall time = 409.853389 Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_rrfs_v1alpha_debug Checking test 069 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4008,13 +4008,13 @@ Checking test 069 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 410.183252 +[0] The total amount of wall time = 409.776537 Test 069 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4079,13 +4079,13 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 413.415593 +[0] The total amount of wall time = 412.909308 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -4100,13 +4100,13 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 454.085472 +[0] The total amount of wall time = 453.125080 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfsv16_ugwpv1_debug Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4165,13 +4165,13 @@ Checking test 072 fv3_gfsv16_ugwpv1_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 1205.759916 +[0] The total amount of wall time = 1205.662512 Test 072 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/fv3_gfs_v16_ras_debug Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4236,13 +4236,13 @@ Checking test 073 fv3_gfs_v16_ras_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 648.003308 +[0] The total amount of wall time = 647.611057 Test 073 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_control Checking test 074 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4292,13 +4292,13 @@ Checking test 074 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 111.568629 +[0] The total amount of wall time = 104.464082 Test 074 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart Checking test 075 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4348,13 +4348,13 @@ Checking test 075 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.017532 +[0] The total amount of wall time = 67.462313 Test 075 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_controlfrac Checking test 076 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4404,13 +4404,13 @@ Checking test 076 cpld_controlfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 111.517876 +[0] The total amount of wall time = 103.935393 Test 076 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restartfrac Checking test 077 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,13 +4460,13 @@ Checking test 077 cpld_restartfrac results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.285046 +[0] The total amount of wall time = 66.979158 Test 077 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_2threads Checking test 078 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4516,13 +4516,13 @@ Checking test 078 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 132.211443 +[0] The total amount of wall time = 129.807595 Test 078 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_decomp Checking test 079 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4572,13 +4572,13 @@ Checking test 079 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 106.179079 +[0] The total amount of wall time = 102.086094 Test 079 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_satmedmf Checking test 080 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4628,13 +4628,13 @@ Checking test 080 cpld_satmedmf results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.701053 +[0] The total amount of wall time = 101.769934 Test 080 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_ca +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_ca Checking test 081 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4684,13 +4684,13 @@ Checking test 081 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.804964 +[0] The total amount of wall time = 102.038093 Test 081 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_control_c192 Checking test 082 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4740,13 +4740,13 @@ Checking test 082 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 420.865061 +[0] The total amount of wall time = 410.034029 Test 082 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart_c192 Checking test 083 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4796,13 +4796,13 @@ Checking test 083 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 312.621649 +[0] The total amount of wall time = 315.120369 Test 083 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_controlfrac_c192 Checking test 084 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4852,13 +4852,13 @@ Checking test 084 cpld_controlfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 412.688686 +[0] The total amount of wall time = 410.435645 Test 084 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restartfrac_c192 Checking test 085 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4908,13 +4908,13 @@ Checking test 085 cpld_restartfrac_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 314.421777 +[0] The total amount of wall time = 315.233933 Test 085 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_control_c384 Checking test 086 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4967,13 +4967,13 @@ Checking test 086 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1470.372497 +[0] The total amount of wall time = 1464.312718 Test 086 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart_c384 Checking test 087 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5026,13 +5026,13 @@ Checking test 087 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 811.650113 +[0] The total amount of wall time = 810.257398 Test 087 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_controlfrac_c384 Checking test 088 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5085,13 +5085,13 @@ Checking test 088 cpld_controlfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 1471.361585 +[0] The total amount of wall time = 1455.549056 Test 088 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restartfrac_c384 Checking test 089 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5144,13 +5144,13 @@ Checking test 089 cpld_restartfrac_c384 results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 811.244616 +[0] The total amount of wall time = 798.797369 Test 089 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmark +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_bmark Checking test 090 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5203,13 +5203,13 @@ Checking test 090 cpld_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 887.240591 +[0] The total amount of wall time = 894.233208 Test 090 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmark +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart_bmark Checking test 091 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5262,13 +5262,13 @@ Checking test 091 cpld_restart_bmark results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 532.742040 +[0] The total amount of wall time = 525.568177 Test 091 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_bmarkfrac Checking test 092 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5321,13 +5321,13 @@ Checking test 092 cpld_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 890.437772 +[0] The total amount of wall time = 884.551949 Test 092 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart_bmarkfrac Checking test 093 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5380,13 +5380,13 @@ Checking test 093 cpld_restart_bmarkfrac results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 529.390386 +[0] The total amount of wall time = 525.145009 Test 093 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_bmarkfrac_v16 Checking test 094 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5439,13 +5439,13 @@ Checking test 094 cpld_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1534.382600 +[0] The total amount of wall time = 1530.493195 Test 094 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac_v16_nsst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmarkfrac_v16_nsst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac_v16_nsst +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_bmarkfrac_v16_nsst Checking test 095 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5498,13 +5498,13 @@ Checking test 095 cpld_bmarkfrac_v16_nsst results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 1533.302290 +[0] The total amount of wall time = 1532.006797 Test 095 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_restart_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_restart_bmarkfrac_v16 Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5557,14 +5557,14 @@ Checking test 096 cpld_restart_bmarkfrac_v16 results .... Comparing RESTART/iced.2013-04-01-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK -[0] The total amount of wall time = 887.412767 +[0] The total amount of wall time = 898.271842 Test 096 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmark_wave -Checking test 097 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_156311/cpld_bmark_wave +Checking test 001 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5619,14 +5619,14 @@ Checking test 097 cpld_bmark_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 2121.753230 +[0] The total amount of wall time = 2124.464808 Test 097 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmarkfrac_wave -Checking test 098 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_156311/cpld_bmarkfrac_wave +Checking test 002 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5681,14 +5681,14 @@ Checking test 098 cpld_bmarkfrac_wave results .... Comparing RESTART/iced.2013-04-02-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK -[0] The total amount of wall time = 2114.193821 +[0] The total amount of wall time = 2157.278721 Test 098 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_bmarkfrac_wave_v16 -Checking test 099 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_156311/cpld_bmarkfrac_wave_v16 +Checking test 003 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5742,14 +5742,14 @@ Checking test 099 cpld_bmarkfrac_wave_v16 results .... 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 = 1349.772247 +[0] The total amount of wall time = 1359.403751 Test 099 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_control_wave -Checking test 100 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_156311/cpld_control_wave +Checking test 004 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5801,13 +5801,13 @@ Checking test 100 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 1303.497334 +[0] The total amount of wall time = 1299.599478 Test 100 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_debug Checking test 101 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5857,13 +5857,13 @@ Checking test 101 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 342.499008 +[0] The total amount of wall time = 337.818001 Test 101 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/cpld_debugfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/cpld_debugfrac Checking test 102 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5913,73 +5913,73 @@ Checking test 102 cpld_debugfrac results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 341.894259 +[0] The total amount of wall time = 336.474047 Test 102 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_control_cfsr Checking test 103 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 -[0] The total amount of wall time = 119.567748 +[0] The total amount of wall time = 110.002322 Test 103 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_restart_cfsr Checking test 104 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 -[0] The total amount of wall time = 80.681653 +[0] The total amount of wall time = 78.497476 Test 104 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_control_gefs Checking test 105 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 -[0] The total amount of wall time = 111.517260 +[0] The total amount of wall time = 103.105362 Test 105 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_bulk_cfsr Checking test 106 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 -[0] The total amount of wall time = 113.015615 +[0] The total amount of wall time = 105.871870 Test 106 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_bulk_gefs Checking test 107 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 -[0] The total amount of wall time = 109.939053 +[0] The total amount of wall time = 106.237202 Test 107 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_mx025_cfsr Checking test 108 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5988,13 +5988,13 @@ Checking test 108 datm_mx025_cfsr results .... 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 = 422.549485 +[0] The total amount of wall time = 400.180006 Test 108 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_mx025_gefs Checking test 109 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -6003,48 +6003,23 @@ Checking test 109 datm_mx025_gefs results .... 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 = 415.487204 +[0] The total amount of wall time = 390.906842 Test 109 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_34712/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210427/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_71762/datm_debug_cfsr Checking test 110 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 -[0] The total amount of wall time = 325.286852 +[0] The total amount of wall time = 322.126617 Test 110 datm_debug_cfsr PASS -FAILED TESTS: -Test fv3_regional_quilt_netcdf_parallel 027 failed in check_result failed -Test fv3_regional_quilt_netcdf_parallel 027 failed in run_test failed - -REGRESSION TEST FAILED -Tue Apr 27 03:20:44 UTC 2021 -Elapsed time: 03h:29m:02s. Have a nice day! -Tue Apr 27 12:08:38 UTC 2021 -Start Regression test - -Compile 001 elapsed time 1627 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210426/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_178634/fv3_regional_quilt_netcdf_parallel -Checking test 001 fv3_regional_quilt_netcdf_parallel results .... - Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 435.645043 - -Test 001 fv3_regional_quilt_netcdf_parallel PASS - REGRESSION TEST WAS SUCCESSFUL -Tue Apr 27 12:50:30 UTC 2021 -Elapsed time: 00h:41m:54s. Have a nice day! +Tue Apr 27 20:04:19 UTC 2021 +Elapsed time: 03h:32m:23s. Have a nice day! diff --git a/tests/ci/build_status_check.py b/tests/ci/build_status_check.py deleted file mode 100755 index 0f84cc38f1..0000000000 --- a/tests/ci/build_status_check.py +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env python3 - -import re -import sys -import json -import time -from urllib.request import urlopen - -def update_url_data(response): - data = json.loads(response.read().decode()) - indices=[] - for n in range(data["total_count"]): - if re.search("Build", data["jobs"][n]["name"]): - indices.append(n) - - if len(indices) == 0: - raise ValueError("No build job exists.") - - return data, indices - -def main(): - - time.sleep(40) - url = json.load(sys.stdin)["workflow_run"]["jobs_url"] - - status="not-completed" - no_completed_jobs = 0 - - while status != "completed": - response = urlopen(url) - data, indices = update_url_data(response) - - for i in indices: - if data["jobs"][i]["status"] == "completed": - no_completed_jobs += 1 - - if no_completed_jobs == len(indices): - status = "completed" - else: - no_completed_jobs = 0 - time.sleep(40) - - time.sleep(40) - conclusion="failure" - no_successful_jobs = 0 - for i in indices: - if data["jobs"][i]["conclusion"] == "success": - no_successful_jobs += 1 - - if no_successful_jobs == len(indices): - conclusion = "success" - - print(conclusion) - -if __name__ == "__main__": main() diff --git a/tests/ci/check_status.py b/tests/ci/check_status.py new file mode 100755 index 0000000000..616119e259 --- /dev/null +++ b/tests/ci/check_status.py @@ -0,0 +1,124 @@ +#!/usr/bin/env python3 +import os +import re +import sys +import json +import time +from urllib.request import urlopen, Request +from datetime import datetime, timedelta + + +def check_build(request, no_builds): + """Check if all build jobs are completed successfully. + API endpoint: api.github.com/repos/{owner}/{repo}/actions/runs/{run_id}/jobs + """ + all_completed = False + while not all_completed: + time.sleep(20) + response = urlopen(request) + data = json.loads(response.read().decode())["jobs"] + ids = [x["id"] for x in data if re.search("Build", x["name"])] + if len(ids) == 1 and next(re.search("matrix", x["name"]) for x in data if x["id"] in ids): + break + if len(ids) != no_builds: + continue + all_completed = all( + [x["status"] == "completed" for x in data if x["id"] in ids]) + return all([x["conclusion"] == "success" for x in data if x["id"] in ids]) + + +def check_completion(request, job_name): + """Check if a job is completed successfully. + API endpoint: api.github.com/repos/{owner}/{repo}/actions/runs/{run_id}/jobs + """ + completed = False + while not completed: + time.sleep(60) + response = urlopen(request) + data = json.loads(response.read().decode())["jobs"] + cid = next((x["id"] + for x in data if x["name"] == job_name), "not found") + if cid == "not found": + continue + completed = next( + x["status"] == "completed" for x in data if x["id"] == cid) + return next(x["conclusion"] == "success" for x in data if x["id"] == cid) + + +def check_test(request): + """Wait for a workflow run to be completed. + API endpoint: api.github.com/repos/{owner}/{repo}/actions/runs/{run_id} + """ + completed = False + while not completed: + time.sleep(20) + response = urlopen(request) + data = json.loads(response.read().decode()) + completed = (data["status"] == "completed") + + +def check_ec2(url, request, myid): + """Wait for all previous workflow runs to finish using ec2 instances. + API endpoint: api.github.com/repos/{owner}/{repo}/actions/runs + """ + response = urlopen(request) + data = json.loads(response.read().decode())["workflow_runs"] + tformat = "%Y-%m-%dT%H:%M:%SZ" + mytime = datetime.strptime(next(x["created_at"] + for x in data if x["id"] == myid), tformat) + + workflows = {} + in_progress = [] + for x in data: + oldtime = datetime.strptime(x["created_at"], tformat) + dt = mytime - oldtime + if x["name"] == "Helpers" and dt >= timedelta() and x["id"] != myid: + request = Request(url+"/"+str(x["id"])+"/jobs") + token = os.environ["AUTH"] + request.add_header("Authorization", "token %s" % token) + workflows[x["id"]] = request + in_progress.append(x["id"]) + + while True: + if len(in_progress) == 0: + break + time.sleep(20) + done = [] + for cid in reversed(in_progress): + data = json.loads(urlopen(workflows[cid]).read().decode())["jobs"] + start_status = next( + (x["status"] for x in data if x["name"] == "Start runners"), "not found") + stop_status = next( + (x["status"] for x in data if x["name"] == "Stop runners"), "not found") + if start_status == "not found" or stop_status == "not found": + break + if start_status == "completed" and stop_status == "completed": + done.append(cid) + if len(done) != 0: + [workflows.pop(k) for k in done] + [in_progress.remove(k) for k in done] + + +def main(): + url = sys.stdin.read() + request = Request(url) + try: + token = os.environ["AUTH"] + request.add_header("Authorization", "token %s" % token) + except KeyError: + pass + + if sys.argv[1] == "build": + print("success") if check_build( + request, int(sys.argv[2])) else print("failure") + elif sys.argv[1] == "completion": + print("success") if check_completion( + request, sys.argv[2]) else print("failure") + elif sys.argv[1] == "ec2": + check_ec2(url, request, int(sys.argv[2])) + elif sys.argv[1] == "test": + check_test(request) + + +if __name__ == "__main__": + main() diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index bcb90f2aec..adef8c78b9 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -24,7 +24,7 @@ usage_and_exit() { exit 2 } -IMG_NAME=$(sed -n 3p ci.test) +IMG_NAME=ci-test-weather BUILD="false" RUN="false" TEST_NAME="" @@ -48,7 +48,6 @@ while getopts :b:r:n: opt; do done # Read in TEST_NAME if not passed on -TEST_NAME=${TEST_NAME:-$(sed -n 1p ci.test)} echo "test name is ${TEST_NAME}" if [ $BUILD = "true" ] && [ $RUN = "true" ]; then diff --git a/tests/ci/ci.test b/tests/ci/ci.test index bf8c8abd07..307edf3225 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,3 +1,2 @@ fv3_control thr mpi dcp rst bit dbg -ci-test-weather diff --git a/tests/ci/json_helper.py b/tests/ci/json_helper.py deleted file mode 100755 index 80bdfff95b..0000000000 --- a/tests/ci/json_helper.py +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/env python3 -# The following env variables are assumed available and valid: -# GITHUB_ACTOR, GITHUB_RUN_ID, TRIGGER_ID, TRIGGER_BR -import os -import re -import sys -import json - -def check_run(data): - msg = data["head_commit"]["message"] - if re.search("run-ci", msg): - return "yes" - else: - return "no" - -def cancel_workflow(data): - wfs=[x["id"] for x in data if x["head_repository"] is not None and - re.search(os.environ["GITHUB_ACTOR"], x["head_repository"]["owner"]["login"]) and - x["id"]!=int(os.environ["GITHUB_RUN_ID"]) and - x["id"]!=int(os.environ["TRIGGER_ID"]) and - x["head_branch"]==os.environ["TRIGGER_BR"] and - x["event"]!="workflow_run" and - (x["status"]=="queued" or x["status"]=="in_progress")] - - return wfs - -def main(): - - if sys.argv[1]=="check_run": - data = json.load(sys.stdin)["workflow_run"] - ans = check_run(data) - print(ans) - elif sys.argv[1]=="get_trigger_id": - print(json.load(sys.stdin)["workflow_run"]["id"]) - elif sys.argv[1]=="get_trigger_br": - print(json.load(sys.stdin)["workflow_run"]["head_branch"]) - elif sys.argv[1]=="cancel_workflow": - data = json.load(sys.stdin)["workflow_runs"] - wfs = cancel_workflow(data) - if len(wfs)==0: - print("") - else: - print(*wfs) - else: - print("ERROR") - -if __name__ == "__main__": main() diff --git a/tests/ci/parse.sh b/tests/ci/parse.sh deleted file mode 100755 index 326da18ece..0000000000 --- a/tests/ci/parse.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash -set -eu - -name_=$(sed -n 1p ci.test) -case_=$(sed -n 2p ci.test) -img_=$(sed -n 3p ci.test) - -imd1_='' -[[ $case_ =~ thr || $case_ =~ mpi || $case_ =~ dcp || $case_ =~ rst ]] && imd1_+='std' -[[ $case_ =~ bit ]] && imd1_+=' bit' -[[ $case_ =~ dbg ]] && imd1_+=' dbg' -imd1_=$(echo $imd1_ | sed -e 's/^ *//' -e 's/ *$//') - -bld_='{"bld_set":[' -for i in $imd1_; do bld_+="\"$i\","; done -bld_=$(echo $bld_ | sed -e 's/,$//') -bld_+=']}' - -imd2_=() -test_='{"test_set":[' -for i in $case_; do - test_+="\"$i\"," - [[ $i =~ thr || $i =~ mpi || $i =~ dcp || $i =~ rst ]] && imd2_+=( std ) - [[ $i =~ bit ]] && imd2_+=( bit ) - [[ $i =~ dbg ]] && imd2_+=( dbg ) -done - -test_=$(echo $test_ | sed -e 's/,$//') -test_+='],"include":[' -j=0 -for i in $case_; do test_+="{\"test_set\":\"$i\",\"artifact\":\"${imd2_[$j]}\"},"; j=$((j+1)); done -test_=$(echo $test_ | sed -e 's/,$//') -test_+=']}' - -echo $name_ $bld_ $test_ $img_ diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh new file mode 100755 index 0000000000..239bd65fa2 --- /dev/null +++ b/tests/ci/repo_check.sh @@ -0,0 +1,99 @@ +#!/bin/bash +set -eu + +# This script checks if head repo of PR is up to date with ufs-weather-model develop +# Checks for top level (ufs-weather-model) and next level components (submodules) +result() { + if [[ -n $comment ]]; then + logID=$1 + comment="@$logID please bring these up to date with respective authoritative repositories\n"$comment + printf %s "$comment" + #exit 1 + fi +} + +# Declare variables +declare -A base fv3 mom6 cice ww3 stoch fms nems cmeps datm cdeps cmake +submodules="fv3 mom6 cice ww3 stoch fms nems cmeps datm cdeps cmake" +comment='' +ownerID=$1 + +# Base branch: this is the top of develop of ufs-weather-model +base[repo]='https://github.com/ufs-community/ufs-weather-model' +base[branch]='develop' + +# Submodules to check +fv3[repo]='https://github.com/NOAA-EMC/fv3atm' +fv3[branch]='develop' +fv3[dir]='FV3' + +mom6[repo]='https://github.com/NOAA-EMC/MOM6' +mom6[branch]='dev/emc' +mom6[dir]='MOM6-interface/MOM6' + +cice[repo]='https://github.com/NOAA-EMC/CICE' +cice[branch]='emc/develop' +cice[dir]='CICE-interface/CICE' + +ww3[repo]='https://github.com/NOAA-EMC/WW3' +ww3[branch]='develop' +ww3[dir]='WW3' + +stoch[repo]='https://github.com/noaa-psd/stochastic_physics' +stoch[branch]='master' +stoch[dir]='stochastic_physics' + +fms[repo]='https://github.com/NOAA-GFDL/FMS' +fms[branch]='main' +fms[dir]='FMS' + +nems[repo]='https://github.com/NOAA-EMC/NEMS' +nems[branch]='develop' +nems[dir]='NEMS' + +cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' +cmeps[branch]='emc/develop' +cmeps[dir]='CMEPS-interface/CMEPS' + +datm[repo]='https://github.com/NOAA-EMC/NEMSdatm' +datm[branch]='develop' +datm[dir]='DATM' + +cdeps[repo]='https://github.com/NOAA-EMC/CDEPS' +cdeps[branch]='emc/develop' +cdeps[dir]='CDEPS-interface/CDEPS' + +cmake[repo]='https://github.com/NOAA-EMC/CMakeModules' +cmake[branch]='develop' +cmake[dir]='CMakeModules' + +# Get sha-1's of the top of develop of ufs-weather-model +app="Accept: application/vnd.github.v3+json" +url="https://api.github.com/repos/ufs-community/ufs-weather-model/branches/develop" +base[sha]=$(curl -sS -H "$app" $url | jq -r '.commit.sha') +for submodule in $submodules; do + eval url=https://api.github.com/repos/ufs-community/ufs-weather-model/contents/'${'$submodule'[dir]}' + eval $submodule'[sha]=$(curl -sS -H "$app" $url | jq -r '.sha')' +done + +# Check if the head branch is up to date with the base branch +cd ${GITHUB_WORKSPACE} +git remote add upstream ${base[repo]} +git fetch -q upstream ${base[branch]} +common=$(git merge-base upstream/${base[branch]} @) +if [[ $common != ${base[sha]} ]]; then + comment="* ufs-weather-model **NOT** up to date\n" +fi + +for submodule in $submodules; do + eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}' + eval git remote add upstream '${'$submodule'[repo]}' + eval git fetch -q upstream '${'$submodule'[branch]}' + common=$(eval git merge-base upstream/'${'$submodule'[branch]}' @) + if (eval test $common != '${'$submodule'[sha]}'); then + comment+="* $submodule **NOT** up to date\n" + fi +done + +result $ownerID +exit 0 diff --git a/tests/ci/setup.py b/tests/ci/setup.py new file mode 100755 index 0000000000..4f11e1eb5d --- /dev/null +++ b/tests/ci/setup.py @@ -0,0 +1,51 @@ +#!/usr/bin/env python3 +import sys +import json + + +def main(): + with open('ci.test', 'r') as setup_file: + input_str = setup_file.read().splitlines() + + tests = [] + cases = [] + for i, e in enumerate(input_str): + if i % 2 == 0: + tests.append(e) + else: + cases.append([tests[(i-1)//2]+'_'+case for case in e.split()]) + + bj = {'bld_set': [], 'include': []} + tj = {'test_set': [], 'include': []} + + for i in range(len(tests)): + for j in range(len(cases[i])): + test = tests[i] + case = cases[i][j] + + if any(e in case for e in ['thr', 'mpi', 'dcp', 'rst']): + std = test+'_std' + if not bj['bld_set'] or not any(std in e for e in bj['bld_set']): + bj['bld_set'].append(std) + bj['include'].append( + {'bld_set': std, 'name': test, 'case': std[-3:]}) + aj = {'test_set': case, 'name': test, + 'case': case[-3:], 'artifact': std} + else: + bj['bld_set'].append(case) + bj['include'].append( + {'bld_set': case, 'name': test, 'case': case[-3:]}) + aj = {'test_set': case, 'name': test, + 'case': case[-3:], 'artifact': case} + + tj['test_set'].append(case) + tj['include'].append(aj) + + if sys.argv[1] == "cases": + print(json.dumps(bj), "|", json.dumps(tj)) + elif sys.argv[1] == "no_builds": + print(len(bj['bld_set'])) + + +if __name__ == '__main__': + main() diff --git a/tests/rt.sh b/tests/rt.sh index 145b0a8b95..226fd54b77 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -413,7 +413,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210426 +BL_DATE=20210427 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else