From 8dd32e2e4f06807b33329e50a09e9474038cd4dd Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:29:19 -0400 Subject: [PATCH 01/29] First test --- tests/ci/hello | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/ci/hello diff --git a/tests/ci/hello b/tests/ci/hello new file mode 100644 index 0000000000..6254c096ec --- /dev/null +++ b/tests/ci/hello @@ -0,0 +1 @@ +Dummy file From 131a265b1e78ea1472c0e795a6895d0a2f02ec06 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:31:48 -0400 Subject: [PATCH 02/29] Change branch name --- .github/workflows/build_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index b7e07db233..13132e3bdc 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -2,10 +2,10 @@ name: Pull request tests on: push: - branches: ['feature/ci-regional-model'] + branches: ['feature/PRCheck'] #branches: ['develop'] pull_request: - branches: ['feature/ci-regional-model'] + branches: ['feature/PRCheck'] #branches: ['develop'] jobs: From 78d24e34b71e144b48c2a532982c9b12e8fcf1a9 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:35:13 -0400 Subject: [PATCH 03/29] github event name... --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 13132e3bdc..53c515eff5 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -12,7 +12,7 @@ jobs: prcheck: name: PR Check runs-on: ubuntu-20.04 - if: ${{ github.event_name == pull_request }} + if: (${{ github.event_name }} == pull_request) steps: - name: Print out github context From 5dd7186ebb209dcd058a7e41e03ad2e3bb180110 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:37:21 -0400 Subject: [PATCH 04/29] change to tests/ci dir --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 53c515eff5..504097203d 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -27,12 +27,12 @@ jobs: - name: Check if PR branch is current run: | - cd $GITHUB_WORKSPACE git remote -v git branch -a head_sha=${{ github.event.pull_request.head.sha }} echo "Head sha is $head_sha" app="Accept: application/vnd.github.v3+json" + cd $GITHUB_WORKSPACE/tests/ci pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/workflow_test/pulls | ./json_helper.py get_pr $head_sha) echo "PR number $pr_number" comment_body="$(./repo-check.sh minsukji 2>/dev/null)" From f3273afcb874be5c83e4e66f7dfda026f3393c41 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:40:41 -0400 Subject: [PATCH 05/29] change repo name --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 504097203d..c0b5cec075 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -33,7 +33,7 @@ jobs: echo "Head sha is $head_sha" app="Accept: application/vnd.github.v3+json" cd $GITHUB_WORKSPACE/tests/ci - pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/workflow_test/pulls | ./json_helper.py get_pr $head_sha) + pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) echo "PR number $pr_number" comment_body="$(./repo-check.sh minsukji 2>/dev/null)" echo $comment_body From 29a6f4f919ab77c0c78f9f67d0496497a051ab00 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:48:19 -0400 Subject: [PATCH 06/29] print out stderr --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index c0b5cec075..50da653556 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -35,7 +35,7 @@ jobs: cd $GITHUB_WORKSPACE/tests/ci pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) echo "PR number $pr_number" - comment_body="$(./repo-check.sh minsukji 2>/dev/null)" + comment_body="$(./repo-check.sh minsukji)" echo $comment_body setup: From 6861b84c918348a434e41e9ad6edf465f8c9012e Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 15:52:59 -0400 Subject: [PATCH 07/29] try recursive checkout --- .github/workflows/build_test.yml | 1 + tests/ci/repo-check.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 50da653556..b20eb07f01 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -24,6 +24,7 @@ jobs: uses: actions/checkout@v2 with: ref: ${{ github.event.pull_request.head.sha }} + submodules: recursive - name: Check if PR branch is current run: | diff --git a/tests/ci/repo-check.sh b/tests/ci/repo-check.sh index 22aadcd70b..0edd4dad5e 100755 --- a/tests/ci/repo-check.sh +++ b/tests/ci/repo-check.sh @@ -75,7 +75,7 @@ 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]} +git fetch upstream ${base[branch]} common=$(git merge-base upstream/${base[branch]} @) if [[ $common != ${base[sha]} ]]; then comment="* ufs-weather-model **NOT** up to date\n" @@ -84,7 +84,7 @@ 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]}' + eval git fetch 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" From 42bbc672c7ba6dc6bd5affe08700b835020e8452 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 16:04:48 -0400 Subject: [PATCH 08/29] checkout myself --- .github/workflows/build_test.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index b20eb07f01..bd0962a8bf 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -20,20 +20,17 @@ jobs: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - - name: Checkout codes - uses: actions/checkout@v2 - with: - ref: ${{ github.event.pull_request.head.sha }} - submodules: recursive - - name: Check if PR branch is current run: | git remote -v git branch -a head_sha=${{ github.event.pull_request.head.sha }} echo "Head sha is $head_sha" + git clone ${{ github.event.pull_request.head.repo.git_url }} . + git checkout $head_sha + git submodule -q update --init --recursive + cd ${GITHUB_WORKSPACE}/tests/ci app="Accept: application/vnd.github.v3+json" - cd $GITHUB_WORKSPACE/tests/ci pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) echo "PR number $pr_number" comment_body="$(./repo-check.sh minsukji)" From 74a351dd58468c6c37b01d4ca0af2538e4ab378a Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 16:05:53 -0400 Subject: [PATCH 09/29] in a hurry --- .github/workflows/build_test.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index bd0962a8bf..e824d76c43 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -22,8 +22,6 @@ jobs: - name: Check if PR branch is current run: | - git remote -v - git branch -a head_sha=${{ github.event.pull_request.head.sha }} echo "Head sha is $head_sha" git clone ${{ github.event.pull_request.head.repo.git_url }} . From f53a4dd5ceb09698d49b34aa6053e7cf1fbaf2bd Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 16:15:53 -0400 Subject: [PATCH 10/29] fetch owner id --- .github/workflows/build_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index e824d76c43..5af632429e 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -31,6 +31,7 @@ jobs: app="Accept: application/vnd.github.v3+json" pr_number=$(curl -sS -H "app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) echo "PR number $pr_number" + pr_uid=${{ github.event.pull_request.head.owner.login }} comment_body="$(./repo-check.sh minsukji)" echo $comment_body From 42318f9204b2e6020ae2e246caa20a4419972d50 Mon Sep 17 00:00:00 2001 From: minsukji Date: Thu, 8 Apr 2021 16:19:04 -0400 Subject: [PATCH 11/29] Make setup depend on prcheck --- .github/workflows/build_test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5af632429e..aaebbd4c82 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -37,6 +37,7 @@ jobs: setup: name: Set up + needs: prcheck runs-on: ubuntu-20.04 outputs: @@ -123,7 +124,7 @@ jobs: utest: name: Test ${{ matrix.test_set }} - needs: [setup,build] + needs: build #runs-on: self-hosted runs-on: ubuntu-20.04 From b78797fa53057e108253163b147f91602ebbafaf Mon Sep 17 00:00:00 2001 From: XuLi-NOAA <55100838+XuLi-NOAA@users.noreply.github.com> Date: Thu, 8 Apr 2021 21:19:34 -0400 Subject: [PATCH 12/29] update with fv3 & ccpp/physics updates in order to turn the NSST model on in the coupled model (Replace PR #453) (#483) * point to fv3 branch * Add one more test cpld_control_nsst to test added ccpp suite (FV3_GFS_v15p2_couplednsst) * Modify rt.conf to add FV3_GFS_v15p2_couplednsst * Modify rt.conf to add a new test, cpld_bmarkfrac_v16_nsst, remove test cpld_control_nsst * Modify tests/tests/cpld_bmarkfrac_v16_nsst: 1. cpld_bmarkfrac_v16 to cpld_bmarkfrac_v16_nsst. 2. export NSTF_NAME=2,1,0,0,0 to export nstf_name=2,1,0,0,0. * Modify input.benchmark_v16.nml.IN & cpld_bmarkfrac_v16_nsst for a consistent definition of nstf_name namelist * Modify cpld_bmarkfrac_v16_nsst by moving the NSTF_NAME to the namelist field updates section * RegressionTests_orion.intel.log of the rt run and BL_DATE=20210406 in rt.sh * RT JOBS PASSED: hera.intel. Log file uploaded. * run-ci, commit 7 RegressionTest log files * Push RegressionTests_wcoss_dell_p3.log Co-authored-by: Brian Curtis --- FV3 | 2 +- tests/RegressionTests_cheyenne.gnu.log | 196 ++-- tests/RegressionTests_cheyenne.intel.log | 785 ++++++++------- tests/RegressionTests_gaea.intel.log | 626 ++++++------ tests/RegressionTests_hera.gnu.log | 202 ++-- tests/RegressionTests_hera.intel.log | 813 ++++++++-------- tests/RegressionTests_jet.intel.log | 420 ++++---- tests/RegressionTests_orion.intel.log | 1128 +++++++++++++--------- tests/RegressionTests_wcoss_cray.log | 444 ++++----- tests/RegressionTests_wcoss_dell_p3.log | 809 +++++++++------- tests/parm/input.benchmark_v16.nml.IN | 2 +- tests/rt.conf | 3 +- tests/rt.sh | 2 +- tests/tests/cpld_bmarkfrac_v16_nsst | 150 +++ 14 files changed, 3078 insertions(+), 2504 deletions(-) create mode 100644 tests/tests/cpld_bmarkfrac_v16_nsst diff --git a/FV3 b/FV3 index c206462f56..96ae478533 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit c206462f567159c3282969d68d4ec761ef5ab7af +Subproject commit 96ae4785335af5a95bf779285c01747b2a8ad048 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 69a7d6b465..931b0b1ea1 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,19 +1,17 @@ -Thu Apr 1 14:24:43 MDT 2021 +Wed Apr 7 06:09:33 MDT 2021 Start Regression test -Compile 001 elapsed time 343 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 344 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 375 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 343 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 304 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 001 elapsed time 341 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 340 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 376 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 335 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 311 seconds. APP=ATM 32BIT=Y DEBUG=Y Compile 006 elapsed time 189 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 371 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 188 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 469 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 378 seconds. APP=DATM_NEMS +Compile 007 elapsed time 384 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 187 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -58,13 +56,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 74.105206 +The total amount of wall time = 73.985444 Test 001 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -141,13 +139,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 233.297754 +The total amount of wall time = 232.172046 Test 002 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -194,13 +192,13 @@ Checking test 003 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 = 139.197496 +The total amount of wall time = 136.443413 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/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 +263,13 @@ Checking test 004 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 = 89.382259 +The total amount of wall time = 90.034238 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/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 +334,13 @@ Checking test 005 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 = 151.425263 +The total amount of wall time = 150.221480 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/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 +405,13 @@ Checking test 006 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 = 264.606404 +The total amount of wall time = 264.416366 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -502,13 +500,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 352.398294 +The total amount of wall time = 352.729636 Test 007 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -573,13 +571,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 158.934140 +The total amount of wall time = 158.189716 Test 008 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/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 +642,13 @@ Checking test 009 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 = 157.748957 +The total amount of wall time = 157.846743 Test 009 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_rrfs_v1beta Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +713,13 @@ Checking test 010 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 169.739705 +The total amount of wall time = 169.298191 Test 010 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +784,13 @@ Checking test 011 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 = 260.678109 +The total amount of wall time = 259.883017 Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -807,13 +805,13 @@ Checking test 012 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 = 465.716098 +The total amount of wall time = 445.922657 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1 Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -872,13 +870,13 @@ Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 307.124498 +The total amount of wall time = 306.560881 Test 013 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1_warmstart Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -937,13 +935,13 @@ Checking test 014 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 = 304.945112 +The total amount of wall time = 303.812512 Test 014 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_ras Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,13 +1006,13 @@ Checking test 015 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 = 170.154719 +The total amount of wall time = 169.546561 Test 015 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_control_debug Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1041,13 +1039,13 @@ Checking test 016 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 75.980294 +The total amount of wall time = 75.953723 Test 016 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_regional_control_debug Checking test 017 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1055,13 +1053,13 @@ Checking test 017 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 = 188.031923 +The total amount of wall time = 187.143999 Test 017 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1126,13 +1124,13 @@ Checking test 018 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 = 112.586203 +The total amount of wall time = 110.611659 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1197,13 +1195,13 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 116.568648 +The total amount of wall time = 115.754259 Test 019 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson_debug Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1266,13 @@ Checking test 020 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 186.873763 +The total amount of wall time = 183.701098 Test 020 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson_no_aero_debug Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1337,13 @@ Checking test 021 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 = 179.984619 +The total amount of wall time = 178.988643 Test 021 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v15p2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v15p2_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v15p2_debug Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1408,13 @@ Checking test 022 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 139.568026 +The total amount of wall time = 137.734436 Test 022 fv3_gfs_v15p2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_debug Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1479,13 @@ Checking test 023 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 = 152.253710 +The total amount of wall time = 150.975739 Test 023 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_RRTMGP_debug Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1550,13 @@ Checking test 024 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 = 206.642616 +The total amount of wall time = 205.759701 Test 024 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_multigases -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_multigases +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_multigases +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_multigases Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,13 +1627,13 @@ Checking test 025 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 177.072120 +The total amount of wall time = 175.428716 Test 025 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1698,13 @@ Checking test 026 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 = 113.899641 +The total amount of wall time = 113.512699 Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1721,13 +1719,13 @@ Checking test 027 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 = 217.634411 +The total amount of wall time = 217.703642 Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1_debug Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1786,13 +1784,13 @@ Checking test 028 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 = 304.808029 +The total amount of wall time = 304.807814 Test 028 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_23177/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_ras_debug Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,11 +1855,11 @@ Checking test 029 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 = 173.383945 +The total amount of wall time = 172.405910 Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 14:43:28 MDT 2021 -Elapsed time: 00h:18m:46s. Have a nice day! +Wed Apr 7 06:28:37 MDT 2021 +Elapsed time: 00h:19m:04s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 3329851ae9..9bf4e7bb28 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,28 +1,28 @@ -Thu Apr 1 14:25:30 MDT 2021 +Wed Apr 7 08:13:37 MDT 2021 Start Regression test -Compile 001 elapsed time 722 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 713 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 760 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 749 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 747 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 880 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 979 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 32BIT=Y -Compile 008 elapsed time 767 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 804 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 842 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 277 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 270 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 1033 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 1035 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 654 seconds. APP=DATM_NEMS -Compile 019 elapsed time 241 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_control +Compile 001 elapsed time 718 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 711 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 762 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 748 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 756 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 876 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 984 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 32BIT=Y +Compile 008 elapsed time 781 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 743 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 798 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 849 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 256 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 272 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 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 1085 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 1048 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 355 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 657 seconds. APP=DATM_NEMS +Compile 019 elapsed time 246 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 49.183667 +The total amount of wall time = 47.259037 Test 001 fv3_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 49.498193 +The total amount of wall time = 47.863487 Test 002 fv3_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 75.512613 +The total amount of wall time = 75.422064 Test 003 fv3_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 23.336395 +The total amount of wall time = 22.598219 Test 004 fv3_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_read_inc -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_read_inc +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 47.951346 +The total amount of wall time = 46.723243 Test 005 fv3_read_inc PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGauss_netcdf_esmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 128.118497 +The total amount of wall time = 118.447237 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGauss_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 48.197227 +The total amount of wall time = 47.705993 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,9 +470,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 .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.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 @@ -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 = 49.054136 +The total amount of wall time = 47.305531 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGlatlon_netcdf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 50.789861 +The total amount of wall time = 47.440707 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGauss_nemsio +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 47.696526 +The total amount of wall time = 47.519822 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_wrtGauss_nemsio_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 124.925755 +The total amount of wall time = 124.054931 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 57.769964 +The total amount of wall time = 56.934599 Test 012 fv3_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 29.780316 +The total amount of wall time = 29.071352 Test 013 fv3_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 53.449367 +The total amount of wall time = 52.783161 Test 014 fv3_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_iau -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_iau +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 45.872544 +The total amount of wall time = 47.111360 Test 015 fv3_iau PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lheatstrg -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 48.528705 +The total amount of wall time = 47.246522 Test 016 fv3_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_multigases_repro -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_multigases_repro +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 113.958889 +The total amount of wall time = 112.313734 Test 017 fv3_multigases PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_control_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 41.379786 +The total amount of wall time = 39.378047 Test 018 fv3_control_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_stretched +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 334.424301 +The total amount of wall time = 328.366344 Test 019 fv3_stretched PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_stretched_nest +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 359.759238 +The total amount of wall time = 343.092572 Test 020 fv3_stretched_nest PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 715.542276 +The total amount of wall time = 692.949301 Test 021 fv3_regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 = 379.665277 +The total amount of wall time = 391.389630 Test 022 fv3_regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1312,27 +1312,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 715.655068 +The total amount of wall time = 713.613756 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 738.567458 +The total amount of wall time = 716.529790 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfdlmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,13 +1377,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 = 53.810995 +The total amount of wall time = 53.369956 Test 025 fv3_gfdlmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfdlmprad_gwd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 54.312755 +The total amount of wall time = 52.916152 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfdlmprad_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,13 +1479,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 = 54.394610 +The total amount of wall time = 53.263502 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 141.814575 +The total amount of wall time = 137.494599 Test 028 fv3_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1581,13 +1581,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.663102 +The total amount of wall time = 60.836094 Test 029 fv3_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmfq -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_satmedmfq +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1632,13 +1632,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 61.411853 +The total amount of wall time = 60.102696 Test 030 fv3_satmedmfq PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfdlmp_32bit +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1683,13 +1683,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 = 41.411497 +The total amount of wall time = 41.700611 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfdlmprad_32bit_post +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 72.987342 +The total amount of wall time = 72.344386 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_cpt -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_cpt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1795,13 +1795,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 = 332.407760 +The total amount of wall time = 334.325461 Test 033 fv3_cpt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1890,13 +1890,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 = 196.463165 +The total amount of wall time = 195.635446 Test 034 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1961,13 +1961,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 100.125197 +The total amount of wall time = 98.766502 Test 035 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2032,13 +2032,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.758396 +The total amount of wall time = 97.273818 Test 036 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2103,13 +2103,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.875795 +The total amount of wall time = 90.092973 Test 037 fv3_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,13 +2174,13 @@ Checking test 038 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 = 90.462951 +The total amount of wall time = 91.156033 Test 038 fv3_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2245,13 +2245,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.493652 +The total amount of wall time = 97.914696 Test 039 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2328,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.497013 +The total amount of wall time = 162.841909 Test 040 fv3_gfs_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2381,13 +2381,13 @@ Checking test 041 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 = 105.738764 +The total amount of wall time = 104.185933 Test 041 fv3_gfs_v16_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,13 +2452,13 @@ Checking test 042 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 = 65.787307 +The total amount of wall time = 62.874054 Test 042 fv3_gfs_v16_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2523,13 +2523,13 @@ Checking test 043 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 = 226.758802 +The total amount of wall time = 226.241951 Test 043 fv3_gfs_v16_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2588,13 +2588,13 @@ Checking test 044 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 = 936.402321 +The total amount of wall time = 934.065848 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2659,13 +2659,13 @@ Checking test 045 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 = 361.369919 +The total amount of wall time = 358.723736 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gocart_clm -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gocart_clm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gocart_clm Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2710,13 +2710,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 = 58.083966 +The total amount of wall time = 56.391990 Test 046 fv3_gocart_clm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_flake Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2781,13 +2781,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 = 119.698090 +The total amount of wall time = 116.537481 Test 047 fv3_gfs_v16_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 @@ -2852,13 +2852,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 = 182.481725 +The total amount of wall time = 182.245050 Test 048 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 @@ -2873,13 +2873,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 = 323.494909 +The total amount of wall time = 345.942451 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfsv16_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1 Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2938,13 +2938,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 = 219.644057 +The total amount of wall time = 211.300345 Test 050 fv3_gfsv16_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1_warmstart Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3003,13 +3003,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 = 219.751286 +The total amount of wall time = 219.632889 Test 051 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_ras Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3074,13 +3074,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 = 117.273791 +The total amount of wall time = 116.227744 Test 052 fv3_gfs_v16_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_debug Checking test 053 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3145,13 +3145,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 = 281.099881 +The total amount of wall time = 270.776674 Test 053 fv3_gfs_v16_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_RRTMGP_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 @@ -3216,13 +3216,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 = 396.031017 +The total amount of wall time = 395.411166 Test 054 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_control_debug Checking test 055 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3230,13 +3230,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 = 372.080283 +The total amount of wall time = 371.811223 Test 055 fv3_regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_control_debug Checking test 056 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3263,13 +3263,13 @@ Checking test 056 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 147.772398 +The total amount of wall time = 148.178130 Test 056 fv3_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_stretched_nest_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 @@ -3286,13 +3286,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 = 441.497713 +The total amount of wall time = 439.863966 Test 057 fv3_stretched_nest_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd_debug Checking test 058 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3357,13 +3357,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 = 219.335934 +The total amount of wall time = 219.495753 Test 058 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd_diag3d_debug Checking test 059 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3428,13 +3428,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 = 265.635513 +The total amount of wall time = 267.684587 Test 059 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson_debug Checking test 060 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,13 +3499,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 = 363.202758 +The total amount of wall time = 364.403507 Test 060 fv3_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/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 @@ -3570,13 +3570,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 = 351.991062 +The total amount of wall time = 351.438300 Test 061 fv3_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rrfs_v1beta_debug Checking test 062 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3641,13 +3641,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 = 211.231021 +The total amount of wall time = 211.951517 Test 062 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_HAFS_v0_hwrf_thompson_debug Checking test 063 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3712,13 +3712,13 @@ Checking test 063 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 = 220.005923 +The total amount of wall time = 221.430063 Test 063 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3733,13 +3733,13 @@ Checking test 064 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 = 402.170399 +The total amount of wall time = 402.658168 Test 064 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfsv16_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1_debug Checking test 065 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3798,13 +3798,13 @@ Checking test 065 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 = 607.485332 +The total amount of wall time = 608.035920 Test 065 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/fv3_gfs_v16_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_ras_debug Checking test 066 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3869,13 +3869,13 @@ Checking test 066 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 = 348.153560 +The total amount of wall time = 348.011639 Test 066 fv3_gfs_v16_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3925,13 +3925,13 @@ Checking test 067 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 = 99.659275 +The total amount of wall time = 103.213734 Test 067 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3981,13 +3981,13 @@ Checking test 068 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.823465 +The total amount of wall time = 55.392185 Test 068 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_controlfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4037,13 +4037,13 @@ Checking test 069 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 = 99.588222 +The total amount of wall time = 99.293140 Test 069 cpld_controlfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restartfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,13 +4093,13 @@ Checking test 070 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 = 55.528442 +The total amount of wall time = 55.179212 Test 070 cpld_restartfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_2threads Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,13 +4149,13 @@ Checking test 071 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 = 137.201000 +The total amount of wall time = 142.601201 Test 071 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_decomp Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,13 +4205,13 @@ Checking test 072 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 = 97.061276 +The total amount of wall time = 96.810468 Test 072 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_satmedmf +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_satmedmf Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,13 +4261,13 @@ Checking test 073 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 = 96.544713 +The total amount of wall time = 100.648046 Test 073 cpld_satmedmf PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_ca Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4317,13 +4317,13 @@ Checking test 074 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 = 97.096333 +The total amount of wall time = 100.998249 Test 074 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_c192 Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4373,13 +4373,13 @@ Checking test 075 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 = 411.391098 +The total amount of wall time = 410.938910 Test 075 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_c192 Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4429,13 +4429,13 @@ Checking test 076 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 = 294.709511 +The total amount of wall time = 297.226858 Test 076 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_controlfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac_c192 Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4485,13 +4485,13 @@ Checking test 077 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 = 408.695469 +The total amount of wall time = 397.475140 Test 077 cpld_controlfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restartfrac_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac_c192 Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4541,13 +4541,13 @@ Checking test 078 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 = 293.943822 +The total amount of wall time = 281.607497 Test 078 cpld_restartfrac_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_c384 Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4600,13 +4600,13 @@ Checking test 079 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 = 1604.222619 +The total amount of wall time = 1502.320144 Test 079 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_c384 Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 080 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 = 850.631618 +The total amount of wall time = 841.449918 Test 080 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_controlfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac_c384 Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4718,13 +4718,13 @@ Checking test 081 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 = 1605.121186 +The total amount of wall time = 1604.479366 Test 081 cpld_controlfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restartfrac_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac_c384 Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4777,13 +4777,13 @@ Checking test 082 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 = 783.327860 +The total amount of wall time = 840.571986 Test 082 cpld_restartfrac_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmark Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4836,13 +4836,13 @@ Checking test 083 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 = 915.376636 +The total amount of wall time = 913.261208 Test 083 cpld_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart_bmark +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmark Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,13 +4895,13 @@ Checking test 084 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 = 499.225425 +The total amount of wall time = 495.609531 Test 084 cpld_restart_bmark PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4954,13 +4954,13 @@ Checking test 085 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 = 907.856427 +The total amount of wall time = 908.700022 Test 085 cpld_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart_bmarkfrac +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmarkfrac Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5013,13 +5013,13 @@ Checking test 086 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 = 492.601006 +The total amount of wall time = 493.000478 Test 086 cpld_restart_bmarkfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmarkfrac_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_v16 Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5072,14 +5072,73 @@ Checking test 087 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 -The total amount of wall time = 1635.849833 +The total amount of wall time = 1650.433584 Test 087 cpld_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_restart_bmarkfrac_v16 -Checking test 088 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_v16_nsst +Checking test 088 cpld_bmarkfrac_v16_nsst results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc .........OK + +The total amount of wall time = 1623.385493 + +Test 088 cpld_bmarkfrac_v16_nsst PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmarkfrac_v16 +Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5131,14 +5190,14 @@ Checking test 088 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 -The total amount of wall time = 872.171034 +The total amount of wall time = 881.715429 -Test 088 cpld_restart_bmarkfrac_v16 PASS +Test 089 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmark_wave -Checking test 089 cpld_bmark_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmark_wave +Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5193,14 +5252,14 @@ Checking test 089 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 -The total amount of wall time = 1524.772438 +The total amount of wall time = 1587.069372 -Test 089 cpld_bmark_wave PASS +Test 090 cpld_bmark_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmarkfrac_wave -Checking test 090 cpld_bmarkfrac_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_wave +Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5255,14 +5314,14 @@ Checking test 090 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 -The total amount of wall time = 1588.854080 +The total amount of wall time = 1522.107795 -Test 090 cpld_bmarkfrac_wave PASS +Test 091 cpld_bmarkfrac_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_bmarkfrac_wave_v16 -Checking test 091 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_wave_v16 +Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5316,14 +5375,14 @@ Checking test 091 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 -The total amount of wall time = 1013.202984 +The total amount of wall time = 1037.976723 -Test 091 cpld_bmarkfrac_wave_v16 PASS +Test 092 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_control_wave -Checking test 092 cpld_control_wave results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_wave +Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5375,14 +5434,14 @@ Checking test 092 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 826.027374 +The total amount of wall time = 814.854639 -Test 092 cpld_control_wave PASS +Test 093 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_debug -Checking test 093 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_debug +Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5431,14 +5490,14 @@ Checking test 093 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 = 306.955206 +The total amount of wall time = 306.257949 -Test 093 cpld_debug PASS +Test 094 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debugfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/cpld_debugfrac -Checking test 094 cpld_debugfrac results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_debugfrac +Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5487,74 +5546,74 @@ Checking test 094 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 = 305.323812 +The total amount of wall time = 306.796080 -Test 094 cpld_debugfrac PASS +Test 095 cpld_debugfrac PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_control_cfsr -Checking test 095 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_control_cfsr +Checking test 096 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 = 103.512062 +The total amount of wall time = 102.005254 -Test 095 datm_control_cfsr PASS +Test 096 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_restart_cfsr -Checking test 096 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_restart_cfsr +Checking test 097 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 = 64.632356 +The total amount of wall time = 64.488421 -Test 096 datm_restart_cfsr PASS +Test 097 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_control_gefs -Checking test 097 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_control_gefs +Checking test 098 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 = 97.369163 +The total amount of wall time = 96.521155 -Test 097 datm_control_gefs PASS +Test 098 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_bulk_cfsr -Checking test 098 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_bulk_cfsr +Checking test 099 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 = 99.305795 +The total amount of wall time = 96.315070 -Test 098 datm_bulk_cfsr PASS +Test 099 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_bulk_gefs -Checking test 099 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_bulk_gefs +Checking test 100 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 = 97.057697 +The total amount of wall time = 96.721934 -Test 099 datm_bulk_gefs PASS +Test 100 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_mx025_cfsr -Checking test 100 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_mx025_cfsr +Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5562,14 +5621,14 @@ Checking test 100 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 -The total amount of wall time = 396.634824 +The total amount of wall time = 378.463802 -Test 100 datm_mx025_cfsr PASS +Test 101 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_mx025_gefs -Checking test 101 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_mx025_gefs +Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5577,23 +5636,23 @@ Checking test 101 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 = 394.573405 +The total amount of wall time = 391.055138 -Test 101 datm_mx025_gefs PASS +Test 102 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_13384/datm_debug_cfsr -Checking test 102 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_debug_cfsr +Checking test 103 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 = 283.113224 +The total amount of wall time = 283.098323 -Test 102 datm_debug_cfsr PASS +Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 15:52:10 MDT 2021 -Elapsed time: 01h:26m:40s. Have a nice day! +Wed Apr 7 09:45:02 MDT 2021 +Elapsed time: 01h:31m:26s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 96b8f7f2d7..24757c04db 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,27 +1,27 @@ -Thu Apr 1 19:50:55 EDT 2021 +Wed Apr 7 11:12:05 EDT 2021 Start Regression test -Compile 001 elapsed time 687 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 643 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 650 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 647 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 698 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 762 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 32BIT=Y -Compile 008 elapsed time 656 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 660 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 673 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 704 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 253 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 260 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 256 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 736 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 016 elapsed time 287 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 513 seconds. APP=DATM_NEMS -Compile 018 elapsed time 255 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_control +Compile 001 elapsed time 692 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 659 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 685 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 669 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 785 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 858 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 32BIT=Y +Compile 008 elapsed time 674 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 731 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 671 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 702 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 244 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 273 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 264 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 765 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 304 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 560 seconds. APP=DATM_NEMS +Compile 018 elapsed time 305 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -86,13 +86,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 = 65.635285 +The total amount of wall time = 81.668284 Test 001 fv3_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -157,13 +157,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 = 45.459180 +The total amount of wall time = 48.310962 Test 002 fv3_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -228,13 +228,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.750057 +The total amount of wall time = 78.486350 Test 003 fv3_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -281,13 +281,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.451809 +The total amount of wall time = 24.572785 Test 004 fv3_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_read_inc +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,13 +352,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 = 41.687706 +The total amount of wall time = 62.610608 Test 005 fv3_read_inc PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGauss_netcdf_esmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -403,13 +403,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 = 103.313685 +The total amount of wall time = 130.496683 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGauss_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -454,13 +454,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 = 41.501110 +The total amount of wall time = 46.770017 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,13 +505,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 = 250.894922 +The total amount of wall time = 157.290692 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGlatlon_netcdf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -556,13 +556,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 = 41.049826 +The total amount of wall time = 42.611500 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGauss_nemsio +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -607,13 +607,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 = 43.298175 +The total amount of wall time = 42.207751 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_wrtGauss_nemsio_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -658,13 +658,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 = 115.907264 +The total amount of wall time = 114.593532 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -729,13 +729,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 = 77.139983 +The total amount of wall time = 53.534276 Test 012 fv3_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -800,13 +800,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 = 32.586894 +The total amount of wall time = 61.429829 Test 013 fv3_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,13 +871,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 = 52.125877 +The total amount of wall time = 66.360319 Test 014 fv3_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_iau -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_iau +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -942,13 +942,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.338255 +The total amount of wall time = 41.638843 Test 015 fv3_iau PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -993,13 +993,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 = 40.742009 +The total amount of wall time = 73.502477 Test 016 fv3_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_multigases_repro +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1070,13 +1070,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 = 94.449634 +The total amount of wall time = 98.548348 Test 017 fv3_multigases PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_control_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1141,13 +1141,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 = 69.507825 +The total amount of wall time = 45.980169 Test 018 fv3_control_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_stretched +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,13 +1200,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 = 314.413500 +The total amount of wall time = 316.951947 Test 019 fv3_stretched PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_stretched_nest +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1270,13 +1270,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 = 368.639937 +The total amount of wall time = 338.268977 Test 020 fv3_stretched_nest PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1284,25 +1284,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 = 690.406857 +The total amount of wall time = 697.515686 Test 021 fv3_regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 = 377.799472 +The total amount of wall time = 377.837322 Test 022 fv3_regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1311,13 +1311,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 710.610529 +The total amount of wall time = 719.612441 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1325,13 +1325,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 720.874219 +The total amount of wall time = 730.459626 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfdlmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,13 +1376,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 = 49.554102 +The total amount of wall time = 48.564397 Test 025 fv3_gfdlmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfdlmprad_gwd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1427,13 +1427,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 = 47.053309 +The total amount of wall time = 54.984341 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfdlmprad_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,13 +1478,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 = 74.388787 +The total amount of wall time = 49.971356 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,13 +1529,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.918896 +The total amount of wall time = 125.908747 Test 028 fv3_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1580,13 +1580,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 64.600917 +The total amount of wall time = 73.061014 Test 029 fv3_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_satmedmfq +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1631,13 +1631,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 51.715984 +The total amount of wall time = 53.461814 Test 030 fv3_satmedmfq PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfdlmp_32bit +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,13 +1682,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 = 39.185371 +The total amount of wall time = 40.716876 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfdlmprad_32bit_post +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1737,13 +1737,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 = 79.651949 +The total amount of wall time = 84.177052 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_cpt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1794,13 +1794,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 = 289.792995 +The total amount of wall time = 292.688728 Test 033 fv3_cpt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1889,13 +1889,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 = 184.940065 +The total amount of wall time = 187.913279 Test 034 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,13 +1960,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.035068 +The total amount of wall time = 123.096743 Test 035 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2031,13 +2031,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.148105 +The total amount of wall time = 114.329651 Test 036 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2102,13 +2102,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 83.920997 +The total amount of wall time = 88.118415 Test 037 fv3_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2173,13 +2173,13 @@ Checking test 038 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 = 85.526342 +The total amount of wall time = 86.503485 Test 038 fv3_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,13 +2244,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 112.206953 +The total amount of wall time = 94.109614 Test 039 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2327,13 +2327,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 149.267396 +The total amount of wall time = 212.755425 Test 040 fv3_gfs_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2380,13 +2380,13 @@ Checking test 041 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 = 90.094933 +The total amount of wall time = 99.094435 Test 041 fv3_gfs_v16_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,13 +2451,13 @@ Checking test 042 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.709992 +The total amount of wall time = 55.086124 Test 042 fv3_gfs_v16_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2522,13 +2522,13 @@ Checking test 043 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 = 196.076650 +The total amount of wall time = 211.882218 Test 043 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2587,13 +2587,13 @@ Checking test 044 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 = 824.632678 +The total amount of wall time = 821.703428 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2658,13 +2658,13 @@ Checking test 045 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.780015 +The total amount of wall time = 326.202808 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfsv16_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_csawmg Checking test 046 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2709,13 +2709,13 @@ Checking test 046 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.710268 +The total amount of wall time = 131.403359 Test 046 fv3_gfsv16_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfsv16_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_csawmgt Checking test 047 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2760,13 +2760,13 @@ Checking test 047 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.783545 +The total amount of wall time = 130.133983 Test 047 fv3_gfsv16_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gocart_clm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gocart_clm Checking test 048 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2811,13 +2811,13 @@ Checking test 048 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 78.384932 +The total amount of wall time = 54.330356 Test 048 fv3_gocart_clm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_flake Checking test 049 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2882,13 +2882,13 @@ Checking test 049 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 = 103.561786 +The total amount of wall time = 105.717596 Test 049 fv3_gfs_v16_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 @@ -2953,13 +2953,13 @@ Checking test 050 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 = 173.663759 +The total amount of wall time = 170.495844 Test 050 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 @@ -2974,13 +2974,13 @@ Checking test 051 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 = 335.219509 +The total amount of wall time = 343.481604 Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfsv16_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1 Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3039,13 +3039,13 @@ Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 191.993905 +The total amount of wall time = 203.576865 Test 052 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1_warmstart Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3104,13 +3104,13 @@ Checking test 053 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 = 191.010967 +The total amount of wall time = 190.633207 Test 053 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_ras Checking test 054 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3175,13 +3175,13 @@ Checking test 054 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 = 130.993663 +The total amount of wall time = 101.295861 Test 054 fv3_gfs_v16_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3246,13 +3246,13 @@ Checking test 055 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 = 253.367997 +The total amount of wall time = 253.497438 Test 055 fv3_gfs_v16_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 @@ -3317,13 +3317,13 @@ Checking test 056 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 = 382.082239 +The total amount of wall time = 379.195905 Test 056 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3331,13 +3331,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 -The total amount of wall time = 370.727209 +The total amount of wall time = 369.385791 Test 057 fv3_regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3364,13 +3364,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 136.449222 +The total amount of wall time = 141.373306 Test 058 fv3_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_stretched_nest_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 @@ -3387,13 +3387,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 442.319588 +The total amount of wall time = 441.055876 Test 059 fv3_stretched_nest_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3458,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.551723 +The total amount of wall time = 205.106930 Test 060 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 061 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.521775 +The total amount of wall time = 242.318366 Test 061 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3600,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 350.963682 +The total amount of wall time = 351.610069 Test 062 fv3_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/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 @@ -3671,13 +3671,13 @@ Checking test 063 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 = 338.194224 +The total amount of wall time = 337.737325 Test 063 fv3_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3742,13 +3742,13 @@ Checking test 064 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 = 199.069061 +The total amount of wall time = 199.605329 Test 064 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3813,13 +3813,13 @@ Checking test 065 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 = 212.041180 +The total amount of wall time = 211.084198 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3834,13 +3834,13 @@ Checking test 066 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.264267 +The total amount of wall time = 383.741847 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfsv16_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3899,13 +3899,13 @@ Checking test 067 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 = 592.304376 +The total amount of wall time = 622.470655 Test 067 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/fv3_gfs_v16_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3970,13 +3970,13 @@ Checking test 068 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.759895 +The total amount of wall time = 333.424515 Test 068 fv3_gfs_v16_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4026,13 +4026,13 @@ Checking test 069 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 = 95.823792 +The total amount of wall time = 100.521107 Test 069 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4082,13 +4082,13 @@ Checking test 070 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 = 52.062868 +The total amount of wall time = 52.430001 Test 070 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_controlfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4138,13 +4138,13 @@ Checking test 071 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 = 121.033512 +The total amount of wall time = 103.588459 Test 071 cpld_controlfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restartfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,13 +4194,13 @@ Checking test 072 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.309669 +The total amount of wall time = 56.444303 Test 072 cpld_restartfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_2threads Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4250,13 +4250,13 @@ Checking test 073 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.191161 +The total amount of wall time = 137.042282 Test 073 cpld_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_decomp Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4306,13 +4306,13 @@ Checking test 074 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.513082 +The total amount of wall time = 99.202463 Test 074 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_satmedmf +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_satmedmf Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4362,13 +4362,13 @@ Checking test 075 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.885443 +The total amount of wall time = 94.534519 Test 075 cpld_satmedmf PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_ca Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4418,13 +4418,13 @@ Checking test 076 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 = 94.832553 +The total amount of wall time = 94.868891 Test 076 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control_c192 Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4474,13 +4474,13 @@ Checking test 077 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 = 433.945659 +The total amount of wall time = 412.041817 Test 077 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_c192 Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4530,13 +4530,13 @@ Checking test 078 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.731925 +The total amount of wall time = 284.121450 Test 078 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_controlfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac_c192 Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4586,13 +4586,13 @@ Checking test 079 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 = 407.158549 +The total amount of wall time = 413.316553 Test 079 cpld_controlfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restartfrac_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac_c192 Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4642,13 +4642,13 @@ Checking test 080 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 = 282.006741 +The total amount of wall time = 285.165286 Test 080 cpld_restartfrac_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control_c384 Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4701,13 @@ Checking test 081 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 = 1514.485767 +The total amount of wall time = 1518.184604 Test 081 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_c384 Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,13 +4760,13 @@ Checking test 082 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 = 804.097657 +The total amount of wall time = 808.687355 Test 082 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_controlfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac_c384 Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4819,13 +4819,13 @@ Checking test 083 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 = 1505.585595 +The total amount of wall time = 1507.338265 Test 083 cpld_controlfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restartfrac_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac_c384 Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4878,13 +4878,13 @@ Checking test 084 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 = 777.204250 +The total amount of wall time = 802.273679 Test 084 cpld_restartfrac_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_bmark Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4937,13 +4937,13 @@ Checking test 085 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 = 888.334032 +The total amount of wall time = 882.504528 Test 085 cpld_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restart_bmark +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_bmark Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4996,13 +4996,13 @@ Checking test 086 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 = 455.732652 +The total amount of wall time = 486.012252 Test 086 cpld_restart_bmark PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_bmarkfrac Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5055,13 +5055,13 @@ Checking test 087 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 = 877.541312 +The total amount of wall time = 890.373882 Test 087 cpld_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_restart_bmarkfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_bmarkfrac Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5114,13 +5114,13 @@ Checking test 088 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 = 491.565142 +The total amount of wall time = 481.443519 Test 088 cpld_restart_bmarkfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_debug Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5170,13 +5170,13 @@ Checking test 089 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 = 274.460130 +The total amount of wall time = 277.003551 Test 089 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/cpld_debugfrac +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_debugfrac Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5226,73 +5226,73 @@ Checking test 090 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.534455 +The total amount of wall time = 273.689501 Test 090 cpld_debugfrac PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_control_cfsr Checking test 091 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 = 104.349070 +The total amount of wall time = 105.547304 Test 091 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_restart_cfsr Checking test 092 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 = 62.727927 +The total amount of wall time = 63.308824 Test 092 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_control_gefs Checking test 093 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 = 104.806244 +The total amount of wall time = 99.005801 Test 093 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_bulk_cfsr Checking test 094 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.788144 +The total amount of wall time = 100.130073 Test 094 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_bulk_gefs Checking test 095 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 = 121.632040 +The total amount of wall time = 102.806342 Test 095 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5301,23 +5301,23 @@ Checking test 096 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 = 394.301828 +The total amount of wall time = 398.271190 Test 096 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4748/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_debug_cfsr Checking test 097 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 = 231.297372 +The total amount of wall time = 231.839569 Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 21:12:38 EDT 2021 -Elapsed time: 01h:21m:44s. Have a nice day! +Wed Apr 7 12:49:12 EDT 2021 +Elapsed time: 01h:37m:07s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 9eb2ebd483..1d5ac1ab0b 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Thu Apr 1 14:17:17 UTC 2021 +Wed Apr 7 16:21:34 UTC 2021 Start Regression test -Compile 001 elapsed time 210 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 209 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 235 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 215 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 137 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 237 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 106 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 234 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 216 seconds. APP=DATM_NEMS - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfdlmp +Compile 001 elapsed time 212 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 212 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 240 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 217 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 144 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 107 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 240 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 107 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 246 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 218 seconds. APP=DATM_NEMS + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 222.899948 + 0: The total amount of wall time = 224.052403 Test 001 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 612.041401 + 0: The total amount of wall time = 648.482506 Test 002 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 312.254928 + 0: The total amount of wall time = 323.680835 Test 003 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 343.485946 + 0: The total amount of wall time = 349.942493 Test 004 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 622.888492 + 0: The total amount of wall time = 618.205913 Test 005 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 729.732152 + 0: The total amount of wall time = 740.139372 Test 006 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 822.141468 + 0: The total amount of wall time = 848.630963 Test 007 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 376.080625 + 0: The total amount of wall time = 396.261455 Test 008 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/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 = 375.672574 + 0: The total amount of wall time = 368.870208 Test 009 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_rrfs_v1beta Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 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 = 394.892563 + 0: The total amount of wall time = 390.614111 Test 010 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 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 = 628.267013 + 0: The total amount of wall time = 613.304236 Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -807,13 +807,13 @@ Checking test 012 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 = 454.781319 + 0: The total amount of wall time = 437.934702 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1 Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 013 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 = 909.089645 + 0: The total amount of wall time = 916.875328 Test 013 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1_warmstart Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -937,13 +937,13 @@ Checking test 014 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 = 901.205824 + 0: The total amount of wall time = 912.454511 Test 014 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_ras Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,13 +1008,13 @@ Checking test 015 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 = 579.368587 + 0: The total amount of wall time = 547.531557 Test 015 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_control_debug Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1041,13 +1041,13 @@ Checking test 016 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 79.569397 + 0: The total amount of wall time = 83.952951 Test 016 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_regional_control_debug Checking test 017 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1055,13 +1055,13 @@ Checking test 017 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 = 165.650943 + 0: The total amount of wall time = 168.951791 Test 017 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1126,13 +1126,13 @@ Checking test 018 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 = 113.968852 + 0: The total amount of wall time = 114.691456 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 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 = 116.597301 + 0: The total amount of wall time = 120.055567 Test 019 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson_debug Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 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 = 193.896188 + 0: The total amount of wall time = 199.339817 Test 020 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson_no_aero_debug Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 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 = 190.063286 + 0: The total amount of wall time = 193.800030 Test 021 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v15p2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v15p2_debug Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 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 = 292.654839 + 0: The total amount of wall time = 294.838999 Test 022 fv3_gfs_v15p2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_debug Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 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.470327 + 0: The total amount of wall time = 168.253161 Test 023 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_RRTMGP_debug Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 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 = 353.861820 + 0: The total amount of wall time = 360.362524 Test 024 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_multigases +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_multigases Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,13 +1629,13 @@ Checking test 025 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 431.730708 + 0: The total amount of wall time = 418.104384 Test 025 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 026 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 = 130.755891 + 0: The total amount of wall time = 131.757593 Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1721,13 +1721,13 @@ Checking test 027 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 = 221.750452 + 0: The total amount of wall time = 221.831857 Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1_debug Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1786,13 +1786,13 @@ Checking test 028 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 = 389.645530 + 0: The total amount of wall time = 397.674594 Test 028 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_41663/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_ras_debug Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,11 +1857,11 @@ Checking test 029 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.590871 + 0: The total amount of wall time = 216.524125 Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 14:49:06 UTC 2021 -Elapsed time: 00h:31m:51s. Have a nice day! +Wed Apr 7 16:52:19 UTC 2021 +Elapsed time: 00h:30m:46s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7b2abb23d4..f6ff35edd1 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,29 +1,29 @@ -Thu Apr 1 20:31:11 UTC 2021 +Thu Apr 8 13:01:51 UTC 2021 Start Regression test -Compile 001 elapsed time 494 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 524 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 499 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 624 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 546 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 580 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 32BIT=Y -Compile 009 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 527 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 531 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 566 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 168 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 171 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 218 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 635 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 560 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 215 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 457 seconds. APP=DATM_NEMS -Compile 020 elapsed time 233 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_control +Compile 001 elapsed time 633 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 517 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 488 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 937 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1125 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 785 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 1202 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 1370 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 32BIT=Y +Compile 009 elapsed time 547 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1100 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 565 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 320 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 168 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 171 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 563 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 556 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 275 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 502 seconds. APP=DATM_NEMS +Compile 020 elapsed time 125 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 40.872938 + 0: The total amount of wall time = 40.782680 Test 001 fv3_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 41.682713 + 0: The total amount of wall time = 41.227479 Test 002 fv3_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 60.511569 + 0: The total amount of wall time = 60.800772 Test 003 fv3_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 28.448533 + 0: The total amount of wall time = 19.532613 Test 004 fv3_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_read_inc +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 55.313082 + 0: The total amount of wall time = 37.012249 Test 005 fv3_read_inc PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_netcdf_esmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 132.899283 + 0: The total amount of wall time = 127.924439 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 36.962298 + 0: The total amount of wall time = 40.536472 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,7 +470,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 .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......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.488853 + 0: The total amount of wall time = 50.646780 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGlatlon_netcdf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 37.072557 + 0: The total amount of wall time = 41.887559 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_nemsio +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 36.354087 + 0: The total amount of wall time = 37.903884 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_nemsio_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 97.374045 + 0: The total amount of wall time = 100.627980 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 42.553516 + 0: The total amount of wall time = 41.217601 Test 012 fv3_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 26.597260 + 0: The total amount of wall time = 28.141071 Test 013 fv3_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 43.512590 + 0: The total amount of wall time = 44.595376 Test 014 fv3_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_iau +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 64.040411 + 0: The total amount of wall time = 36.910841 Test 015 fv3_iau PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 37.096638 + 0: The total amount of wall time = 37.251327 Test 016 fv3_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmprad +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,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 = 653.570948 + 0: The total amount of wall time = 654.936337 Test 017 fv3_gfdlmprad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmprad_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,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 = 803.326221 + 0: The total amount of wall time = 800.615915 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_wrtGauss_nemsio_c768 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,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 = 734.552520 + 0: The total amount of wall time = 709.877581 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_multigases_repro +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,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 = 94.113765 + 0: The total amount of wall time = 94.934068 Test 020 fv3_multigases PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_control_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,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.850399 + 0: The total amount of wall time = 37.907795 Test 021 fv3_control_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_stretched +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,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 = 250.419937 + 0: The total amount of wall time = 250.543362 Test 022 fv3_stretched PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_stretched_nest +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 273.674513 + 0: The total amount of wall time = 280.830857 Test 023 fv3_stretched_nest PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,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 = 605.364168 + 0: The total amount of wall time = 601.238053 Test 024 fv3_regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 = 334.391631 + 0: The total amount of wall time = 334.543164 Test 025 fv3_regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1469,27 +1469,27 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 613.434744 + 0: The total amount of wall time = 616.623803 Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 621.367640 + 0: The total amount of wall time = 618.522824 Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1534,13 +1534,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 = 45.840128 + 0: The total amount of wall time = 43.711718 Test 028 fv3_gfdlmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmprad_gwd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1585,13 +1585,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 = 44.091695 + 0: The total amount of wall time = 43.258665 Test 029 fv3_gfdlmprad_gwd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmprad_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1636,13 +1636,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 = 45.864951 + 0: The total amount of wall time = 48.519406 Test 030 fv3_gfdlmprad_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1687,13 +1687,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 = 109.223397 + 0: The total amount of wall time = 111.531576 Test 031 fv3_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 48.227917 + 0: The total amount of wall time = 46.364250 Test 032 fv3_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_satmedmfq +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,13 +1789,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 = 45.232384 + 0: The total amount of wall time = 45.383167 Test 033 fv3_satmedmfq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmp_32bit +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,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 = 36.529844 + 0: The total amount of wall time = 38.107238 Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfdlmprad_32bit_post +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1895,13 +1895,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 = 76.768263 + 0: The total amount of wall time = 75.148977 Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_cpt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,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 = 268.384679 + 0: The total amount of wall time = 258.526238 Test 036 fv3_cpt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2047,13 +2047,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 = 191.435841 + 0: The total amount of wall time = 167.172925 Test 037 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2118,13 +2118,13 @@ Checking test 038 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.360239 + 0: The total amount of wall time = 83.732364 Test 038 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,13 +2189,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.980316 + 0: The total amount of wall time = 84.607445 Test 039 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,13 +2260,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.828585 + 0: The total amount of wall time = 76.795004 Test 040 fv3_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,13 +2331,13 @@ Checking test 041 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 = 98.950289 + 0: The total amount of wall time = 77.768020 Test 041 fv3_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2402,13 +2402,13 @@ Checking test 042 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 = 125.314122 + 0: The total amount of wall time = 85.510982 Test 042 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 043 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 = 138.365460 + 0: The total amount of wall time = 130.252479 Test 043 fv3_gfs_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,13 +2538,13 @@ Checking test 044 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.000354 + 0: The total amount of wall time = 76.452291 Test 044 fv3_gfs_v16_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,13 +2609,13 @@ Checking test 045 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 = 80.381852 + 0: The total amount of wall time = 47.149762 Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2680,13 +2680,13 @@ Checking test 046 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 = 164.075359 + 0: The total amount of wall time = 168.444345 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2745,13 +2745,13 @@ Checking test 047 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 = 690.611484 + 0: The total amount of wall time = 654.493620 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 048 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 = 243.112806 + 0: The total amount of wall time = 236.965419 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfsv16_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,13 +2867,13 @@ Checking test 049 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 = 114.791824 + 0: The total amount of wall time = 116.502289 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfsv16_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2918,13 +2918,13 @@ Checking test 050 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 = 112.990722 + 0: The total amount of wall time = 113.981151 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gocart_clm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2969,13 +2969,13 @@ Checking test 051 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.985111 + 0: The total amount of wall time = 47.618171 Test 051 fv3_gocart_clm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,13 +3040,13 @@ Checking test 052 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 = 91.537014 + 0: The total amount of wall time = 91.564507 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3111,13 +3111,13 @@ Checking test 053 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 = 143.519849 + 0: The total amount of wall time = 143.131741 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3132,13 +3132,13 @@ Checking test 054 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 = 290.997835 + 0: The total amount of wall time = 279.591863 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfsv16_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3197,13 +3197,13 @@ Checking test 055 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 = 165.418769 + 0: The total amount of wall time = 165.230016 Test 055 fv3_gfsv16_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3262,13 +3262,13 @@ Checking test 056 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 = 165.378933 + 0: The total amount of wall time = 165.281030 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3333,13 +3333,13 @@ Checking test 057 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 = 87.849788 + 0: The total amount of wall time = 88.620814 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3404,13 +3404,13 @@ Checking test 058 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 = 241.286279 + 0: The total amount of wall time = 242.888431 Test 058 fv3_gfs_v16_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_RRTMGP_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3475,13 +3475,13 @@ Checking test 059 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 = 361.560336 + 0: The total amount of wall time = 368.220464 Test 059 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3489,13 +3489,13 @@ Checking test 060 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 = 354.235465 + 0: The total amount of wall time = 363.496523 Test 060 fv3_regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3522,13 +3522,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 134.467491 + 0: The total amount of wall time = 137.785308 Test 061 fv3_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_stretched_nest_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3545,13 +3545,13 @@ Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 373.700933 + 0: The total amount of wall time = 372.241535 Test 062 fv3_stretched_nest_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,13 +3616,13 @@ Checking test 063 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 = 200.891215 + 0: The total amount of wall time = 203.735309 Test 063 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3687,13 +3687,13 @@ Checking test 064 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 = 406.829819 + 0: The total amount of wall time = 264.391365 Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3758,13 +3758,13 @@ Checking test 065 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 = 334.093451 + 0: The total amount of wall time = 344.600446 Test 065 fv3_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3829,13 +3829,13 @@ Checking test 066 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 = 321.180042 + 0: The total amount of wall time = 331.349130 Test 066 fv3_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3900,13 +3900,13 @@ Checking test 067 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 = 192.414796 + 0: The total amount of wall time = 200.236848 Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 @@ -3971,13 +3971,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 - 0: The total amount of wall time = 201.420869 + 0: The total amount of wall time = 198.596380 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 @@ -3992,13 +3992,13 @@ Checking test 069 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 = 392.519383 + 0: The total amount of wall time = 390.418966 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfsv16_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4057,13 +4057,13 @@ Checking test 070 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 = 563.821693 + 0: The total amount of wall time = 559.410267 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/fv3_gfs_v16_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/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 @@ -4128,13 +4128,13 @@ Checking test 071 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.998610 + 0: The total amount of wall time = 314.347561 Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4184,13 +4184,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 - 0: The total amount of wall time = 93.732163 + 0: The total amount of wall time = 94.109761 Test 072 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4240,13 +4240,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 - 0: The total amount of wall time = 66.034724 + 0: The total amount of wall time = 57.656600 Test 073 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_controlfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4296,13 +4296,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 - 0: The total amount of wall time = 93.344650 + 0: The total amount of wall time = 104.418684 Test 074 cpld_controlfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restartfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4352,13 +4352,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 - 0: The total amount of wall time = 64.318495 + 0: The total amount of wall time = 57.299025 Test 075 cpld_restartfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4408,13 +4408,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 - 0: The total amount of wall time = 115.571905 + 0: The total amount of wall time = 117.770817 Test 076 cpld_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4464,13 +4464,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 - 0: The total amount of wall time = 101.953659 + 0: The total amount of wall time = 91.980157 Test 077 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_satmedmf +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4520,13 +4520,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 - 0: The total amount of wall time = 99.990670 + 0: The total amount of wall time = 103.047906 Test 078 cpld_satmedmf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4576,13 +4576,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 - 0: The total amount of wall time = 101.618778 + 0: The total amount of wall time = 93.361898 Test 079 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4632,13 +4632,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 - 0: The total amount of wall time = 412.360210 + 0: The total amount of wall time = 426.269399 Test 080 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4688,13 +4688,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 - 0: The total amount of wall time = 268.376146 + 0: The total amount of wall time = 283.016804 Test 081 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_controlfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4744,13 +4744,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 - 0: The total amount of wall time = 418.140041 + 0: The total amount of wall time = 421.509666 Test 082 cpld_controlfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restartfrac_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4800,13 +4800,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 - 0: The total amount of wall time = 271.937417 + 0: The total amount of wall time = 280.450510 Test 083 cpld_restartfrac_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,13 +4859,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 - 0: The total amount of wall time = 1348.653995 + 0: The total amount of wall time = 1348.841856 Test 084 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4918,13 +4918,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 - 0: The total amount of wall time = 735.992471 + 0: The total amount of wall time = 722.231648 Test 085 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_controlfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,13 +4977,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 - 0: The total amount of wall time = 1352.316365 + 0: The total amount of wall time = 1337.079230 Test 086 cpld_controlfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restartfrac_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,13 +5036,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 - 0: The total amount of wall time = 728.158201 + 0: The total amount of wall time = 727.905099 Test 087 cpld_restartfrac_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5095,13 +5095,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 - 0: The total amount of wall time = 854.618287 + 0: The total amount of wall time = 826.795353 Test 088 cpld_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart_bmark +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5154,13 +5154,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 - 0: The total amount of wall time = 459.251001 + 0: The total amount of wall time = 497.594866 Test 089 cpld_restart_bmark PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5213,13 +5213,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 - 0: The total amount of wall time = 810.261981 + 0: The total amount of wall time = 871.307291 Test 090 cpld_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart_bmarkfrac +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5272,13 +5272,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 - 0: The total amount of wall time = 456.577558 + 0: The total amount of wall time = 476.070566 Test 091 cpld_restart_bmarkfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmarkfrac_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_v16 Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5331,14 +5331,73 @@ Checking test 092 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 = 1342.344265 + 0: The total amount of wall time = 1392.761000 Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_restart_bmarkfrac_v16 -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_v16_nsst +Checking test 093 cpld_bmarkfrac_v16_nsst results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 1354.305095 + +Test 093 cpld_bmarkfrac_v16_nsst PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmarkfrac_v16 +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5390,14 +5449,14 @@ Checking test 093 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 = 739.290805 + 0: The total amount of wall time = 735.045482 -Test 093 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmark_wave -Checking test 094 cpld_bmark_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmark_wave +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5452,14 +5511,14 @@ Checking test 094 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 = 1388.264587 + 0: The total amount of wall time = 1436.425946 -Test 094 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmarkfrac_wave -Checking test 095 cpld_bmarkfrac_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_wave +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5514,14 +5573,14 @@ Checking test 095 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 = 1396.063888 + 0: The total amount of wall time = 1424.685072 -Test 095 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_bmarkfrac_wave_v16 -Checking test 096 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_wave_v16 +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5575,14 +5634,14 @@ Checking test 096 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 = 890.965277 + 0: The total amount of wall time = 893.818338 -Test 096 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_control_wave -Checking test 097 cpld_control_wave results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_wave +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5634,14 +5693,14 @@ Checking test 097 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 = 777.338442 + 0: The total amount of wall time = 786.826694 -Test 097 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_debug -Checking test 098 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_debug +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5690,14 +5749,14 @@ Checking test 098 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 = 289.976006 + 0: The total amount of wall time = 296.895514 -Test 098 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/cpld_debugfrac -Checking test 099 cpld_debugfrac results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_debugfrac +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5746,74 +5805,74 @@ Checking test 099 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 = 291.184925 + 0: The total amount of wall time = 293.580640 -Test 099 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_control_cfsr +Checking test 101 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 = 122.215001 + 0: The total amount of wall time = 97.420083 -Test 100 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_restart_cfsr +Checking test 102 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 = 62.361719 + 0: The total amount of wall time = 67.772473 -Test 101 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_control_gefs -Checking test 102 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_control_gefs +Checking test 103 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 = 97.332034 + 0: The total amount of wall time = 95.577769 -Test 102 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_bulk_cfsr +Checking test 104 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 = 96.134770 + 0: The total amount of wall time = 95.592568 -Test 103 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_bulk_gefs +Checking test 105 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 = 94.256587 + 0: The total amount of wall time = 91.884016 -Test 104 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5821,14 +5880,14 @@ Checking test 105 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 = 382.383618 + 0: The total amount of wall time = 388.822923 -Test 105 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5836,23 +5895,23 @@ Checking test 106 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 = 373.958718 + 0: The total amount of wall time = 389.863918 -Test 106 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_205803/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_debug_cfsr +Checking test 108 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 = 286.346588 + 0: The total amount of wall time = 277.639703 -Test 107 datm_debug_cfsr PASS +Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 22:02:31 UTC 2021 -Elapsed time: 01h:31m:21s. Have a nice day! +Thu Apr 8 14:49:40 UTC 2021 +Elapsed time: 01h:47m:50s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 0ad44c8950..03a864f2cb 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Sat Apr 3 11:58:05 GMT 2021 +Tue Apr 6 19:56:27 GMT 2021 Start Regression test -Compile 001 elapsed time 2429 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1400 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 2764 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 2416 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2366 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 2344 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2563 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 32BIT=Y -Compile 008 elapsed time 2150 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 2240 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 2470 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 3098 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 278 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 238 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 958 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/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_control +Compile 001 elapsed time 2129 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1154 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2174 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 3427 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2654 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 2350 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 2558 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 32BIT=Y +Compile 008 elapsed time 2147 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2236 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2199 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2362 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 220 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 262 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 220 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/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/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 = 65.028917 +The total amount of wall time = 62.986662 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_2threads +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,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 = 92.389353 +The total amount of wall time = 95.699032 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +206,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 = 30.327084 +The total amount of wall time = 30.053802 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_read_inc +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +277,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 = 59.189377 +The total amount of wall time = 62.023671 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/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 +328,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 = 173.544764 +The total amount of wall time = 179.195248 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +379,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 = 54.794041 +The total amount of wall time = 55.638616 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,13 +430,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 = 70.767784 +The total amount of wall time = 76.260714 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +481,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 = 55.377894 +The total amount of wall time = 54.263709 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +532,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 = 54.283442 +The total amount of wall time = 58.247901 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/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 +583,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.485652 +The total amount of wall time = 154.363352 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,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 = 60.251490 +The total amount of wall time = 60.686517 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_ca +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,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 = 47.962377 +The total amount of wall time = 44.565822 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_lndp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,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 = 69.654397 +The total amount of wall time = 72.509307 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_iau +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,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 = 54.251746 +The total amount of wall time = 63.530879 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_lheatstrg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,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 = 55.715599 +The total amount of wall time = 53.484071 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_multigases_repro +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,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 = 130.889923 +The total amount of wall time = 136.652327 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_control_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,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 = 59.149267 +The total amount of wall time = 69.019652 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_stretched +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1125,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 = 393.725830 +The total amount of wall time = 398.421500 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_stretched_nest +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1195,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 = 429.370802 +The total amount of wall time = 423.351000 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_regional_control +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1209,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 = 857.094987 +The total amount of wall time = 857.782156 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_regional_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/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 = 475.906702 +The total amount of wall time = 478.243165 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_quilt_hafs Checking test 022 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1236,13 +1236,13 @@ Checking test 022 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 871.564740 +The total amount of wall time = 879.065760 Test 022 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_quilt_netcdf_parallel Checking test 023 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1250,13 +1250,13 @@ Checking test 023 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 866.030897 +The total amount of wall time = 884.744760 Test 023 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfdlmp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmp Checking test 024 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,13 +1301,13 @@ Checking test 024 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.839306 +The total amount of wall time = 61.557787 Test 024 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_gwd Checking test 025 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1352,13 +1352,13 @@ Checking test 025 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.069946 +The total amount of wall time = 63.919259 Test 025 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_noahmp Checking test 026 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,13 +1403,13 @@ Checking test 026 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.650064 +The total amount of wall time = 62.446841 Test 026 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_csawmg Checking test 027 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1454,13 +1454,13 @@ Checking test 027 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 151.770631 +The total amount of wall time = 152.724202 Test 027 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_satmedmf +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_satmedmf Checking test 028 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1505,13 +1505,13 @@ Checking test 028 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 70.453153 +The total amount of wall time = 65.855153 Test 028 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_satmedmfq +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_satmedmfq Checking test 029 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1556,13 +1556,13 @@ Checking test 029 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 67.503306 +The total amount of wall time = 66.187156 Test 029 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmp_32bit Checking test 030 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1607,13 +1607,13 @@ Checking test 030 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 53.615845 +The total amount of wall time = 54.907714 Test 030 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_32bit_post Checking test 031 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1662,13 +1662,13 @@ Checking test 031 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 = 97.155119 +The total amount of wall time = 102.583829 Test 031 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_cpt +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_cpt Checking test 032 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1719,13 +1719,13 @@ Checking test 032 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 356.129848 +The total amount of wall time = 359.390521 Test 032 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gsd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd Checking test 033 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,13 +1814,13 @@ Checking test 033 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 233.668684 +The total amount of wall time = 242.079699 Test 033 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson Checking test 034 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 034 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.618214 +The total amount of wall time = 111.542376 Test 034 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_no_aero Checking test 035 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,13 +1956,13 @@ Checking test 035 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 = 109.923210 +The total amount of wall time = 113.332506 Test 035 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16 Checking test 036 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,13 +2039,13 @@ Checking test 036 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 185.526806 +The total amount of wall time = 196.752601 Test 036 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_restart Checking test 037 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2092,13 +2092,13 @@ Checking test 037 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 = 107.422875 +The total amount of wall time = 118.725873 Test 037 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_stochy Checking test 038 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2163,13 +2163,13 @@ Checking test 038 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 = 68.220370 +The total amount of wall time = 67.520915 Test 038 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP Checking test 039 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2234,13 +2234,13 @@ Checking test 039 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 = 196.695712 +The total amount of wall time = 196.384197 Test 039 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_c192L127 Checking test 040 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 040 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.127673 +The total amount of wall time = 858.055752 Test 040 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_2thrd Checking test 041 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 041 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 = 324.014138 +The total amount of wall time = 323.796181 Test 041 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_csawmg Checking test 042 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2421,13 +2421,13 @@ Checking test 042 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.934349 +The total amount of wall time = 162.557220 Test 042 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_csawmgt Checking test 043 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2472,13 +2472,13 @@ Checking test 043 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.980915 +The total amount of wall time = 160.848665 Test 043 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gocart_clm +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gocart_clm Checking test 044 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2523,13 +2523,13 @@ Checking test 044 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 76.014809 +The total amount of wall time = 68.552879 Test 044 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_flake Checking test 045 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,13 +2594,13 @@ Checking test 045 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 = 123.399965 +The total amount of wall time = 125.184428 Test 045 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_HAFS_v0_hwrf_thompson Checking test 046 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2665,13 +2665,13 @@ Checking test 046 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 = 197.566880 +The total amount of wall time = 195.457269 Test 046 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_esg_HAFS_v0_hwrf_thompson Checking test 047 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2686,13 +2686,13 @@ Checking test 047 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 = 374.056884 +The total amount of wall time = 370.960417 Test 047 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1 Checking test 048 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2751,13 +2751,13 @@ Checking test 048 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 234.569815 +The total amount of wall time = 233.883203 Test 048 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1_warmstart Checking test 049 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 049 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 = 234.999307 +The total amount of wall time = 248.168620 Test 049 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_ras Checking test 050 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2887,13 +2887,13 @@ Checking test 050 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 = 127.891945 +The total amount of wall time = 126.716814 Test 050 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_debug Checking test 051 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2958,13 +2958,13 @@ Checking test 051 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 = 320.243011 +The total amount of wall time = 317.138119 Test 051 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_debug Checking test 052 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3029,13 +3029,13 @@ Checking test 052 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 = 473.108552 +The total amount of wall time = 475.088728 Test 052 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_control_debug Checking test 053 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3043,13 +3043,13 @@ Checking test 053 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 = 465.829516 +The total amount of wall time = 459.578030 Test 053 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_control_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_control_debug Checking test 054 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3076,13 +3076,13 @@ Checking test 054 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 179.344421 +The total amount of wall time = 177.970355 Test 054 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched_nest_debug Checking test 055 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3099,13 +3099,13 @@ Checking test 055 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 543.846256 +The total amount of wall time = 545.233815 Test 055 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gsd_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd_debug Checking test 056 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3170,13 +3170,13 @@ Checking test 056 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 267.252878 +The total amount of wall time = 265.437888 Test 056 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd_diag3d_debug Checking test 057 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3241,13 +3241,13 @@ Checking test 057 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 = 371.270618 +The total amount of wall time = 366.517767 Test 057 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_debug Checking test 058 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3312,13 +3312,13 @@ Checking test 058 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 445.943090 +The total amount of wall time = 447.356345 Test 058 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_no_aero_debug Checking test 059 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3383,13 +3383,13 @@ Checking test 059 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 = 428.735531 +The total amount of wall time = 428.164628 Test 059 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_rrfs_v1beta_debug Checking test 060 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3454,13 +3454,13 @@ Checking test 060 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 = 258.425639 +The total amount of wall time = 258.469439 Test 060 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_HAFS_v0_hwrf_thompson_debug Checking test 061 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3525,13 +3525,13 @@ Checking test 061 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 = 269.424103 +The total amount of wall time = 280.719742 Test 061 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 062 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3546,13 +3546,13 @@ Checking test 062 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 = 511.239365 +The total amount of wall time = 513.409902 Test 062 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1_debug Checking test 063 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3611,13 +3611,13 @@ Checking test 063 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 = 741.846643 +The total amount of wall time = 756.371724 Test 063 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Denise.Worthen/RT_RUNDIRS/Denise.Worthen/FV3_RT/rt_7635/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_ras_debug Checking test 064 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3682,11 +3682,11 @@ Checking test 064 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 = 420.535796 +The total amount of wall time = 432.126068 Test 064 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Sat Apr 3 14:11:25 GMT 2021 -Elapsed time: 02h:13m:21s. Have a nice day! +Tue Apr 6 22:18:01 GMT 2021 +Elapsed time: 02h:21m:35s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index ccaec401ec..2e949d19ce 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,29 +1,29 @@ -Fri Apr 2 04:58:49 CDT 2021 +Wed Apr 7 13:31:29 CDT 2021 Start Regression test Compile 001 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 508 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 489 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 502 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 493 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 520 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 568 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 626 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 32BIT=Y -Compile 009 elapsed time 546 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 527 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 708 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 743 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 232 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 192 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 161 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 594 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 581 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 152 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 404 seconds. APP=DATM_NEMS -Compile 020 elapsed time 171 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_control +Compile 002 elapsed time 583 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 486 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 507 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 537 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 562 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 612 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 32BIT=Y +Compile 009 elapsed time 517 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 531 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 524 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 562 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 157 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 150 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 138 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 598 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 582 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 153 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 379 seconds. APP=DATM_NEMS +Compile 020 elapsed time 131 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 53.246831 + 0: The total amount of wall time = 53.209862 Test 001 fv3_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 56.303302 + 0: The total amount of wall time = 52.999148 Test 002 fv3_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 64.601749 + 0: The total amount of wall time = 58.491174 Test 003 fv3_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 28.854210 + 0: The total amount of wall time = 34.697280 Test 004 fv3_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_read_inc +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 42.118990 + 0: The total amount of wall time = 50.304414 Test 005 fv3_read_inc PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_netcdf_esmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 150.043406 + 0: The total amount of wall time = 168.782294 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 50.302131 + 0: The total amount of wall time = 49.585537 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.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 = 67.368223 + 0: The total amount of wall time = 61.283780 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGlatlon_netcdf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 54.709961 + 0: The total amount of wall time = 52.838304 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_nemsio +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 52.068966 + 0: The total amount of wall time = 52.325758 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_nemsio_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 110.675646 + 0: The total amount of wall time = 109.396390 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stochy -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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.894936 + 0: The total amount of wall time = 50.817889 Test 012 fv3_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_ca -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 43.776155 + 0: The total amount of wall time = 47.580415 Test 013 fv3_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lndp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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.419800 + 0: The total amount of wall time = 64.181883 Test 014 fv3_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_iau -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_iau +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 45.402662 + 0: The total amount of wall time = 53.623174 Test 015 fv3_iau PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 59.343752 + 0: The total amount of wall time = 52.689010 Test 016 fv3_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmprad +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,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 = 686.509177 + 0: The total amount of wall time = 682.732374 Test 017 fv3_gfdlmprad PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmprad_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,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 = 841.132437 + 0: The total amount of wall time = 823.766639 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_wrtGauss_nemsio_c768 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,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 = 704.469803 + 0: The total amount of wall time = 703.327676 Test 019 fv3_wrtGauss_nemsio_c768 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_multigases_repro +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,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 = 104.500586 + 0: The total amount of wall time = 109.509081 Test 020 fv3_multigases PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_control_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,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 = 51.630041 + 0: The total amount of wall time = 47.366163 Test 021 fv3_control_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_stretched +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,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 = 227.099060 + 0: The total amount of wall time = 220.556118 Test 022 fv3_stretched PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_stretched_nest +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 245.412883 + 0: The total amount of wall time = 243.381468 Test 023 fv3_stretched_nest PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,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 = 553.735619 + 0: The total amount of wall time = 558.971648 Test 024 fv3_regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 = 312.886238 + 0: The total amount of wall time = 316.562520 Test 025 fv3_regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1469,13 +1469,13 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 571.325969 + 0: The total amount of wall time = 580.904493 Test 026 fv3_regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1483,13 +1483,13 @@ Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 576.591845 + 0: The total amount of wall time = 579.833753 Test 027 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1534,13 +1534,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 = 53.284684 + 0: The total amount of wall time = 55.049507 Test 028 fv3_gfdlmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmprad_gwd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1585,13 +1585,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 = 52.360438 + 0: The total amount of wall time = 49.211989 Test 029 fv3_gfdlmprad_gwd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmprad_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1636,13 +1636,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 = 50.865673 + 0: The total amount of wall time = 53.019151 Test 030 fv3_gfdlmprad_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1687,13 +1687,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 = 111.685792 + 0: The total amount of wall time = 120.256744 Test 031 fv3_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 54.093555 + 0: The total amount of wall time = 55.694381 Test 032 fv3_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_satmedmfq +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,13 +1789,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 = 53.875644 + 0: The total amount of wall time = 52.117671 Test 033 fv3_satmedmfq PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmp_32bit +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,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 = 47.495946 + 0: The total amount of wall time = 50.735002 Test 034 fv3_gfdlmp_32bit PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfdlmprad_32bit_post +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1895,13 +1895,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 = 82.447490 + 0: The total amount of wall time = 79.463320 Test 035 fv3_gfdlmprad_32bit_post PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_cpt -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_cpt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,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 = 257.868181 + 0: The total amount of wall time = 264.906591 Test 036 fv3_cpt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2047,13 +2047,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 = 181.390423 + 0: The total amount of wall time = 188.083310 Test 037 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rap -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2118,13 +2118,13 @@ Checking test 038 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.960668 + 0: The total amount of wall time = 102.120478 Test 038 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,13 +2189,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.974367 + 0: The total amount of wall time = 99.701707 Test 039 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,13 +2260,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.954356 + 0: The total amount of wall time = 85.794822 Test 040 fv3_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,13 +2331,13 @@ Checking test 041 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 = 88.777458 + 0: The total amount of wall time = 94.216624 Test 041 fv3_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2402,13 +2402,13 @@ Checking test 042 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 = 101.036234 + 0: The total amount of wall time = 101.419944 Test 042 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 043 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 = 199.626456 + 0: The total amount of wall time = 214.505964 Test 043 fv3_gfs_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,13 +2538,13 @@ Checking test 044 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 = 140.096876 + 0: The total amount of wall time = 158.668649 Test 044 fv3_gfs_v16_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,13 +2609,13 @@ Checking test 045 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 = 56.656679 + 0: The total amount of wall time = 56.796601 Test 045 fv3_gfs_v16_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2680,13 +2680,13 @@ Checking test 046 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 = 164.538544 + 0: The total amount of wall time = 170.946434 Test 046 fv3_gfs_v16_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2745,13 +2745,13 @@ Checking test 047 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 = 625.207953 + 0: The total amount of wall time = 633.829801 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 048 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 = 192.112427 + 0: The total amount of wall time = 192.815231 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfsv16_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,13 +2867,13 @@ Checking test 049 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 = 129.531958 + 0: The total amount of wall time = 130.989675 Test 049 fv3_gfsv16_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfsv16_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2918,13 +2918,13 @@ Checking test 050 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 = 121.326518 + 0: The total amount of wall time = 132.191273 Test 050 fv3_gfsv16_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gocart_clm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2969,13 +2969,13 @@ Checking test 051 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 = 59.740979 + 0: The total amount of wall time = 63.869948 Test 051 fv3_gocart_clm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,13 +3040,13 @@ Checking test 052 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 = 104.540333 + 0: The total amount of wall time = 108.151891 Test 052 fv3_gfs_v16_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3111,13 +3111,13 @@ Checking test 053 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 = 151.309717 + 0: The total amount of wall time = 151.901676 Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3132,13 +3132,13 @@ Checking test 054 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 = 299.081382 + 0: The total amount of wall time = 309.278338 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfsv16_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3146,64 +3146,60 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK Comparing dynf000.tile4.nc .........OK Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - - 0: The total amount of wall time = 182.696867 - -Test 055 fv3_gfsv16_ugwpv1 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfsv16_ugwpv1_warmstart + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3262,13 +3258,13 @@ Checking test 056 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 = 169.562765 + 0: The total amount of wall time = 174.087242 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3333,13 +3329,13 @@ Checking test 057 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 = 97.168244 + 0: The total amount of wall time = 101.140029 Test 057 fv3_gfs_v16_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3404,13 +3400,13 @@ Checking test 058 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 = 270.469107 + 0: The total amount of wall time = 301.542402 Test 058 fv3_gfs_v16_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_RRTMGP_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3475,13 +3471,13 @@ Checking test 059 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 = 372.691594 + 0: The total amount of wall time = 389.592980 Test 059 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3489,13 +3485,13 @@ Checking test 060 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 = 390.805860 + 0: The total amount of wall time = 388.806335 Test 060 fv3_regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3522,13 +3518,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 155.719992 + 0: The total amount of wall time = 156.460252 Test 061 fv3_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_stretched_nest_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3545,13 +3541,13 @@ Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 376.389101 + 0: The total amount of wall time = 387.050724 Test 062 fv3_stretched_nest_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,13 +3612,13 @@ Checking test 063 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 = 219.232561 + 0: The total amount of wall time = 234.896662 Test 063 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3687,13 +3683,13 @@ Checking test 064 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 = 295.223481 + 0: The total amount of wall time = 301.461408 Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3758,13 +3754,13 @@ Checking test 065 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 = 356.416938 + 0: The total amount of wall time = 354.168274 Test 065 fv3_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3829,13 +3825,13 @@ Checking test 066 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 = 347.433735 + 0: The total amount of wall time = 349.395767 Test 066 fv3_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3900,13 +3896,13 @@ Checking test 067 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.892700 + 0: The total amount of wall time = 217.809992 Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 @@ -3971,13 +3967,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 - 0: The total amount of wall time = 221.675121 + 0: The total amount of wall time = 221.426604 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 @@ -3992,13 +3988,13 @@ Checking test 069 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 = 419.492966 + 0: The total amount of wall time = 421.459532 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfsv16_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4057,13 +4053,13 @@ Checking test 070 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 = 590.987236 + 0: The total amount of wall time = 615.925480 Test 070 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/fv3_gfs_v16_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/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 @@ -4128,13 +4124,13 @@ Checking test 071 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 = 328.447786 + 0: The total amount of wall time = 340.050860 Test 071 fv3_gfs_v16_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4184,13 +4180,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 - 0: The total amount of wall time = 97.372911 + 0: The total amount of wall time = 114.085487 Test 072 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4240,13 +4236,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 - 0: The total amount of wall time = 66.622638 + 0: The total amount of wall time = 80.352333 Test 073 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_controlfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4296,13 +4292,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 - 0: The total amount of wall time = 100.468901 + 0: The total amount of wall time = 118.858770 Test 074 cpld_controlfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restartfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4352,13 +4348,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 - 0: The total amount of wall time = 66.183106 + 0: The total amount of wall time = 83.344414 Test 075 cpld_restartfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4408,13 +4404,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 - 0: The total amount of wall time = 127.619581 + 0: The total amount of wall time = 146.483935 Test 076 cpld_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4464,13 +4460,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 - 0: The total amount of wall time = 99.994443 + 0: The total amount of wall time = 114.361653 Test 077 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_satmedmf +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4520,13 +4516,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 - 0: The total amount of wall time = 100.109399 + 0: The total amount of wall time = 115.981288 Test 078 cpld_satmedmf PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_ca -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4576,13 +4572,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 - 0: The total amount of wall time = 99.820124 + 0: The total amount of wall time = 115.481967 Test 079 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4632,13 +4628,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 - 0: The total amount of wall time = 395.941203 + 0: The total amount of wall time = 396.694432 Test 080 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4688,13 +4684,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 - 0: The total amount of wall time = 273.971392 + 0: The total amount of wall time = 280.858947 Test 081 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_controlfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4744,13 +4740,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 - 0: The total amount of wall time = 391.695920 + 0: The total amount of wall time = 394.086444 Test 082 cpld_controlfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restartfrac_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4800,13 +4796,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 - 0: The total amount of wall time = 265.764732 + 0: The total amount of wall time = 279.835319 Test 083 cpld_restartfrac_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,13 +4855,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 - 0: The total amount of wall time = 1328.454433 + 0: The total amount of wall time = 1335.914111 Test 084 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4918,13 +4914,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 - 0: The total amount of wall time = 693.545082 + 0: The total amount of wall time = 696.593727 Test 085 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_controlfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,13 +4973,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 - 0: The total amount of wall time = 1322.688457 + 0: The total amount of wall time = 1341.172134 Test 086 cpld_controlfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restartfrac_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,13 +5032,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 - 0: The total amount of wall time = 683.066087 + 0: The total amount of wall time = 690.253844 Test 087 cpld_restartfrac_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5095,13 +5091,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 - 0: The total amount of wall time = 840.694056 + 0: The total amount of wall time = 865.199220 Test 088 cpld_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart_bmark +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5154,13 +5150,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 - 0: The total amount of wall time = 453.475553 + 0: The total amount of wall time = 462.313406 Test 089 cpld_restart_bmark PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5213,26 +5209,81 @@ 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 - 0: The total amount of wall time = 835.334583 + 0: The total amount of wall time = 848.480968 Test 090 cpld_bmarkfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart_bmarkfrac +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf024.tile1.nc ............MISSING file + Comparing phyf024.tile2.nc ............MISSING file + Comparing phyf024.tile3.nc ............MISSING file + Comparing phyf024.tile4.nc ............MISSING file + Comparing phyf024.tile5.nc ............MISSING file + Comparing phyf024.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc ............MISSING file + Comparing dynf024.tile2.nc ............MISSING file + Comparing dynf024.tile3.nc ............MISSING file + Comparing dynf024.tile4.nc ............MISSING file + Comparing dynf024.tile5.nc ............MISSING file + Comparing dynf024.tile6.nc ............MISSING file + Comparing RESTART/coupler.res ............MISSING file + Comparing RESTART/fv_core.res.nc ............MISSING file + Comparing RESTART/fv_core.res.tile1.nc ............MISSING file + Comparing RESTART/fv_core.res.tile2.nc ............MISSING file + Comparing RESTART/fv_core.res.tile3.nc ............MISSING file + Comparing RESTART/fv_core.res.tile4.nc ............MISSING file + Comparing RESTART/fv_core.res.tile5.nc ............MISSING file + Comparing RESTART/fv_core.res.tile6.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file + Comparing RESTART/phy_data.tile1.nc ............MISSING file + Comparing RESTART/phy_data.tile2.nc ............MISSING file + Comparing RESTART/phy_data.tile3.nc ............MISSING file + Comparing RESTART/phy_data.tile4.nc ............MISSING file + Comparing RESTART/phy_data.tile5.nc ............MISSING file + Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing RESTART/sfc_data.tile1.nc ............MISSING file + Comparing RESTART/sfc_data.tile2.nc ............MISSING file + Comparing RESTART/sfc_data.tile3.nc ............MISSING file + Comparing RESTART/sfc_data.tile4.nc ............MISSING file + Comparing RESTART/sfc_data.tile5.nc ............MISSING file + Comparing RESTART/sfc_data.tile6.nc ............MISSING file + Comparing RESTART/MOM.res.nc ............MISSING file + Comparing RESTART/MOM.res_1.nc ............MISSING file + Comparing RESTART/MOM.res_2.nc ............MISSING file + Comparing RESTART/MOM.res_3.nc ............MISSING file + Comparing RESTART/iced.2013-04-02-00000.nc ............MISSING file + Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc ............MISSING file + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_v16 +Checking test 092 cpld_bmarkfrac_v16 results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -5269,17 +5320,17 @@ Checking test 091 cpld_restart_bmarkfrac results .... Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK + 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 = 451.223611 + 0: The total amount of wall time = 1363.272264 -Test 091 cpld_restart_bmarkfrac PASS +Test 092 cpld_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmarkfrac_v16 -Checking test 092 cpld_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_v16_nsst +Checking test 093 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5331,14 +5382,14 @@ Checking test 092 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 = 1348.586060 + 0: The total amount of wall time = 1369.410952 -Test 092 cpld_bmarkfrac_v16 PASS +Test 093 cpld_bmarkfrac_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_restart_bmarkfrac_v16 -Checking test 093 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmarkfrac_v16 +Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5390,14 +5441,14 @@ Checking test 093 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 = 708.976813 + 0: The total amount of wall time = 744.581609 -Test 093 cpld_restart_bmarkfrac_v16 PASS +Test 094 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmark_wave -Checking test 094 cpld_bmark_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmark_wave +Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5452,14 +5503,14 @@ Checking test 094 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 = 1429.456321 + 0: The total amount of wall time = 1477.338296 -Test 094 cpld_bmark_wave PASS +Test 095 cpld_bmark_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmarkfrac_wave -Checking test 095 cpld_bmarkfrac_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_wave +Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5514,14 +5565,14 @@ Checking test 095 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 = 1444.313038 + 0: The total amount of wall time = 1446.365011 -Test 095 cpld_bmarkfrac_wave PASS +Test 096 cpld_bmarkfrac_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_bmarkfrac_wave_v16 -Checking test 096 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_wave_v16 +Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5575,14 +5626,14 @@ Checking test 096 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 = 964.983436 + 0: The total amount of wall time = 975.791844 -Test 096 cpld_bmarkfrac_wave_v16 PASS +Test 097 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_control_wave -Checking test 097 cpld_control_wave results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_wave +Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5634,14 +5685,14 @@ Checking test 097 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 = 817.245662 + 0: The total amount of wall time = 828.555013 -Test 097 cpld_control_wave PASS +Test 098 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debug -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_debug -Checking test 098 cpld_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_debug +Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5690,14 +5741,14 @@ Checking test 098 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 = 332.405233 + 0: The total amount of wall time = 333.241786 -Test 098 cpld_debug PASS +Test 099 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/cpld_debugfrac -Checking test 099 cpld_debugfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_debugfrac +Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5746,74 +5797,74 @@ Checking test 099 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 = 329.473365 + 0: The total amount of wall time = 326.289908 -Test 099 cpld_debugfrac PASS +Test 100 cpld_debugfrac PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_control_cfsr -Checking test 100 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_control_cfsr +Checking test 101 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 = 99.175700 + 0: The total amount of wall time = 105.522289 -Test 100 datm_control_cfsr PASS +Test 101 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_restart_cfsr -Checking test 101 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_restart_cfsr +Checking test 102 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 = 67.035164 + 0: The total amount of wall time = 76.388694 -Test 101 datm_restart_cfsr PASS +Test 102 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_control_gefs -Checking test 102 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_control_gefs +Checking test 103 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 = 89.460244 + 0: The total amount of wall time = 97.510630 -Test 102 datm_control_gefs PASS +Test 103 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_bulk_cfsr -Checking test 103 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_bulk_cfsr +Checking test 104 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 = 99.354717 + 0: The total amount of wall time = 106.268172 -Test 103 datm_bulk_cfsr PASS +Test 104 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_bulk_gefs -Checking test 104 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_bulk_gefs +Checking test 105 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 = 89.233304 + 0: The total amount of wall time = 99.688223 -Test 104 datm_bulk_gefs PASS +Test 105 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_mx025_cfsr -Checking test 105 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_mx025_cfsr +Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5821,14 +5872,14 @@ Checking test 105 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 = 390.818537 + 0: The total amount of wall time = 403.785512 -Test 105 datm_mx025_cfsr PASS +Test 106 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_mx025_gefs -Checking test 106 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_mx025_gefs +Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5836,23 +5887,220 @@ Checking test 106 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 = 378.057325 + 0: The total amount of wall time = 395.301256 -Test 106 datm_mx025_gefs PASS +Test 107 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_16246/datm_debug_cfsr -Checking test 107 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_debug_cfsr +Checking test 108 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 = 287.636356 + 0: The total amount of wall time = 304.295175 + +Test 108 datm_debug_cfsr PASS + +FAILED TESTS: +Test fv3_gfsv16_ugwpv1 055 failed in run_test failed +Test cpld_restart_bmarkfrac 091 failed in run_test failed + +REGRESSION TEST FAILED +Wed Apr 7 16:16:39 CDT 2021 +Elapsed time: 02h:45m:11s. Have a nice day! + + +Wed Apr 7 20:27:55 CDT 2021 +Start Regression test + +Compile 001 elapsed time 567 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 002 elapsed time 589 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 + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/fv3_gfsv16_ugwpv1 +Checking test 001 fv3_gfsv16_ugwpv1 results .... + Comparing phyf000.tile1.nc .........OK + Comparing phyf000.tile2.nc .........OK + Comparing phyf000.tile3.nc .........OK + Comparing phyf000.tile4.nc .........OK + Comparing phyf000.tile5.nc .........OK + Comparing phyf000.tile6.nc .........OK + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf000.tile1.nc .........OK + Comparing dynf000.tile2.nc .........OK + Comparing dynf000.tile3.nc .........OK + Comparing dynf000.tile4.nc .........OK + Comparing dynf000.tile5.nc .........OK + Comparing dynf000.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 178.273750 + +Test 001 fv3_gfsv16_ugwpv1 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/cpld_bmarkfrac +Checking test 002 cpld_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 866.624413 + +Test 002 cpld_bmarkfrac PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac +working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/cpld_restart_bmarkfrac +Checking test 003 cpld_restart_bmarkfrac results .... + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 449.343036 -Test 107 datm_debug_cfsr PASS +Test 003 cpld_restart_bmarkfrac PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 2 06:38:12 CDT 2021 -Elapsed time: 01h:39m:23s. Have a nice day! +Wed Apr 7 21:40:33 CDT 2021 +Elapsed time: 01h:12m:38s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 4677ed0b97..96dbe105cc 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Thu Apr 1 20:17:37 UTC 2021 +Wed Apr 7 13:28:26 UTC 2021 Start Regression test -Compile 001 elapsed time 941 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 888 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 996 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 922 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 989 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1070 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 32BIT=Y -Compile 008 elapsed time 975 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 1001 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 1016 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 962 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 516 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 566 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 537 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-20210401/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_control +Compile 001 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 961 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 990 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 998 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 961 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 955 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1155 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 32BIT=Y +Compile 008 elapsed time 1109 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 938 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1044 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 609 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 583 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 546 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-20210406/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 109.943133 +The total amount of wall time = 103.122326 Test 001 fv3_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 101.856797 +The total amount of wall time = 103.902391 Test 002 fv3_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_2threads +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 86.454982 +The total amount of wall time = 82.781318 Test 003 fv3_2threads PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 35.592036 +The total amount of wall time = 34.960060 Test 004 fv3_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_read_inc -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_read_inc +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_read_inc +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 64.680191 +The total amount of wall time = 65.708244 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 222.998207 +The total amount of wall time = 238.690793 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGauss_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 49.514667 +The total amount of wall time = 54.354947 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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.070796 +The total amount of wall time = 59.325732 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 54.974560 +The total amount of wall time = 50.126199 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGauss_nemsio +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 49.630055 +The total amount of wall time = 50.815682 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 122.204606 +The total amount of wall time = 121.664963 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 82.680351 +The total amount of wall time = 80.721419 Test 012 fv3_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_ca +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 82.499733 +The total amount of wall time = 83.900743 Test 013 fv3_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lndp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 109.274217 +The total amount of wall time = 106.598866 Test 014 fv3_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_iau -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_iau +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_iau +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 64.673144 +The total amount of wall time = 59.960329 Test 015 fv3_iau PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 57.731260 +The total amount of wall time = 58.640493 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_multigases_repro +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 107.969161 +The total amount of wall time = 109.269167 Test 017 fv3_multigases PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_control_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 104.138481 +The total amount of wall time = 105.113663 Test 018 fv3_control_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_stretched +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 383.403478 +The total amount of wall time = 329.624112 Test 019 fv3_stretched PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_stretched_nest +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 377.300488 +The total amount of wall time = 401.170016 Test 020 fv3_stretched_nest PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 706.708288 +The total amount of wall time = 717.312970 Test 021 fv3_regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 = 411.955669 +The total amount of wall time = 418.580481 Test 022 fv3_regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1307,13 +1307,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 704.010267 +The total amount of wall time = 704.526497 Test 023 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1321,13 +1321,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 696.084148 +The total amount of wall time = 695.795868 Test 024 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfdlmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1372,13 +1372,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 = 58.262939 +The total amount of wall time = 64.858445 Test 025 fv3_gfdlmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfdlmprad_gwd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,13 +1423,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 = 57.222954 +The total amount of wall time = 59.032226 Test 026 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1474,13 +1474,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 = 55.945700 +The total amount of wall time = 58.866871 Test 027 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1525,13 +1525,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.899444 +The total amount of wall time = 127.050701 Test 028 fv3_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_satmedmf +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,13 +1576,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 63.628164 +The total amount of wall time = 59.713239 Test 029 fv3_satmedmf PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_satmedmfq +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,13 +1627,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.687740 +The total amount of wall time = 60.482558 Test 030 fv3_satmedmfq PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfdlmp_32bit +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1678,13 +1678,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 = 57.623607 +The total amount of wall time = 55.864123 Test 031 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,13 +1733,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 = 100.167531 +The total amount of wall time = 108.417769 Test 032 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_cpt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_cpt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_cpt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,13 +1790,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 = 286.109802 +The total amount of wall time = 288.807051 Test 033 fv3_cpt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,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 = 245.475200 +The total amount of wall time = 236.485826 Test 034 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rap +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,13 +1956,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 157.780936 +The total amount of wall time = 142.774591 Test 035 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_hrrr +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,13 +2027,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 147.432303 +The total amount of wall time = 152.219202 Test 036 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2098,13 +2098,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.312307 +The total amount of wall time = 137.422276 Test 037 fv3_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_thompson_no_aero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2169,13 +2169,13 @@ Checking test 038 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 = 151.149183 +The total amount of wall time = 141.818405 Test 038 fv3_thompson_no_aero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2240,13 +2240,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 144.032561 +The total amount of wall time = 144.264460 Test 039 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2323,13 +2323,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 265.846255 +The total amount of wall time = 235.497468 Test 040 fv3_gfs_v16 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2376,13 +2376,13 @@ Checking test 041 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 = 150.346899 +The total amount of wall time = 122.704459 Test 041 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,13 +2447,13 @@ Checking test 042 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 = 104.295129 +The total amount of wall time = 103.695538 Test 042 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,13 +2518,13 @@ Checking test 043 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.963743 +The total amount of wall time = 188.749740 Test 043 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2583,13 +2583,13 @@ Checking test 044 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 = 768.878324 +The total amount of wall time = 771.237336 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,13 +2654,13 @@ Checking test 045 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 = 285.386070 +The total amount of wall time = 284.029296 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfsv16_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_csawmg Checking test 046 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2705,13 +2705,13 @@ Checking test 046 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.174903 +The total amount of wall time = 140.389992 Test 046 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfsv16_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_csawmgt Checking test 047 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2756,13 +2756,13 @@ Checking test 047 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 138.303116 +The total amount of wall time = 136.443818 Test 047 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gocart_clm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gocart_clm Checking test 048 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2807,13 +2807,13 @@ Checking test 048 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 67.586578 +The total amount of wall time = 63.699133 Test 048 fv3_gocart_clm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_flake Checking test 049 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2878,13 +2878,13 @@ Checking test 049 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 = 155.248837 +The total amount of wall time = 157.751072 Test 049 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 @@ -2949,13 +2949,13 @@ Checking test 050 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 = 167.114582 +The total amount of wall time = 168.349507 Test 050 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 @@ -2970,13 +2970,13 @@ Checking test 051 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 = 311.010759 +The total amount of wall time = 309.747159 Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1 Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3035,13 +3035,13 @@ Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 208.093992 +The total amount of wall time = 210.489127 Test 052 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1_warmstart Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3100,13 +3100,13 @@ Checking test 053 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 = 208.043241 +The total amount of wall time = 212.981234 Test 053 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_ras Checking test 054 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3171,13 +3171,13 @@ Checking test 054 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 = 139.013008 +The total amount of wall time = 138.625258 Test 054 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3242,13 +3242,13 @@ Checking test 055 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 = 246.077489 +The total amount of wall time = 250.639912 Test 055 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 @@ -3313,13 +3313,13 @@ Checking test 056 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 = 347.247501 +The total amount of wall time = 347.441294 Test 056 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3327,13 +3327,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 -The total amount of wall time = 349.623342 +The total amount of wall time = 344.871132 Test 057 fv3_regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3360,13 +3360,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 131.873769 +The total amount of wall time = 132.763758 Test 058 fv3_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_stretched_nest_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 @@ -3383,13 +3383,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 410.950463 +The total amount of wall time = 408.135584 Test 059 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3454,13 +3454,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.152188 +The total amount of wall time = 196.991513 Test 060 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3525,13 +3525,13 @@ Checking test 061 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 = 301.623689 +The total amount of wall time = 245.242086 Test 061 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3596,13 +3596,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 329.061794 +The total amount of wall time = 329.518556 Test 062 fv3_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/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 @@ -3667,13 +3667,13 @@ Checking test 063 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 = 314.845505 +The total amount of wall time = 315.277535 Test 063 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3738,13 +3738,13 @@ Checking test 064 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 = 190.529457 +The total amount of wall time = 188.796211 Test 064 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3809,13 +3809,13 @@ Checking test 065 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 = 194.786042 +The total amount of wall time = 193.102034 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3830,13 +3830,13 @@ Checking test 066 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 = 373.204796 +The total amount of wall time = 353.804479 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3895,13 +3895,13 @@ Checking test 067 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 = 555.684764 +The total amount of wall time = 547.721800 Test 067 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_47573/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3966,11 +3966,11 @@ Checking test 068 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 = 313.162203 +The total amount of wall time = 308.592135 Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 1 20:58:13 UTC 2021 -Elapsed time: 00h:40m:36s. Have a nice day! +Wed Apr 7 14:11:06 UTC 2021 +Elapsed time: 00h:42m:40s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index a758d7eb72..ab382a603f 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,29 +1,29 @@ -Fri Apr 2 00:47:58 UTC 2021 +Thu Apr 8 10:47:40 UTC 2021 Start Regression test -Compile 001 elapsed time 1540 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1662 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 1480 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 1536 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1573 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 1660 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 1965 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 2411 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 32BIT=Y -Compile 009 elapsed time 1696 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1620 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 1803 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 1907 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 390 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 428 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 404 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 2725 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 017 elapsed time 2743 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 696 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 1357 seconds. APP=DATM_NEMS -Compile 020 elapsed time 416 seconds. APP=DATM_NEMS DEBUG=Y - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_control +Compile 001 elapsed time 2190 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1690 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1526 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1678 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1816 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 2094 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 2932 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 3014 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 32BIT=Y +Compile 009 elapsed time 2454 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1842 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 3001 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 2740 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 1400 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 1121 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 412 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 2885 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 3056 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 723 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 1362 seconds. APP=DATM_NEMS +Compile 020 elapsed time 431 seconds. APP=DATM_NEMS DEBUG=Y + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 65.097630 +[0] The total amount of wall time = 49.854122 Test 001 fv3_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 65.387245 +[0] The total amount of wall time = 50.981900 Test 002 fv3_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 69.928569 +[0] The total amount of wall time = 70.717021 Test 003 fv3_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 30.373895 +[0] The total amount of wall time = 25.631941 Test 004 fv3_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_read_inc +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 56.931706 +[0] The total amount of wall time = 46.485170 Test 005 fv3_read_inc PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGauss_netcdf_esmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 182.767511 +[0] The total amount of wall time = 167.597104 Test 006 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGauss_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 55.854031 +[0] The total amount of wall time = 46.952734 Test 007 fv3_wrtGauss_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.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 @@ -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 = 75.513240 +[0] The total amount of wall time = 62.070531 Test 008 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGlatlon_netcdf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 56.488462 +[0] The total amount of wall time = 46.631273 Test 009 fv3_wrtGlatlon_netcdf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGauss_nemsio +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 55.967660 +[0] The total amount of wall time = 45.783156 Test 010 fv3_wrtGauss_nemsio PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_wrtGauss_nemsio_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 145.142080 +[0] The total amount of wall time = 120.386925 Test 011 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stochy +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 67.131777 +[0] The total amount of wall time = 52.658803 Test 012 fv3_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_ca +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 45.476586 +[0] The total amount of wall time = 32.916881 Test 013 fv3_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lndp +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 71.304847 +[0] The total amount of wall time = 53.990672 Test 014 fv3_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_iau -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_iau +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_iau +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 56.316816 +[0] The total amount of wall time = 45.143343 Test 015 fv3_iau PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 56.093643 +[0] The total amount of wall time = 47.641910 Test 016 fv3_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmprad +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,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 = 1065.599936 +[0] The total amount of wall time = 681.103904 Test 017 fv3_gfdlmprad PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmprad_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,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 = 1305.565182 +[0] The total amount of wall time = 851.240465 Test 018 fv3_gfdlmprad_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_multigases_repro +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_multigases_repro Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1176,13 +1176,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.549375 +[0] The total amount of wall time = 116.478151 Test 019 fv3_multigases PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_control_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_control_32bit Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,13 +1247,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.394856 +[0] The total amount of wall time = 46.216873 Test 020 fv3_control_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_stretched +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stretched Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,13 +1306,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 = 447.588212 +[0] The total amount of wall time = 329.554117 Test 021 fv3_stretched PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_stretched_nest +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stretched_nest Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,13 +1376,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 = 456.330783 +[0] The total amount of wall time = 351.697769 Test 022 fv3_stretched_nest PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_control Checking test 023 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1390,25 +1390,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 = 985.508884 +[0] The total amount of wall time = 984.631836 Test 023 fv3_regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 = 537.508514 +[0] The total amount of wall time = 534.966212 Test 024 fv3_regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_quilt_hafs Checking test 025 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1417,27 +1417,27 @@ Checking test 025 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 723.592849 +[0] The total amount of wall time = 723.576582 Test 025 fv3_regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_quilt_netcdf_parallel Checking test 026 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 721.844863 +[0] The total amount of wall time = 722.136587 Test 026 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmp Checking test 027 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,13 +1482,13 @@ Checking test 027 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 64.232382 +[0] The total amount of wall time = 52.659045 Test 027 fv3_gfdlmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmprad_gwd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_gwd Checking test 028 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1533,13 +1533,13 @@ Checking test 028 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 = 64.428341 +[0] The total amount of wall time = 52.546740 Test 028 fv3_gfdlmprad_gwd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmprad_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_noahmp Checking test 029 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1584,13 +1584,13 @@ Checking test 029 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 = 63.905298 +[0] The total amount of wall time = 53.970861 Test 029 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_csawmg +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_csawmg Checking test 030 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1635,13 +1635,13 @@ Checking test 030 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 169.702623 +[0] The total amount of wall time = 130.299035 Test 030 fv3_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmf +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_satmedmf Checking test 031 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,13 +1686,13 @@ Checking test 031 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.305674 +[0] The total amount of wall time = 56.918985 Test 031 fv3_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_satmedmfq +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmfq +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_satmedmfq Checking test 032 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1737,13 +1737,13 @@ Checking test 032 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 70.104825 +[0] The total amount of wall time = 57.418114 Test 032 fv3_satmedmfq PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmp_32bit +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmp_32bit Checking test 033 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1788,13 +1788,13 @@ Checking test 033 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 = 55.371010 +[0] The total amount of wall time = 45.098037 Test 033 fv3_gfdlmp_32bit PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfdlmprad_32bit_post +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_32bit_post Checking test 034 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,13 +1843,13 @@ Checking test 034 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.831504 +[0] The total amount of wall time = 84.011198 Test 034 fv3_gfdlmprad_32bit_post PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_cpt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_cpt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_cpt +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_cpt Checking test 035 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1900,13 +1900,13 @@ Checking test 035 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 307.204530 +[0] The total amount of wall time = 308.975094 Test 035 fv3_cpt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd Checking test 036 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1995,13 +1995,13 @@ Checking test 036 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 236.038842 +[0] The total amount of wall time = 199.647430 Test 036 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rap -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rap +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,13 +2066,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 = 122.104440 +[0] The total amount of wall time = 101.836108 Test 037 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2137,13 +2137,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 = 120.495270 +[0] The total amount of wall time = 100.478504 Test 038 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson Checking test 039 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2208,13 +2208,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 = 114.411341 +[0] The total amount of wall time = 93.409256 Test 039 fv3_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson_no_aero Checking test 040 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2279,13 +2279,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 = 113.822160 +[0] The total amount of wall time = 92.661439 Test 040 fv3_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2350,13 +2350,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 = 123.305277 +[0] The total amount of wall time = 102.761390 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2433,13 +2433,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 = 191.175979 +[0] The total amount of wall time = 153.690024 Test 042 fv3_gfs_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2486,13 +2486,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 = 110.865425 +[0] The total amount of wall time = 92.488412 Test 043 fv3_gfs_v16_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,13 +2557,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 = 75.680842 +[0] The total amount of wall time = 59.863804 Test 044 fv3_gfs_v16_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2628,13 +2628,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 = 216.915709 +[0] The total amount of wall time = 191.796179 Test 045 fv3_gfs_v16_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP_c192L127 Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2693,13 +2693,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 = 866.253827 +[0] The total amount of wall time = 747.534288 Test 046 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -2764,13 +2764,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 = 244.665706 +[0] The total amount of wall time = 246.741865 Test 047 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfsv16_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_csawmg Checking test 048 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2815,13 +2815,13 @@ Checking test 048 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 = 180.650682 +[0] The total amount of wall time = 138.387536 Test 048 fv3_gfsv16_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfsv16_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_csawmgt Checking test 049 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2866,13 +2866,13 @@ Checking test 049 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 = 177.076971 +[0] The total amount of wall time = 136.015374 Test 049 fv3_gfsv16_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gocart_clm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gocart_clm Checking test 050 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2917,13 +2917,13 @@ Checking test 050 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 = 70.864603 +[0] The total amount of wall time = 56.508231 Test 050 fv3_gocart_clm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_flake Checking test 051 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2988,13 +2988,13 @@ Checking test 051 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 = 145.968498 +[0] The total amount of wall time = 121.904910 Test 051 fv3_gfs_v16_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -3059,13 +3059,13 @@ Checking test 052 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 = 203.351939 +[0] The total amount of wall time = 172.416413 Test 052 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -3080,13 +3080,13 @@ Checking test 053 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 = 321.621518 +[0] The total amount of wall time = 318.336302 Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfsv16_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1 Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3145,13 +3145,13 @@ Checking test 054 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.495710 +[0] The total amount of wall time = 198.687699 Test 054 fv3_gfsv16_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1_warmstart Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3210,13 +3210,13 @@ Checking test 055 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 = 252.209781 +[0] The total amount of wall time = 199.127035 Test 055 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_ras Checking test 056 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3281,13 +3281,13 @@ Checking test 056 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.466378 +[0] The total amount of wall time = 107.939841 Test 056 fv3_gfs_v16_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_debug Checking test 057 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3352,13 +3352,13 @@ Checking test 057 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 = 460.392101 +[0] The total amount of wall time = 291.050956 Test 057 fv3_gfs_v16_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_RRTMGP_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -3423,13 +3423,13 @@ Checking test 058 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 = 669.539367 +[0] The total amount of wall time = 423.971242 Test 058 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_control_debug Checking test 059 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3437,13 +3437,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 -[0] The total amount of wall time = 782.142919 +[0] The total amount of wall time = 399.723617 Test 059 fv3_regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_control_debug Checking test 060 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3470,13 +3470,13 @@ Checking test 060 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 278.823897 +[0] The total amount of wall time = 156.762478 Test 060 fv3_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_stretched_nest_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -3493,13 +3493,13 @@ Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 903.202202 +[0] The total amount of wall time = 473.022403 Test 061 fv3_stretched_nest_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd_debug Checking test 062 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3564,13 @@ Checking test 062 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 = 417.315157 +[0] The total amount of wall time = 231.613723 Test 062 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd_diag3d_debug Checking test 063 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,13 +3635,13 @@ Checking test 063 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 = 484.548866 +[0] The total amount of wall time = 294.699079 Test 063 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson_debug Checking test 064 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3706,13 +3706,13 @@ Checking test 064 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 = 728.280073 +[0] The total amount of wall time = 387.720008 Test 064 fv3_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/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 @@ -3777,13 +3777,13 @@ Checking test 065 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.918973 +[0] The total amount of wall time = 374.534019 Test 065 fv3_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rrfs_v1beta_debug Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3848,13 +3848,13 @@ Checking test 066 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.280518 +[0] The total amount of wall time = 224.599055 Test 066 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3919,13 +3919,13 @@ Checking test 067 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 = 412.613068 +[0] The total amount of wall time = 231.574104 Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3940,13 +3940,13 @@ Checking test 068 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 = 451.731272 +[0] The total amount of wall time = 432.955861 Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfsv16_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1_debug Checking test 069 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4005,13 +4005,13 @@ Checking test 069 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 = 1207.125181 +[0] The total amount of wall time = 648.890415 Test 069 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/fv3_gfs_v16_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_ras_debug Checking test 070 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4076,13 +4076,13 @@ Checking test 070 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.717235 +[0] The total amount of wall time = 367.606122 Test 070 fv3_gfs_v16_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4132,13 +4132,13 @@ Checking test 071 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 = 109.659790 +[0] The total amount of wall time = 101.810870 Test 071 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4188,13 +4188,13 @@ Checking test 072 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 = 70.388806 +[0] The total amount of wall time = 67.990187 Test 072 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_controlfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4244,13 +4244,13 @@ Checking test 073 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.138535 +[0] The total amount of wall time = 101.739850 Test 073 cpld_controlfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restartfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,13 +4300,13 @@ Checking test 074 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 = 71.102266 +[0] The total amount of wall time = 66.650159 Test 074 cpld_restartfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_2threads Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4356,13 +4356,13 @@ Checking test 075 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.170535 +[0] The total amount of wall time = 129.172403 Test 075 cpld_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_decomp Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4412,13 +4412,13 @@ Checking test 076 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.414457 +[0] The total amount of wall time = 100.802787 Test 076 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_satmedmf +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_satmedmf Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4468,13 +4468,13 @@ Checking test 077 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 = 103.961903 +[0] The total amount of wall time = 102.097438 Test 077 cpld_satmedmf PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_ca -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_ca +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_ca Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4524,13 +4524,13 @@ Checking test 078 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 = 107.102354 +[0] The total amount of wall time = 100.904528 Test 078 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_c192 Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4580,13 +4580,13 @@ Checking test 079 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 = 417.211695 +[0] The total amount of wall time = 411.927740 Test 079 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_c192 Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4636,13 +4636,13 @@ Checking test 080 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 = 317.224526 +[0] The total amount of wall time = 312.296166 Test 080 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_controlfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac_c192 Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4692,13 +4692,13 @@ Checking test 081 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 = 420.842502 +[0] The total amount of wall time = 407.177841 Test 081 cpld_controlfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restartfrac_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac_c192 Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4748,13 +4748,13 @@ Checking test 082 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 = 315.162554 +[0] The total amount of wall time = 308.764775 Test 082 cpld_restartfrac_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_c384 Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4807,13 +4807,13 @@ Checking test 083 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 = 1487.154794 +[0] The total amount of wall time = 1458.504821 Test 083 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_c384 Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4866,13 +4866,13 @@ Checking test 084 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 = 817.173166 +[0] The total amount of wall time = 797.256047 Test 084 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_controlfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac_c384 Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4925,13 +4925,13 @@ Checking test 085 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 = 1470.469953 +[0] The total amount of wall time = 1452.077681 Test 085 cpld_controlfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restartfrac_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac_c384 Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +4984,13 @@ Checking test 086 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 = 810.418147 +[0] The total amount of wall time = 794.390073 Test 086 cpld_restartfrac_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmark Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +5043,13 @@ Checking test 087 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 = 919.100566 +[0] The total amount of wall time = 878.029595 Test 087 cpld_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmark -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart_bmark +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmark Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +5102,13 @@ Checking test 088 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 = 565.815605 +[0] The total amount of wall time = 518.443044 Test 088 cpld_restart_bmark PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5161,13 @@ Checking test 089 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 = 902.938371 +[0] The total amount of wall time = 877.408492 Test 089 cpld_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart_bmarkfrac +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmarkfrac Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5220,13 @@ Checking test 090 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 = 539.835576 +[0] The total amount of wall time = 513.224149 Test 090 cpld_restart_bmarkfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmarkfrac_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_v16 Checking test 091 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5279,14 +5279,73 @@ Checking test 091 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 = 1545.312087 +[0] The total amount of wall time = 1534.187336 Test 091 cpld_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_restart_bmarkfrac_v16 -Checking test 092 cpld_restart_bmarkfrac_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16_nsst +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_v16_nsst +Checking test 092 cpld_bmarkfrac_v16_nsst results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 1531.926197 + +Test 092 cpld_bmarkfrac_v16_nsst PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmarkfrac_v16 +Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK Comparing phyf012.tile3.nc .........OK @@ -5338,14 +5397,14 @@ 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 = 906.039732 +[0] The total amount of wall time = 898.134117 -Test 092 cpld_restart_bmarkfrac_v16 PASS +Test 093 cpld_restart_bmarkfrac_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmark_wave -Checking test 093 cpld_bmark_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmark_wave +Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5400,14 +5459,14 @@ 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 = 2146.872478 +[0] The total amount of wall time = 1546.884251 -Test 093 cpld_bmark_wave PASS +Test 094 cpld_bmark_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmarkfrac_wave -Checking test 094 cpld_bmarkfrac_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_wave +Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5462,14 +5521,14 @@ 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 = 2139.571445 +[0] The total amount of wall time = 1536.845407 -Test 094 cpld_bmarkfrac_wave PASS +Test 095 cpld_bmarkfrac_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_bmarkfrac_wave_v16 -Checking test 095 cpld_bmarkfrac_wave_v16 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_wave_v16 +Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5523,14 +5582,14 @@ 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 = 1365.577238 +[0] The total amount of wall time = 1102.376276 -Test 095 cpld_bmarkfrac_wave_v16 PASS +Test 096 cpld_bmarkfrac_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_control_wave -Checking test 096 cpld_control_wave results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_wave +Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -5582,14 +5641,14 @@ 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 = 1304.307403 +[0] The total amount of wall time = 827.745133 -Test 096 cpld_control_wave PASS +Test 097 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_debug -Checking test 097 cpld_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_debug +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_debug +Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5638,14 +5697,14 @@ 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 = 338.246987 +[0] The total amount of wall time = 327.210515 -Test 097 cpld_debug PASS +Test 098 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/cpld_debugfrac -Checking test 098 cpld_debugfrac results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_debugfrac +Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK Comparing phyf006.tile3.nc .........OK @@ -5694,74 +5753,74 @@ 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 = 338.175782 +[0] The total amount of wall time = 326.505976 -Test 098 cpld_debugfrac PASS +Test 099 cpld_debugfrac PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_control_cfsr -Checking test 099 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_control_cfsr +Checking test 100 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 = 115.291376 +[0] The total amount of wall time = 106.160069 -Test 099 datm_control_cfsr PASS +Test 100 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_restart_cfsr -Checking test 100 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_restart_cfsr +Checking test 101 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 = 81.645603 +[0] The total amount of wall time = 76.632310 -Test 100 datm_restart_cfsr PASS +Test 101 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_control_gefs -Checking test 101 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_control_gefs +Checking test 102 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 = 106.387291 +[0] The total amount of wall time = 100.368966 -Test 101 datm_control_gefs PASS +Test 102 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_bulk_cfsr -Checking test 102 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_bulk_cfsr +Checking test 103 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 = 108.924245 +[0] The total amount of wall time = 102.745716 -Test 102 datm_bulk_cfsr PASS +Test 103 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_bulk_gefs -Checking test 103 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_bulk_gefs +Checking test 104 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 = 106.719437 +[0] The total amount of wall time = 100.178060 -Test 103 datm_bulk_gefs PASS +Test 104 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_mx025_cfsr -Checking test 104 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_mx025_cfsr +Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5769,14 +5828,14 @@ 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 = 407.616741 +[0] The total amount of wall time = 422.750361 -Test 104 datm_mx025_cfsr PASS +Test 105 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_mx025_gefs -Checking test 105 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_mx025_gefs +Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -5784,23 +5843,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 = 403.407594 +[0] The total amount of wall time = 398.217690 -Test 105 datm_mx025_gefs PASS +Test 106 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210401/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_118981/datm_debug_cfsr -Checking test 106 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_debug_cfsr +Checking test 107 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 = 329.974114 +[0] The total amount of wall time = 311.506835 -Test 106 datm_debug_cfsr PASS +Test 107 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Apr 2 03:05:06 UTC 2021 -Elapsed time: 02h:17m:12s. Have a nice day! +Thu Apr 8 14:57:01 UTC 2021 +Elapsed time: 04h:09m:22s. Have a nice day! diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 89623cab9f..7ba42541de 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -181,8 +181,8 @@ iopt_tbot = 2 iopt_stc = 1 debug = .false. - nstf_name = 0,0,0,0,0 frac_grid = @[FRAC_GRID] + nstf_name = @[NSTF_NAME] nst_anl = .false. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 diff --git a/tests/rt.conf b/tests/rt.conf index c09cfa06f7..d11dab2555 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -128,7 +128,7 @@ RUN | fv3_gfs_v16_ras_debug # CPLD tests # ################################################################################################################################################################################### -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray jet.intel | fv3 | +COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst | - wcoss_cray jet.intel | fv3 | RUN | cpld_control | - wcoss_cray jet.intel | fv3 | RUN | cpld_restart | - wcoss_cray jet.intel | | cpld_control RUN | cpld_controlfrac | - wcoss_cray jet.intel | fv3 | @@ -158,6 +158,7 @@ RUN | cpld_restart_bmarkfrac #6h/6h/12h restart test # test fails on gaea with esmfpio error RUN | cpld_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | fv3 | +RUN | cpld_bmarkfrac_v16_nsst | - wcoss_cray gaea.intel jet.intel | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray gaea.intel jet.intel | | cpld_bmarkfrac_v16 COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray gaea.intel jet.intel | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index f95c8a320b..23dd21fb6f 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -413,7 +413,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210401 +BL_DATE=20210406 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 diff --git a/tests/tests/cpld_bmarkfrac_v16_nsst b/tests/tests/cpld_bmarkfrac_v16_nsst new file mode 100644 index 0000000000..cbf246706e --- /dev/null +++ b/tests/tests/cpld_bmarkfrac_v16_nsst @@ -0,0 +1,150 @@ +# +# cpld_bmarkfrac_v16_nsst test +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C384L127 MX025 - Benchmark test - frac grid - v16" + +export CNTL_DIR="cpld_bmarkfrac_v16_nsst" + +export LIST_FILES="phyf012.tile1.nc \ + phyf012.tile2.nc \ + phyf012.tile3.nc \ + phyf012.tile4.nc \ + phyf012.tile5.nc \ + phyf012.tile6.nc \ + dynf012.tile1.nc \ + dynf012.tile2.nc \ + dynf012.tile3.nc \ + dynf012.tile4.nc \ + dynf012.tile5.nc \ + dynf012.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/MOM.res_1.nc \ + RESTART/MOM.res_2.nc \ + RESTART/MOM.res_3.nc \ + RESTART/iced.2013-04-01-43200.nc \ + RESTART/ufs.cpld.cpl.r.2013-04-01-43200.nc" + +export_fv3 +export_cpl + +export SYEAR="2013" +export SMONTH="04" +export SDAY="01" +export SHOUR="00" + +export DAYS="0.5" +export FHMAX="12" +export RESTART_INTERVAL="6" +export RESTART_N=${RESTART_INTERVAL} + +export TASKS=$TASKS_cpl_bmrk +export TPN=$TPN_cpl_bmrk +export INPES=$INPES_cpl_bmrk +export JNPES=$JNPES_cpl_bmrk +export THRD=$THRD_cpl_bmrk +export WRTTASK_PER_GROUP=$WPG_cpl_bmrk + +export med_petlist_bounds=$MPB_cpl_bmrk +export atm_petlist_bounds=$APB_cpl_bmrk +export ocn_petlist_bounds=$OPB_cpl_bmrk +export ice_petlist_bounds=$IPB_cpl_bmrk + +# atm/ocn/ice resolution +export ATMRES='C384' +export NPX=385 +export NPY=385 +export IMO=1536 +export JMO=768 + +export OCNRES='025' +export ICERES='0.25' +export NX_GLB=1440 +export NY_GLB=1080 +export NPROC_ICE='48' + +# resolution dependent setting +export CDMBWD=${CDMBWD_c384} + +# set component and coupling timesteps +export DT_ATMOS='225' +export DT_CICE=${DT_ATMOS} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} +export CPL_FAST=${DT_ATMOS} + +# nems.configure +export coupling_interval_slow_sec=${CPL_SLOW} +export coupling_interval_fast_sec=${CPL_FAST} + +export FRAC_GRID='.T.' +export CPLMODE='nems_frac' + +export NPZ=127 +export NPZP=128 +export PSM_BC=1 +export DDDMP=0.2 +export NSTF_NAME=2,1,0,0,0 + +# resolution dependent files +export MOM_INPUT="MOM_input_template_${OCNRES}" +export MESHOCN_ICE="mesh.mx${OCNRES}.nc" +export CICEGRID="grid_cice_NEMS_mx${OCNRES}.nc" +export CICEMASK="kmtu_cice_NEMS_mx${OCNRES}.nc" +export CHLCLIM="seawifs-clim-1997-2010.${NX_GLB}x${NY_GLB}.v20180328.nc" +export FRUNOFF="runoff.daitren.clim.${NX_GLB}x${NY_GLB}.v20180328.nc" + +export FNALBC="'global_snowfree_albedo.bosu.t766.1536.768.rg.grb'," +export FNVETC="'global_vegtype.igbp.t766.1536.768.rg.grb'," +export FNSOTC="'global_soiltype.statsgo.t766.1536.768.rg.grb'," +export FNSMCC="'global_soilmgldas.statsgo.t766.1536.768.grb'," +export FNABSC="'global_mxsnoalb.uariz.t766.1536.768.rg.grb'," + +export OZ_PHYS_NEW=".T." + +export MOM6_RIVER_RUNOFF='True' +export MOM6_RESTART_SETTING="r" +export MOM6_REPRO_LA='True' + +export RUNID="cpcice" + +export INPUT_NML=input.benchmark_v16.nml.IN + +export FIELD_TABLE="field_table_gfsv16" +export DIAG_TABLE="diag_table_bmark_v16_template" +export SUITE_NAME="FV3_GFS_v16_couplednsst" + +export FV3_RUN=cpld_bmark_run.IN From 69a85678dd881f178d8cdb82d57c004a1a6dda9c Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 15:02:52 -0400 Subject: [PATCH 13/29] remove develop --- .github/workflows/build_test.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 2a8d7746a3..6075c96c41 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -3,10 +3,8 @@ name: Pull request tests on: push: branches: ['feature/PRCheck'] - #branches: ['develop'] pull_request: branches: ['feature/PRCheck'] - #branches: ['develop'] jobs: repocheck: From 92e8d27b2e37adc6c5b33cc75ae71b63485d2fec Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 15:10:29 -0400 Subject: [PATCH 14/29] quiet git commands. run-ci --- .github/workflows/build_test.yml | 4 ++-- tests/ci/repo-check.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 6075c96c41..6338facdbb 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -24,8 +24,8 @@ jobs: elif [[ ${{github.event_name}} == pull_request ]]; then echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} - git clone ${{ github.event.pull_request.head.repo.git_url }} . - git checkout $head_sha + git clone -q ${{ github.event.pull_request.head.repo.git_url }} . + git checkout -q $head_sha git submodule -q update --init --recursive cd ${GITHUB_WORKSPACE}/tests/ci app="Accept: application/vnd.github.v3+json" diff --git a/tests/ci/repo-check.sh b/tests/ci/repo-check.sh index 0edd4dad5e..22aadcd70b 100755 --- a/tests/ci/repo-check.sh +++ b/tests/ci/repo-check.sh @@ -75,7 +75,7 @@ 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 upstream ${base[branch]} +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" @@ -84,7 +84,7 @@ fi for submodule in $submodules; do eval cd ${GITHUB_WORKSPACE}/'${'$submodule'[dir]}' eval git remote add upstream '${'$submodule'[repo]}' - eval git fetch upstream '${'$submodule'[branch]}' + 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" From ade15dd15b1103ead1a5ac6d310c3252f223a50d Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Fri, 9 Apr 2021 16:20:16 -0400 Subject: [PATCH 15/29] Update CMEPS for latest ESCOMP/master; Update PIO to 2.5.2; Refactor modules (#492) * update ufs for CMEPS master with PIO changes * update pio to 2.5.2 across platforms * replace variable SUITE_NAME with CCPP_SUITE * Merge remote-tracking branch 'DusanJovic/module_common' into feature/updcmeps * switch to h-nems area on jet Co-authored-by: Bin Li Co-authored-by: Dusan Jovic --- CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 4 +- .../{cheyenne.gnu/fv3 => ufs_cheyenne.gnu} | 20 +- .../fv3_debug => ufs_cheyenne.gnu_debug} | 20 +- .../fv3 => ufs_cheyenne.intel} | 20 +- .../fv3_debug => ufs_cheyenne.intel_debug} | 20 +- modulefiles/ufs_common | 21 + modulefiles/ufs_common_debug | 21 + .../{gaea.intel/fv3 => ufs_gaea.intel} | 25 +- .../fv3_debug => ufs_gaea.intel_debug} | 25 +- modulefiles/{hera.gnu/fv3 => ufs_hera.gnu} | 21 +- .../{hera.intel/fv3 => ufs_hera.intel} | 20 +- .../fv3_debug => ufs_hera.intel_debug} | 20 +- modulefiles/{jet.intel/fv3 => ufs_jet.intel} | 20 +- .../fv3_debug => ufs_jet.intel_debug} | 20 +- modulefiles/{linux.gnu/fv3 => ufs_linux.gnu} | 0 .../fv3_debug => ufs_linux.gnu_debug} | 0 .../{macosx.gnu/fv3 => ufs_macosx.gnu} | 0 .../fv3_debug => ufs_macosx.gnu_debug} | 0 modulefiles/{odin/fv3 => ufs_odin} | 0 .../{orion.intel/fv3 => ufs_orion.intel} | 20 +- .../fv3_debug => ufs_orion.intel_debug} | 20 +- modulefiles/{s4.intel/fv3 => ufs_s4.intel} | 0 .../fv3 => ufs_stampede.intel} | 2 +- modulefiles/{wcoss2/fv3_debug => ufs_wcoss2} | 20 +- modulefiles/{wcoss2/fv3 => ufs_wcoss2_debug} | 20 +- .../{wcoss_cray/fv3 => ufs_wcoss_cray} | 0 .../fv3_debug => ufs_wcoss_cray_debug} | 0 .../{wcoss_dell_p3/fv3 => ufs_wcoss_dell_p3} | 20 +- .../fv3_debug => ufs_wcoss_dell_p3_debug} | 20 +- tests/RegressionTests_cheyenne.gnu.log | 138 +-- tests/RegressionTests_cheyenne.intel.log | 462 ++++----- tests/RegressionTests_gaea.intel.log | 432 ++++---- tests/RegressionTests_hera.gnu.log | 142 +-- tests/RegressionTests_hera.intel.log | 478 ++++----- tests/RegressionTests_jet.intel.log | 414 ++++---- tests/RegressionTests_orion.intel.log | 927 ++++++++---------- tests/RegressionTests_wcoss_cray.log | 304 +++--- tests/RegressionTests_wcoss_dell_p3.log | 744 ++++++-------- tests/compile.sh | 12 +- tests/default_vars.sh | 3 +- tests/parm/input.benchmark_ccpp.nml.IN | 12 +- tests/parm/input.benchmark_v16.nml.IN | 12 +- tests/parm/input.mom6_ccpp.nml.IN | 4 +- tests/parm/med_modelio.nml | 8 - tests/parm/pio_in | 34 - tests/rt.sh | 6 +- tests/run_test.sh | 3 +- tests/tests/cpld_bmark | 2 +- tests/tests/cpld_bmark_35d | 2 +- tests/tests/cpld_bmark_wave | 2 +- tests/tests/cpld_bmark_wave_35d | 2 +- tests/tests/cpld_bmarkfrac | 2 +- tests/tests/cpld_bmarkfrac_v16 | 2 +- tests/tests/cpld_bmarkfrac_v16_35d | 2 +- tests/tests/cpld_bmarkfrac_v16_nsst | 2 +- tests/tests/cpld_bmarkfrac_wave | 2 +- tests/tests/cpld_bmarkfrac_wave_35d | 2 +- tests/tests/cpld_bmarkfrac_wave_v16 | 2 +- tests/tests/cpld_bmarkfrac_wave_v16_35d | 2 +- tests/tests/cpld_restart_bmark | 2 +- tests/tests/cpld_restart_bmarkfrac | 2 +- tests/tests/cpld_restart_bmarkfrac_v16 | 2 +- tests/tests/cpld_satmedmf | 2 +- tests/utest | 32 +- 65 files changed, 2009 insertions(+), 2591 deletions(-) rename modulefiles/{cheyenne.gnu/fv3 => ufs_cheyenne.gnu} (61%) rename modulefiles/{cheyenne.gnu/fv3_debug => ufs_cheyenne.gnu_debug} (60%) rename modulefiles/{cheyenne.intel/fv3 => ufs_cheyenne.intel} (61%) rename modulefiles/{cheyenne.intel/fv3_debug => ufs_cheyenne.intel_debug} (61%) create mode 100644 modulefiles/ufs_common create mode 100644 modulefiles/ufs_common_debug rename modulefiles/{gaea.intel/fv3 => ufs_gaea.intel} (63%) rename modulefiles/{gaea.intel/fv3_debug => ufs_gaea.intel_debug} (63%) rename modulefiles/{hera.gnu/fv3 => ufs_hera.gnu} (55%) rename modulefiles/{hera.intel/fv3 => ufs_hera.intel} (58%) rename modulefiles/{hera.intel/fv3_debug => ufs_hera.intel_debug} (57%) rename modulefiles/{jet.intel/fv3 => ufs_jet.intel} (57%) rename modulefiles/{jet.intel/fv3_debug => ufs_jet.intel_debug} (57%) rename modulefiles/{linux.gnu/fv3 => ufs_linux.gnu} (100%) mode change 100755 => 100644 rename modulefiles/{linux.gnu/fv3_debug => ufs_linux.gnu_debug} (100%) mode change 100755 => 100644 rename modulefiles/{macosx.gnu/fv3 => ufs_macosx.gnu} (100%) mode change 100755 => 100644 rename modulefiles/{macosx.gnu/fv3_debug => ufs_macosx.gnu_debug} (100%) mode change 100755 => 100644 rename modulefiles/{odin/fv3 => ufs_odin} (100%) rename modulefiles/{orion.intel/fv3 => ufs_orion.intel} (57%) rename modulefiles/{orion.intel/fv3_debug => ufs_orion.intel_debug} (56%) rename modulefiles/{s4.intel/fv3 => ufs_s4.intel} (100%) rename modulefiles/{stampede.intel/fv3 => ufs_stampede.intel} (96%) rename modulefiles/{wcoss2/fv3_debug => ufs_wcoss2} (58%) rename modulefiles/{wcoss2/fv3 => ufs_wcoss2_debug} (58%) rename modulefiles/{wcoss_cray/fv3 => ufs_wcoss_cray} (100%) rename modulefiles/{wcoss_cray/fv3_debug => ufs_wcoss_cray_debug} (100%) rename modulefiles/{wcoss_dell_p3/fv3 => ufs_wcoss_dell_p3} (60%) rename modulefiles/{wcoss_dell_p3/fv3_debug => ufs_wcoss_dell_p3_debug} (59%) delete mode 100644 tests/parm/med_modelio.nml delete mode 100644 tests/parm/pio_in diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 3143c4ed00..d5b270c29d 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 3143c4ed00a9e05d7bd21a1b42062b00e245c414 +Subproject commit d5b270c29de8aa8ae28560d5f8e25374161543da diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index ae4e71627c..bf2a924d8a 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -18,7 +18,6 @@ endif() list(APPEND _nems_util_files CMEPS/util/shr_abort_mod.F90 CMEPS/util/shr_log_mod.F90 - CMEPS/util/shr_pio_mod.F90 CMEPS/util/shr_sys_mod.F90 CMEPS/util/shr_flux_mod.F90 CMEPS/util/shr_mpi_mod.F90 @@ -66,8 +65,7 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_wav_mod.F90) list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} - ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR} - INTERNAL_PIO_INIT) + ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR}) ### Create target library and set PUBLIC interfaces on the library add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files}) diff --git a/modulefiles/cheyenne.gnu/fv3 b/modulefiles/ufs_cheyenne.gnu similarity index 61% rename from modulefiles/cheyenne.gnu/fv3 rename to modulefiles/ufs_cheyenne.gnu index 0b352c162e..1421aaae77 100644 --- a/modulefiles/cheyenne.gnu/fv3 +++ b/modulefiles/ufs_cheyenne.gnu @@ -24,22 +24,4 @@ module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/cheyenne.gnu/fv3_debug b/modulefiles/ufs_cheyenne.gnu_debug similarity index 60% rename from modulefiles/cheyenne.gnu/fv3_debug rename to modulefiles/ufs_cheyenne.gnu_debug index c4a2bb4cfe..a9da2d8c46 100644 --- a/modulefiles/cheyenne.gnu/fv3_debug +++ b/modulefiles/ufs_cheyenne.gnu_debug @@ -24,22 +24,4 @@ module load hpc/1.1.0 module load hpc-gnu/9.1.0 module load hpc-mpt/2.22 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/modulefiles/cheyenne.intel/fv3 b/modulefiles/ufs_cheyenne.intel similarity index 61% rename from modulefiles/cheyenne.intel/fv3 rename to modulefiles/ufs_cheyenne.intel index b17446fdd1..208915684c 100644 --- a/modulefiles/cheyenne.intel/fv3 +++ b/modulefiles/ufs_cheyenne.intel @@ -24,22 +24,4 @@ module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/cheyenne.intel/fv3_debug b/modulefiles/ufs_cheyenne.intel_debug similarity index 61% rename from modulefiles/cheyenne.intel/fv3_debug rename to modulefiles/ufs_cheyenne.intel_debug index 79ed0b1e81..d866492d22 100644 --- a/modulefiles/cheyenne.intel/fv3_debug +++ b/modulefiles/ufs_cheyenne.intel_debug @@ -24,22 +24,4 @@ module load hpc/1.1.0 module load hpc-intel/19.1.1 module load hpc-mpt/2.22 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/modulefiles/ufs_common b/modulefiles/ufs_common new file mode 100644 index 0000000000..bbdd3f361a --- /dev/null +++ b/modulefiles/ufs_common @@ -0,0 +1,21 @@ +#%Module + +module load jasper/2.0.22 +module load zlib/1.2.11 +module load png/1.6.35 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.2 +module load esmf/8_1_0_beta_snapshot_47 + +module load bacio/2.4.1 +module load crtm/2.3.0 +module load g2/3.4.1 +module load g2tmpl/1.9.1 +module load ip/3.3.3 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 +module load upp/10.0.4 diff --git a/modulefiles/ufs_common_debug b/modulefiles/ufs_common_debug new file mode 100644 index 0000000000..53d4955cc8 --- /dev/null +++ b/modulefiles/ufs_common_debug @@ -0,0 +1,21 @@ +#%Module + +module load jasper/2.0.22 +module load zlib/1.2.11 +module load png/1.6.35 + +module load hdf5/1.10.6 +module load netcdf/4.7.4 +module load pio/2.5.2 +module load esmf/8_1_0_beta_snapshot_47-debug + +module load bacio/2.4.1 +module load crtm/2.3.0 +module load g2/3.4.1 +module load g2tmpl/1.9.1 +module load ip/3.3.3 +module load nemsio/2.5.2 +module load sp/2.3.3 +module load w3emc/2.7.3 +module load w3nco/2.4.1 +module load upp/10.0.4 diff --git a/modulefiles/gaea.intel/fv3 b/modulefiles/ufs_gaea.intel similarity index 63% rename from modulefiles/gaea.intel/fv3 rename to modulefiles/ufs_gaea.intel index 93d74d916d..48eeacc3a3 100644 --- a/modulefiles/gaea.intel/fv3 +++ b/modulefiles/ufs_gaea.intel @@ -13,6 +13,8 @@ module rm netcdf module load intel/18.0.6.288 module load cray-mpich/7.7.11 module load cray-python/3.7.3.2 +# Needed at runtime: +module load alps module load cmake/3.17.0 setenv CMAKE_C_COMPILER cc @@ -26,25 +28,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.6.288 module load hpc-cray-mpich/7.7.11 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 - -# Needed at runtime: -module load alps +module load ufs_common diff --git a/modulefiles/gaea.intel/fv3_debug b/modulefiles/ufs_gaea.intel_debug similarity index 63% rename from modulefiles/gaea.intel/fv3_debug rename to modulefiles/ufs_gaea.intel_debug index 521a230cb1..118356f6b5 100644 --- a/modulefiles/gaea.intel/fv3_debug +++ b/modulefiles/ufs_gaea.intel_debug @@ -13,6 +13,8 @@ module rm netcdf module load intel/18.0.6.288 module load cray-mpich/7.7.11 module load cray-python/3.7.3.2 +# Needed at runtime: +module load alps module load cmake/3.17.0 setenv CMAKE_C_COMPILER cc @@ -26,25 +28,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.6.288 module load hpc-cray-mpich/7.7.11 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 - -# Needed at runtime: -module load alps +module load ufs_common_debug diff --git a/modulefiles/hera.gnu/fv3 b/modulefiles/ufs_hera.gnu similarity index 55% rename from modulefiles/hera.gnu/fv3 rename to modulefiles/ufs_hera.gnu index 5d97431b89..041b5d3d14 100644 --- a/modulefiles/hera.gnu/fv3 +++ b/modulefiles/ufs_hera.gnu @@ -19,24 +19,5 @@ module use /scratch2/NCEPDEV/nwprod/hpc-stack/libs/hpc-stack/modulefiles/stack module load hpc/1.1.0 module load hpc-gnu/9.2.0 module load hpc-mpich/3.3.2 -module load mpich/3.3.2 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/hera.intel/fv3 b/modulefiles/ufs_hera.intel similarity index 58% rename from modulefiles/hera.intel/fv3 rename to modulefiles/ufs_hera.intel index c9f5e76e7f..fc128bbf60 100644 --- a/modulefiles/hera.intel/fv3 +++ b/modulefiles/ufs_hera.intel @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/hera.intel/fv3_debug b/modulefiles/ufs_hera.intel_debug similarity index 57% rename from modulefiles/hera.intel/fv3_debug rename to modulefiles/ufs_hera.intel_debug index 8ee2ef433c..c0490949c1 100644 --- a/modulefiles/hera.intel/fv3_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/modulefiles/jet.intel/fv3 b/modulefiles/ufs_jet.intel similarity index 57% rename from modulefiles/jet.intel/fv3 rename to modulefiles/ufs_jet.intel index 99f0375ffd..4c0d64bcf2 100644 --- a/modulefiles/jet.intel/fv3 +++ b/modulefiles/ufs_jet.intel @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.4.274 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/jet.intel/fv3_debug b/modulefiles/ufs_jet.intel_debug similarity index 57% rename from modulefiles/jet.intel/fv3_debug rename to modulefiles/ufs_jet.intel_debug index 37dbf0c72c..720705fcdf 100644 --- a/modulefiles/jet.intel/fv3_debug +++ b/modulefiles/ufs_jet.intel_debug @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.4.274 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/modulefiles/linux.gnu/fv3 b/modulefiles/ufs_linux.gnu old mode 100755 new mode 100644 similarity index 100% rename from modulefiles/linux.gnu/fv3 rename to modulefiles/ufs_linux.gnu diff --git a/modulefiles/linux.gnu/fv3_debug b/modulefiles/ufs_linux.gnu_debug old mode 100755 new mode 100644 similarity index 100% rename from modulefiles/linux.gnu/fv3_debug rename to modulefiles/ufs_linux.gnu_debug diff --git a/modulefiles/macosx.gnu/fv3 b/modulefiles/ufs_macosx.gnu old mode 100755 new mode 100644 similarity index 100% rename from modulefiles/macosx.gnu/fv3 rename to modulefiles/ufs_macosx.gnu diff --git a/modulefiles/macosx.gnu/fv3_debug b/modulefiles/ufs_macosx.gnu_debug old mode 100755 new mode 100644 similarity index 100% rename from modulefiles/macosx.gnu/fv3_debug rename to modulefiles/ufs_macosx.gnu_debug diff --git a/modulefiles/odin/fv3 b/modulefiles/ufs_odin similarity index 100% rename from modulefiles/odin/fv3 rename to modulefiles/ufs_odin diff --git a/modulefiles/orion.intel/fv3 b/modulefiles/ufs_orion.intel similarity index 57% rename from modulefiles/orion.intel/fv3 rename to modulefiles/ufs_orion.intel index e0a3c63993..3cb832fcf3 100644 --- a/modulefiles/orion.intel/fv3 +++ b/modulefiles/ufs_orion.intel @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/orion.intel/fv3_debug b/modulefiles/ufs_orion.intel_debug similarity index 56% rename from modulefiles/orion.intel/fv3_debug rename to modulefiles/ufs_orion.intel_debug index b7788646b1..54cf102816 100644 --- a/modulefiles/orion.intel/fv3_debug +++ b/modulefiles/ufs_orion.intel_debug @@ -21,22 +21,4 @@ module load hpc/1.1.0 module load hpc-intel/2018.4 module load hpc-impi/2018.4 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/modulefiles/s4.intel/fv3 b/modulefiles/ufs_s4.intel similarity index 100% rename from modulefiles/s4.intel/fv3 rename to modulefiles/ufs_s4.intel diff --git a/modulefiles/stampede.intel/fv3 b/modulefiles/ufs_stampede.intel similarity index 96% rename from modulefiles/stampede.intel/fv3 rename to modulefiles/ufs_stampede.intel index b1ca38a351..c2143a43c0 100644 --- a/modulefiles/stampede.intel/fv3 +++ b/modulefiles/ufs_stampede.intel @@ -42,7 +42,7 @@ module load zlib/1.2.11 module load hdf5/1.10.6 module load netcdf/4.7.4 module load pio/2.5.2 -module load esmf/8_1_0_beta_snapshot_27 +module load esmf/8_1_0_beta_snapshot_47 ## ## load cmake diff --git a/modulefiles/wcoss2/fv3_debug b/modulefiles/ufs_wcoss2 similarity index 58% rename from modulefiles/wcoss2/fv3_debug rename to modulefiles/ufs_wcoss2 index fbb682affc..5e093f573a 100644 --- a/modulefiles/wcoss2/fv3_debug +++ b/modulefiles/ufs_wcoss2 @@ -21,22 +21,4 @@ module load hpc/1.0.0-beta1 module load hpc-intel/19.1.1.217 module load hpc-cray-mpich/8.0.15 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_27 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.0 +module load ufs_common diff --git a/modulefiles/wcoss2/fv3 b/modulefiles/ufs_wcoss2_debug similarity index 58% rename from modulefiles/wcoss2/fv3 rename to modulefiles/ufs_wcoss2_debug index fbb682affc..8b93843466 100644 --- a/modulefiles/wcoss2/fv3 +++ b/modulefiles/ufs_wcoss2_debug @@ -21,22 +21,4 @@ module load hpc/1.0.0-beta1 module load hpc-intel/19.1.1.217 module load hpc-cray-mpich/8.0.15 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_27 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.0 +module load ufs_common_debug diff --git a/modulefiles/wcoss_cray/fv3 b/modulefiles/ufs_wcoss_cray similarity index 100% rename from modulefiles/wcoss_cray/fv3 rename to modulefiles/ufs_wcoss_cray diff --git a/modulefiles/wcoss_cray/fv3_debug b/modulefiles/ufs_wcoss_cray_debug similarity index 100% rename from modulefiles/wcoss_cray/fv3_debug rename to modulefiles/ufs_wcoss_cray_debug diff --git a/modulefiles/wcoss_dell_p3/fv3 b/modulefiles/ufs_wcoss_dell_p3 similarity index 60% rename from modulefiles/wcoss_dell_p3/fv3 rename to modulefiles/ufs_wcoss_dell_p3 index 99ee869b6c..e9059a1b89 100644 --- a/modulefiles/wcoss_dell_p3/fv3 +++ b/modulefiles/ufs_wcoss_dell_p3 @@ -23,22 +23,4 @@ module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47 - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common diff --git a/modulefiles/wcoss_dell_p3/fv3_debug b/modulefiles/ufs_wcoss_dell_p3_debug similarity index 59% rename from modulefiles/wcoss_dell_p3/fv3_debug rename to modulefiles/ufs_wcoss_dell_p3_debug index defb188486..d6e9beed68 100644 --- a/modulefiles/wcoss_dell_p3/fv3_debug +++ b/modulefiles/ufs_wcoss_dell_p3_debug @@ -23,22 +23,4 @@ module load hpc/1.1.0 module load hpc-ips/18.0.1.163 module load hpc-impi/18.0.1 -module load jasper/2.0.22 -module load zlib/1.2.11 -module load png/1.6.35 - -module load hdf5/1.10.6 -module load netcdf/4.7.4 -module load pio/2.5.1 -module load esmf/8_1_0_beta_snapshot_47-debug - -module load bacio/2.4.1 -module load crtm/2.3.0 -module load g2/3.4.1 -module load g2tmpl/1.9.1 -module load ip/3.3.3 -module load nemsio/2.5.2 -module load sp/2.3.3 -module load w3emc/2.7.3 -module load w3nco/2.4.1 -module load upp/10.0.4 +module load ufs_common_debug diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 931b0b1ea1..2321d4ff89 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,19 @@ -Wed Apr 7 06:09:33 MDT 2021 +Fri Apr 9 07:20:35 MDT 2021 Start Regression test Compile 001 elapsed time 341 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 340 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 376 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 335 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 311 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 189 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 384 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 187 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 002 elapsed time 339 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 374 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 337 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 309 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 187 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 376 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 188 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 462 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 371 seconds. APP=DATM_NEMS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfdlmp Checking test 001 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -56,13 +58,13 @@ Checking test 001 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 73.985444 +The total amount of wall time = 74.658658 Test 001 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16 Checking test 002 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,13 +141,13 @@ Checking test 002 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 232.172046 +The total amount of wall time = 231.777869 Test 002 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_restart Checking test 003 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -192,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 -The total amount of wall time = 136.443413 +The total amount of wall time = 139.370353 Test 003 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_stochy Checking test 004 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -263,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 -The total amount of wall time = 90.034238 +The total amount of wall time = 89.687414 Test 004 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_flake Checking test 005 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -334,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 -The total amount of wall time = 150.221480 +The total amount of wall time = 149.660804 Test 005 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_RRTMGP Checking test 006 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -405,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 -The total amount of wall time = 264.416366 +The total amount of wall time = 263.634836 Test 006 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gsd Checking test 007 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -500,13 +502,13 @@ Checking test 007 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 352.729636 +The total amount of wall time = 352.614782 Test 007 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_thompson Checking test 008 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -571,13 +573,13 @@ Checking test 008 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 158.189716 +The total amount of wall time = 158.166042 Test 008 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_thompson_no_aero Checking test 009 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -642,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 -The total amount of wall time = 157.846743 +The total amount of wall time = 157.085844 Test 009 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_rrfs_v1beta Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -713,13 +715,13 @@ Checking test 010 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 169.298191 +The total amount of wall time = 170.007986 Test 010 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -784,13 +786,13 @@ Checking test 011 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 = 259.883017 +The total amount of wall time = 260.675703 Test 011 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -805,13 +807,13 @@ Checking test 012 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 = 445.922657 +The total amount of wall time = 464.494027 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfsv16_ugwpv1 Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -870,13 +872,13 @@ Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 306.560881 +The total amount of wall time = 306.810780 Test 013 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfsv16_ugwpv1_warmstart Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -935,13 +937,13 @@ Checking test 014 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 = 303.812512 +The total amount of wall time = 304.466382 Test 014 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_ras Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1006,13 +1008,13 @@ Checking test 015 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 = 169.546561 +The total amount of wall time = 169.332218 Test 015 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_control_debug Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1039,13 +1041,13 @@ Checking test 016 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 75.953723 +The total amount of wall time = 75.750262 Test 016 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_regional_control_debug Checking test 017 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1053,13 +1055,13 @@ Checking test 017 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 = 187.143999 +The total amount of wall time = 187.770009 Test 017 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,13 +1126,13 @@ Checking test 018 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 = 110.611659 +The total amount of wall time = 110.676864 Test 018 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1197,13 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 115.754259 +The total amount of wall time = 116.618452 Test 019 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_thompson_debug Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1266,13 +1268,13 @@ Checking test 020 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 183.701098 +The total amount of wall time = 185.076633 Test 020 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_thompson_no_aero_debug Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1337,13 +1339,13 @@ Checking test 021 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 = 178.988643 +The total amount of wall time = 178.671507 Test 021 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v15p2_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v15p2_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v15p2_debug Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1408,13 +1410,13 @@ Checking test 022 fv3_gfs_v15p2_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.734436 +The total amount of wall time = 137.913732 Test 022 fv3_gfs_v15p2_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_debug Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,13 +1481,13 @@ Checking test 023 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 = 150.975739 +The total amount of wall time = 149.355318 Test 023 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_RRTMGP_debug Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1550,13 +1552,13 @@ Checking test 024 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 = 205.759701 +The total amount of wall time = 205.433231 Test 024 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_multigases -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_multigases +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_multigases Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,13 +1629,13 @@ Checking test 025 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 175.428716 +The total amount of wall time = 177.317494 Test 025 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1698,13 +1700,13 @@ Checking test 026 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 = 113.512699 +The total amount of wall time = 113.951881 Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1719,13 +1721,13 @@ Checking test 027 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 = 217.703642 +The total amount of wall time = 218.608797 Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfsv16_ugwpv1_debug Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1784,13 +1786,13 @@ Checking test 028 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 = 304.807814 +The total amount of wall time = 304.905164 Test 028 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_60912/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_16279/fv3_gfs_v16_ras_debug Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1855,11 +1857,11 @@ Checking test 029 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 = 172.405910 +The total amount of wall time = 174.433047 Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 06:28:37 MDT 2021 -Elapsed time: 00h:19m:04s. Have a nice day! +Fri Apr 9 07:39:51 MDT 2021 +Elapsed time: 00h:19m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9bf4e7bb28..b62baba090 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,28 +1,28 @@ -Wed Apr 7 08:13:37 MDT 2021 +Fri Apr 9 07:20:58 MDT 2021 Start Regression test -Compile 001 elapsed time 718 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 711 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 762 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 748 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 756 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 876 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 984 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 32BIT=Y -Compile 008 elapsed time 781 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 743 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 798 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 849 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 256 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 272 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 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 1085 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 1048 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 355 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 657 seconds. APP=DATM_NEMS -Compile 019 elapsed time 246 seconds. APP=DATM_NEMS DEBUG=Y +Compile 001 elapsed time 719 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 714 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 755 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 744 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 775 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 878 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 978 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 32BIT=Y +Compile 008 elapsed time 776 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 746 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 807 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 842 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 242 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 273 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 258 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 1060 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 1110 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 360 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 644 seconds. APP=DATM_NEMS +Compile 019 elapsed time 241 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_control +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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.259037 +The total amount of wall time = 48.276119 Test 001 fv3_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_decomp +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.863487 +The total amount of wall time = 47.708554 Test 002 fv3_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_2threads +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 75.422064 +The total amount of wall time = 75.530182 Test 003 fv3_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 22.598219 +The total amount of wall time = 22.975192 Test 004 fv3_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_read_inc +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 46.723243 +The total amount of wall time = 47.218504 Test 005 fv3_read_inc PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_netcdf_esmf +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 118.447237 +The total amount of wall time = 130.087432 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.705993 +The total amount of wall time = 45.521706 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,8 +470,8 @@ 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 dynf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.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 = 47.305531 +The total amount of wall time = 46.874398 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGlatlon_netcdf +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.440707 +The total amount of wall time = 45.743552 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_nemsio +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.519822 +The total amount of wall time = 46.467429 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_wrtGauss_nemsio_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 124.054931 +The total amount of wall time = 124.862273 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 56.934599 +The total amount of wall time = 55.041612 Test 012 fv3_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 29.071352 +The total amount of wall time = 28.704246 Test 013 fv3_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_lndp +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 52.783161 +The total amount of wall time = 52.082105 Test 014 fv3_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_iau +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.111360 +The total amount of wall time = 46.906115 Test 015 fv3_iau PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_lheatstrg +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 47.246522 +The total amount of wall time = 45.826897 Test 016 fv3_lheatstrg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_multigases_repro +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 112.313734 +The total amount of wall time = 112.942491 Test 017 fv3_multigases PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_control_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 39.378047 +The total amount of wall time = 42.196310 Test 018 fv3_control_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_stretched +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 328.366344 +The total amount of wall time = 332.720151 Test 019 fv3_stretched PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_stretched_nest +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 343.092572 +The total amount of wall time = 348.857047 Test 020 fv3_stretched_nest PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_control +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 692.949301 +The total amount of wall time = 714.798403 Test 021 fv3_regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 = 391.389630 +The total amount of wall time = 392.207511 Test 022 fv3_regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_quilt_hafs +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1312,27 +1312,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 713.613756 +The total amount of wall time = 735.794716 Test 023 fv3_regional_quilt_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 716.529790 +The total amount of wall time = 738.480608 Test 024 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmp +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1377,13 +1377,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 = 53.369956 +The total amount of wall time = 55.765804 Test 025 fv3_gfdlmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_gwd +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 52.916152 +The total amount of wall time = 54.174196 Test 026 fv3_gfdlmprad_gwd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_noahmp +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1479,13 +1479,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 = 53.263502 +The total amount of wall time = 55.555747 Test 027 fv3_gfdlmprad_noahmp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_csawmg +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.494599 +The total amount of wall time = 141.084729 Test 028 fv3_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1581,13 +1581,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.836094 +The total amount of wall time = 60.601161 Test 029 fv3_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_satmedmfq +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1632,13 +1632,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.102696 +The total amount of wall time = 58.689139 Test 030 fv3_satmedmfq PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmp_32bit +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1683,13 +1683,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 = 41.700611 +The total amount of wall time = 41.499574 Test 031 fv3_gfdlmp_32bit PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfdlmprad_32bit_post +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 72.344386 +The total amount of wall time = 72.887773 Test 032 fv3_gfdlmprad_32bit_post PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_cpt +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1795,13 +1795,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 = 334.325461 +The total amount of wall time = 333.523865 Test 033 fv3_cpt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1890,13 +1890,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 = 195.635446 +The total amount of wall time = 196.354545 Test 034 fv3_gsd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rap +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1961,13 +1961,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.766502 +The total amount of wall time = 100.023130 Test 035 fv3_rap PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_hrrr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2032,13 +2032,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.273818 +The total amount of wall time = 98.154336 Test 036 fv3_hrrr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2103,13 +2103,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.092973 +The total amount of wall time = 91.201222 Test 037 fv3_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson_no_aero +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2174,13 +2174,13 @@ Checking test 038 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 = 91.156033 +The total amount of wall time = 90.193761 Test 038 fv3_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rrfs_v1beta +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2245,13 +2245,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.914696 +The total amount of wall time = 97.801808 Test 039 fv3_rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2328,13 +2328,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 162.841909 +The total amount of wall time = 172.353791 Test 040 fv3_gfs_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2381,13 +2381,13 @@ Checking test 041 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 = 104.185933 +The total amount of wall time = 104.323845 Test 041 fv3_gfs_v16_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_stochy +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2452,13 +2452,13 @@ Checking test 042 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 = 62.874054 +The total amount of wall time = 63.809648 Test 042 fv3_gfs_v16_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2523,13 +2523,13 @@ Checking test 043 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 = 226.241951 +The total amount of wall time = 228.691789 Test 043 fv3_gfs_v16_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2588,13 +2588,13 @@ Checking test 044 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 = 934.065848 +The total amount of wall time = 842.173411 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP_2thrd +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2659,13 +2659,13 @@ Checking test 045 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 = 358.723736 +The total amount of wall time = 360.236838 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gocart_clm +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gocart_clm Checking test 046 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2710,13 +2710,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 = 56.391990 +The total amount of wall time = 56.629063 Test 046 fv3_gocart_clm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_flake +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_flake Checking test 047 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2781,13 +2781,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 = 116.537481 +The total amount of wall time = 118.165691 Test 047 fv3_gfs_v16_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 @@ -2852,13 +2852,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 = 182.245050 +The total amount of wall time = 181.526075 Test 048 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 @@ -2873,13 +2873,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 = 345.942451 +The total amount of wall time = 324.198569 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfsv16_ugwpv1 Checking test 050 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2938,13 +2938,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 = 211.300345 +The total amount of wall time = 219.494265 Test 050 fv3_gfsv16_ugwpv1 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1_warmstart +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfsv16_ugwpv1_warmstart Checking test 051 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3003,13 +3003,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 = 219.632889 +The total amount of wall time = 209.186795 Test 051 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_ras +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_ras Checking test 052 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3074,13 +3074,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 = 116.227744 +The total amount of wall time = 113.186458 Test 052 fv3_gfs_v16_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_debug Checking test 053 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3145,13 +3145,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 = 270.776674 +The total amount of wall time = 275.680395 Test 053 fv3_gfs_v16_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_RRTMGP_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 @@ -3216,13 +3216,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 = 395.411166 +The total amount of wall time = 395.339367 Test 054 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_regional_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_regional_control_debug Checking test 055 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3230,13 +3230,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 = 371.811223 +The total amount of wall time = 372.003769 Test 055 fv3_regional_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_control_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_control_debug Checking test 056 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3263,13 +3263,13 @@ Checking test 056 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 148.178130 +The total amount of wall time = 148.162083 Test 056 fv3_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_stretched_nest_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 @@ -3286,13 +3286,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 = 439.863966 +The total amount of wall time = 440.174024 Test 057 fv3_stretched_nest_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gsd_debug Checking test 058 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3357,13 +3357,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 = 219.495753 +The total amount of wall time = 217.349128 Test 058 fv3_gsd_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gsd_diag3d_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gsd_diag3d_debug Checking test 059 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3428,13 +3428,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 = 267.684587 +The total amount of wall time = 265.090786 Test 059 fv3_gsd_diag3d_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_thompson_debug Checking test 060 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3499,13 +3499,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 = 364.403507 +The total amount of wall time = 364.493268 Test 060 fv3_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_thompson_no_aero_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/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 @@ -3570,13 +3570,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 = 351.438300 +The total amount of wall time = 350.460630 Test 061 fv3_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_rrfs_v1beta_debug Checking test 062 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3641,13 +3641,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 = 211.951517 +The total amount of wall time = 211.231446 Test 062 fv3_rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_HAFS_v0_hwrf_thompson_debug Checking test 063 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3712,13 +3712,13 @@ Checking test 063 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 = 221.430063 +The total amount of wall time = 218.992420 Test 063 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3733,13 +3733,13 @@ Checking test 064 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 = 402.658168 +The total amount of wall time = 401.465966 Test 064 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfsv16_ugwpv1_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfsv16_ugwpv1_debug Checking test 065 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3798,13 +3798,13 @@ Checking test 065 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 = 608.035920 +The total amount of wall time = 606.541519 Test 065 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/fv3_gfs_v16_ras_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/fv3_gfs_v16_ras_debug Checking test 066 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3869,13 +3869,13 @@ Checking test 066 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 = 348.011639 +The total amount of wall time = 347.598691 Test 066 fv3_gfs_v16_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_control Checking test 067 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3925,13 +3925,13 @@ Checking test 067 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 = 103.213734 +The total amount of wall time = 98.893384 Test 067 cpld_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart Checking test 068 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3981,13 +3981,13 @@ Checking test 068 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.392185 +The total amount of wall time = 55.452669 Test 068 cpld_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_controlfrac Checking test 069 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4037,13 +4037,13 @@ Checking test 069 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 = 99.293140 +The total amount of wall time = 97.878903 Test 069 cpld_controlfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restartfrac Checking test 070 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4093,13 +4093,13 @@ Checking test 070 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 = 55.179212 +The total amount of wall time = 55.329786 Test 070 cpld_restartfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_2threads +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_2threads Checking test 071 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4149,13 +4149,13 @@ Checking test 071 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 = 142.601201 +The total amount of wall time = 140.530971 Test 071 cpld_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_decomp +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_decomp Checking test 072 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4205,13 +4205,13 @@ Checking test 072 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 = 96.810468 +The total amount of wall time = 92.865526 Test 072 cpld_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_satmedmf +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_satmedmf Checking test 073 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4261,13 +4261,13 @@ Checking test 073 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 = 100.648046 +The total amount of wall time = 95.924140 Test 073 cpld_satmedmf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_ca +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_ca Checking test 074 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4317,13 +4317,13 @@ Checking test 074 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 = 100.998249 +The total amount of wall time = 96.349929 Test 074 cpld_ca PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_control_c192 Checking test 075 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4373,13 +4373,13 @@ Checking test 075 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 = 410.938910 +The total amount of wall time = 408.688231 Test 075 cpld_control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart_c192 Checking test 076 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4429,13 +4429,13 @@ Checking test 076 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 = 297.226858 +The total amount of wall time = 285.402763 Test 076 cpld_restart_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_controlfrac_c192 Checking test 077 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4485,13 +4485,13 @@ Checking test 077 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 = 397.475140 +The total amount of wall time = 407.028735 Test 077 cpld_controlfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac_c192 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restartfrac_c192 Checking test 078 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4541,13 +4541,13 @@ Checking test 078 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 = 281.607497 +The total amount of wall time = 281.510759 Test 078 cpld_restartfrac_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_control_c384 Checking test 079 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4600,13 +4600,13 @@ Checking test 079 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 = 1502.320144 +The total amount of wall time = 1601.009154 Test 079 cpld_control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart_c384 Checking test 080 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4659,13 +4659,13 @@ Checking test 080 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 = 841.449918 +The total amount of wall time = 847.091995 Test 080 cpld_restart_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_controlfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_controlfrac_c384 Checking test 081 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4718,13 +4718,13 @@ Checking test 081 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 = 1604.479366 +The total amount of wall time = 1598.109342 Test 081 cpld_controlfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restartfrac_c384 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restartfrac_c384 Checking test 082 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4777,13 +4777,13 @@ Checking test 082 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 = 840.571986 +The total amount of wall time = 838.065389 Test 082 cpld_restartfrac_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmark Checking test 083 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4836,13 +4836,13 @@ Checking test 083 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 = 913.261208 +The total amount of wall time = 862.828115 Test 083 cpld_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmark +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart_bmark Checking test 084 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4895,13 +4895,13 @@ Checking test 084 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 = 495.609531 +The total amount of wall time = 493.083772 Test 084 cpld_restart_bmark PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmarkfrac Checking test 085 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4954,13 +4954,13 @@ Checking test 085 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 = 908.700022 +The total amount of wall time = 857.961125 Test 085 cpld_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmarkfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart_bmarkfrac Checking test 086 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5013,13 +5013,13 @@ Checking test 086 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 = 493.000478 +The total amount of wall time = 487.870762 Test 086 cpld_restart_bmarkfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmarkfrac_v16 Checking test 087 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5072,13 +5072,13 @@ Checking test 087 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 -The total amount of wall time = 1650.433584 +The total amount of wall time = 1534.013001 Test 087 cpld_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_v16_nsst +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmarkfrac_v16_nsst Checking test 088 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5131,13 +5131,13 @@ Checking test 088 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 -The total amount of wall time = 1623.385493 +The total amount of wall time = 1546.739359 Test 088 cpld_bmarkfrac_v16_nsst PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_restart_bmarkfrac_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_restart_bmarkfrac_v16 Checking test 089 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5190,13 +5190,13 @@ Checking test 089 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 -The total amount of wall time = 881.715429 +The total amount of wall time = 875.794121 Test 089 cpld_restart_bmarkfrac_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmark_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmark_wave Checking test 090 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5252,13 +5252,13 @@ Checking test 090 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 -The total amount of wall time = 1587.069372 +The total amount of wall time = 1523.315761 Test 090 cpld_bmark_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmarkfrac_wave Checking test 091 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5314,13 +5314,13 @@ Checking test 091 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 -The total amount of wall time = 1522.107795 +The total amount of wall time = 1512.884808 Test 091 cpld_bmarkfrac_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_bmarkfrac_wave_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_bmarkfrac_wave_v16 Checking test 092 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5375,13 +5375,13 @@ Checking test 092 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 -The total amount of wall time = 1037.976723 +The total amount of wall time = 999.440850 Test 092 cpld_bmarkfrac_wave_v16 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_control_wave +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_control_wave Checking test 093 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5434,13 +5434,13 @@ Checking test 093 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 814.854639 +The total amount of wall time = 822.113461 Test 093 cpld_control_wave PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_debug +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_debug Checking test 094 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5490,13 +5490,13 @@ Checking test 094 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 = 306.257949 +The total amount of wall time = 307.665375 Test 094 cpld_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/cpld_debugfrac +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/cpld_debugfrac Checking test 095 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5546,73 +5546,73 @@ Checking test 095 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 = 306.796080 +The total amount of wall time = 304.909655 Test 095 cpld_debugfrac PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_control_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_control_cfsr Checking test 096 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 = 102.005254 +The total amount of wall time = 101.735941 Test 096 datm_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_restart_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_restart_cfsr Checking test 097 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 = 64.488421 +The total amount of wall time = 64.236151 Test 097 datm_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_control_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_control_gefs Checking test 098 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.521155 +The total amount of wall time = 95.799653 Test 098 datm_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_bulk_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_bulk_cfsr Checking test 099 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 96.315070 +The total amount of wall time = 98.380997 Test 099 datm_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_bulk_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_bulk_gefs Checking test 100 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.721934 +The total amount of wall time = 96.461060 Test 100 datm_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_mx025_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_mx025_cfsr Checking test 101 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5621,13 +5621,13 @@ Checking test 101 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 -The total amount of wall time = 378.463802 +The total amount of wall time = 395.120598 Test 101 datm_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_mx025_gefs +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_mx025_gefs Checking test 102 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5636,23 +5636,23 @@ Checking test 102 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 = 391.055138 +The total amount of wall time = 376.406470 Test 102 datm_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_14403/datm_debug_cfsr +working dir = /glade/scratch/worthen/FV3_RT/rt_30868/datm_debug_cfsr Checking test 103 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 = 283.098323 +The total amount of wall time = 283.558511 Test 103 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 09:45:02 MDT 2021 -Elapsed time: 01h:31m:26s. Have a nice day! +Fri Apr 9 08:43:59 MDT 2021 +Elapsed time: 01h:23m:02s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 24757c04db..25c9b695bc 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,27 +1,27 @@ -Wed Apr 7 11:12:05 EDT 2021 +Fri Apr 9 09:33:45 EDT 2021 Start Regression test -Compile 001 elapsed time 692 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 659 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 685 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 669 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 665 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 785 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 858 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 32BIT=Y -Compile 008 elapsed time 674 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 731 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 671 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 702 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 244 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 273 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 264 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 765 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 304 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled +Compile 001 elapsed time 698 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 679 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 698 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 857 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 743 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 723 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 770 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 32BIT=Y +Compile 008 elapsed time 679 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 785 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 711 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 718 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 273 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 269 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 762 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 300 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 560 seconds. APP=DATM_NEMS -Compile 018 elapsed time 305 seconds. APP=DATM_NEMS DEBUG=Y +Compile 018 elapsed time 266 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -86,13 +86,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 = 81.668284 +The total amount of wall time = 45.758502 Test 001 fv3_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -157,13 +157,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 = 48.310962 +The total amount of wall time = 46.566945 Test 002 fv3_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -228,13 +228,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 = 78.486350 +The total amount of wall time = 109.612899 Test 003 fv3_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -281,13 +281,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 = 24.572785 +The total amount of wall time = 22.032396 Test 004 fv3_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_read_inc +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -352,13 +352,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 = 62.610608 +The total amount of wall time = 66.708787 Test 005 fv3_read_inc PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf_esmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGauss_netcdf_esmf Checking test 006 fv3_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -403,13 +403,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 = 130.496683 +The total amount of wall time = 100.835873 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -454,13 +454,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 = 46.770017 +The total amount of wall time = 41.192090 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -505,13 +505,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 = 157.290692 +The total amount of wall time = 343.448767 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGlatlon_netcdf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -556,13 +556,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 = 42.611500 +The total amount of wall time = 59.127219 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_nemsio +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -607,13 +607,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 = 42.207751 +The total amount of wall time = 51.397807 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_wrtGauss_nemsio_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_wrtGauss_nemsio_c192 Checking test 011 fv3_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -658,13 +658,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 = 114.593532 +The total amount of wall time = 111.612003 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -729,13 +729,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 = 53.534276 +The total amount of wall time = 48.213230 Test 012 fv3_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -800,13 +800,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 = 61.429829 +The total amount of wall time = 52.830554 Test 013 fv3_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -871,13 +871,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 = 66.360319 +The total amount of wall time = 60.885217 Test 014 fv3_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_iau +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -942,13 +942,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.638843 +The total amount of wall time = 42.020219 Test 015 fv3_iau PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -993,13 +993,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 = 73.502477 +The total amount of wall time = 40.564911 Test 016 fv3_lheatstrg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_multigases_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_multigases_repro Checking test 017 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1070,13 +1070,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.548348 +The total amount of wall time = 99.087840 Test 017 fv3_multigases PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_control_32bit Checking test 018 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1141,13 +1141,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 = 45.980169 +The total amount of wall time = 40.738869 Test 018 fv3_control_32bit PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stretched +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_stretched Checking test 019 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1200,13 +1200,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 = 316.951947 +The total amount of wall time = 315.302482 Test 019 fv3_stretched PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stretched_nest +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_stretched_nest Checking test 020 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1270,13 +1270,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.268977 +The total amount of wall time = 337.703230 Test 020 fv3_stretched_nest PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_regional_control Checking test 021 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1284,25 +1284,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 = 697.515686 +The total amount of wall time = 691.525302 Test 021 fv3_regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 = 377.837322 +The total amount of wall time = 380.187457 Test 022 fv3_regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1311,27 +1311,27 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 719.612441 +The total amount of wall time = 710.054705 Test 023 fv3_regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 730.459626 +The total amount of wall time = 727.769244 Test 024 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,13 +1376,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 = 48.564397 +The total amount of wall time = 47.541593 Test 025 fv3_gfdlmp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_gwd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1427,13 +1427,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 = 54.984341 +The total amount of wall time = 47.211688 Test 026 fv3_gfdlmprad_gwd PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1478,13 +1478,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 = 49.971356 +The total amount of wall time = 56.542326 Test 027 fv3_gfdlmprad_noahmp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1529,13 +1529,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.908747 +The total amount of wall time = 122.698370 Test 028 fv3_csawmg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1580,13 +1580,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 73.061014 +The total amount of wall time = 68.813253 Test 029 fv3_satmedmf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_satmedmfq +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1631,13 +1631,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 53.461814 +The total amount of wall time = 68.162281 Test 030 fv3_satmedmfq PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmp_32bit +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1682,13 +1682,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 = 40.716876 +The total amount of wall time = 39.814916 Test 031 fv3_gfdlmp_32bit PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfdlmprad_32bit_post +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1737,13 +1737,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 = 84.177052 +The total amount of wall time = 76.481245 Test 032 fv3_gfdlmprad_32bit_post PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_cpt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1794,13 +1794,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 = 292.688728 +The total amount of wall time = 290.014404 Test 033 fv3_cpt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1889,13 +1889,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 = 187.913279 +The total amount of wall time = 186.087170 Test 034 fv3_gsd PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1960,13 +1960,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.096743 +The total amount of wall time = 90.882700 Test 035 fv3_rap PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2031,13 +2031,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 114.329651 +The total amount of wall time = 93.559131 Test 036 fv3_hrrr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2102,13 +2102,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 88.118415 +The total amount of wall time = 84.189918 Test 037 fv3_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2173,13 +2173,13 @@ Checking test 038 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 = 86.503485 +The total amount of wall time = 94.172123 Test 038 fv3_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2244,13 +2244,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.109614 +The total amount of wall time = 105.266902 Test 039 fv3_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2327,13 +2327,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 212.755425 +The total amount of wall time = 188.634157 Test 040 fv3_gfs_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2380,13 +2380,13 @@ Checking test 041 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 = 99.094435 +The total amount of wall time = 90.052777 Test 041 fv3_gfs_v16_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,13 +2451,13 @@ Checking test 042 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 = 55.086124 +The total amount of wall time = 67.116699 Test 042 fv3_gfs_v16_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2522,13 +2522,13 @@ Checking test 043 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 = 211.882218 +The total amount of wall time = 204.780579 Test 043 fv3_gfs_v16_RRTMGP PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2587,13 +2587,13 @@ Checking test 044 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 = 821.703428 +The total amount of wall time = 814.889302 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP_2thrd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2658,13 +2658,13 @@ Checking test 045 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 = 326.202808 +The total amount of wall time = 309.779032 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfsv16_csawmg Checking test 046 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2709,13 +2709,13 @@ Checking test 046 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.403359 +The total amount of wall time = 199.242794 Test 046 fv3_gfsv16_csawmg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfsv16_csawmgt Checking test 047 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2760,13 +2760,13 @@ Checking test 047 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 130.133983 +The total amount of wall time = 129.008828 Test 047 fv3_gfsv16_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gocart_clm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gocart_clm Checking test 048 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2811,13 +2811,13 @@ Checking test 048 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.330356 +The total amount of wall time = 74.783119 Test 048 fv3_gocart_clm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_flake Checking test 049 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2882,13 +2882,13 @@ Checking test 049 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 = 105.717596 +The total amount of wall time = 104.645191 Test 049 fv3_gfs_v16_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 @@ -2953,13 +2953,13 @@ Checking test 050 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 = 170.495844 +The total amount of wall time = 180.913241 Test 050 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 @@ -2974,13 +2974,13 @@ Checking test 051 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 = 343.481604 +The total amount of wall time = 333.041132 Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfsv16_ugwpv1 Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3039,13 +3039,13 @@ Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 203.576865 +The total amount of wall time = 189.081236 Test 052 fv3_gfsv16_ugwpv1 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1_warmstart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfsv16_ugwpv1_warmstart Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3104,13 +3104,13 @@ Checking test 053 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 = 190.633207 +The total amount of wall time = 190.517860 Test 053 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_ras Checking test 054 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3175,13 +3175,13 @@ Checking test 054 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 = 101.295861 +The total amount of wall time = 127.062805 Test 054 fv3_gfs_v16_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3246,13 +3246,13 @@ Checking test 055 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 = 253.497438 +The total amount of wall time = 253.393695 Test 055 fv3_gfs_v16_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_RRTMGP_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 @@ -3317,13 +3317,13 @@ Checking test 056 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.195905 +The total amount of wall time = 382.765880 Test 056 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3331,13 +3331,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 -The total amount of wall time = 369.385791 +The total amount of wall time = 369.218935 Test 057 fv3_regional_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3364,13 +3364,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 141.373306 +The total amount of wall time = 136.438439 Test 058 fv3_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_stretched_nest_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 @@ -3387,13 +3387,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 441.055876 +The total amount of wall time = 439.455189 Test 059 fv3_stretched_nest_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3458,13 +3458,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.106930 +The total amount of wall time = 204.864876 Test 060 fv3_gsd_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3529,13 +3529,13 @@ Checking test 061 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 = 242.318366 +The total amount of wall time = 243.470154 Test 061 fv3_gsd_diag3d_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3600,13 +3600,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 351.610069 +The total amount of wall time = 351.062988 Test 062 fv3_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/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 @@ -3671,13 +3671,13 @@ Checking test 063 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.737325 +The total amount of wall time = 337.659557 Test 063 fv3_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3742,13 +3742,13 @@ Checking test 064 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 = 199.605329 +The total amount of wall time = 199.213613 Test 064 fv3_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3813,13 +3813,13 @@ Checking test 065 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 = 211.084198 +The total amount of wall time = 210.320411 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3834,13 +3834,13 @@ Checking test 066 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 = 383.741847 +The total amount of wall time = 381.317367 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfsv16_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3899,13 +3899,13 @@ Checking test 067 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 = 622.470655 +The total amount of wall time = 592.579974 Test 067 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/fv3_gfs_v16_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3970,13 +3970,13 @@ Checking test 068 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 = 333.424515 +The total amount of wall time = 334.314255 Test 068 fv3_gfs_v16_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_control Checking test 069 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4026,13 +4026,13 @@ Checking test 069 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 = 100.521107 +The total amount of wall time = 126.799649 Test 069 cpld_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restart Checking test 070 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4082,13 +4082,13 @@ Checking test 070 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 = 52.430001 +The total amount of wall time = 55.101720 Test 070 cpld_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_controlfrac Checking test 071 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4138,13 +4138,13 @@ Checking test 071 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 = 103.588459 +The total amount of wall time = 96.410495 Test 071 cpld_controlfrac PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restartfrac Checking test 072 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4194,13 +4194,13 @@ Checking test 072 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 = 56.444303 +The total amount of wall time = 56.009091 Test 072 cpld_restartfrac PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_2threads Checking test 073 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4250,13 +4250,13 @@ Checking test 073 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 = 137.042282 +The total amount of wall time = 136.894222 Test 073 cpld_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_decomp Checking test 074 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4306,13 +4306,13 @@ Checking test 074 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 = 99.202463 +The total amount of wall time = 96.503386 Test 074 cpld_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_satmedmf +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_satmedmf Checking test 075 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4362,13 +4362,13 @@ Checking test 075 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 = 94.534519 +The total amount of wall time = 117.827580 Test 075 cpld_satmedmf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_ca Checking test 076 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4418,13 +4418,13 @@ Checking test 076 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 = 94.868891 +The total amount of wall time = 96.760888 Test 076 cpld_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_control_c192 Checking test 077 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4474,13 +4474,13 @@ Checking test 077 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 = 412.041817 +The total amount of wall time = 411.704728 Test 077 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restart_c192 Checking test 078 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4530,13 +4530,13 @@ Checking test 078 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 = 284.121450 +The total amount of wall time = 283.080938 Test 078 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_controlfrac_c192 Checking test 079 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4586,13 +4586,13 @@ Checking test 079 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 = 413.316553 +The total amount of wall time = 425.102136 Test 079 cpld_controlfrac_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restartfrac_c192 Checking test 080 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4642,13 +4642,13 @@ Checking test 080 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 = 285.165286 +The total amount of wall time = 287.642176 Test 080 cpld_restartfrac_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_control_c384 Checking test 081 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4701,13 +4701,13 @@ Checking test 081 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 = 1518.184604 +The total amount of wall time = 1530.414097 Test 081 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restart_c384 Checking test 082 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4760,13 +4760,13 @@ Checking test 082 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 = 808.687355 +The total amount of wall time = 786.788558 Test 082 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_controlfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_controlfrac_c384 Checking test 083 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4819,13 +4819,13 @@ Checking test 083 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 = 1507.338265 +The total amount of wall time = 1550.495286 Test 083 cpld_controlfrac_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restartfrac_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restartfrac_c384 Checking test 084 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4878,13 +4878,13 @@ Checking test 084 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 = 802.273679 +The total amount of wall time = 778.464261 Test 084 cpld_restartfrac_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_bmark Checking test 085 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4937,13 +4937,13 @@ Checking test 085 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.504528 +The total amount of wall time = 886.222585 Test 085 cpld_bmark PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_bmark +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restart_bmark Checking test 086 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4996,13 +4996,13 @@ Checking test 086 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 = 486.012252 +The total amount of wall time = 464.342540 Test 086 cpld_restart_bmark PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_bmarkfrac Checking test 087 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5055,13 +5055,13 @@ Checking test 087 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 = 890.373882 +The total amount of wall time = 877.082649 Test 087 cpld_bmarkfrac PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_restart_bmarkfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_restart_bmarkfrac Checking test 088 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5114,13 +5114,13 @@ Checking test 088 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 = 481.443519 +The total amount of wall time = 471.443337 Test 088 cpld_restart_bmarkfrac PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_debug Checking test 089 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5170,13 +5170,13 @@ Checking test 089 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 = 277.003551 +The total amount of wall time = 273.202605 Test 089 cpld_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/cpld_debugfrac +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/cpld_debugfrac Checking test 090 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5226,73 +5226,73 @@ Checking test 090 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 = 273.689501 +The total amount of wall time = 284.240792 Test 090 cpld_debugfrac PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_control_cfsr Checking test 091 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 = 105.547304 +The total amount of wall time = 105.857122 Test 091 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_restart_cfsr Checking test 092 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 = 63.308824 +The total amount of wall time = 61.084285 Test 092 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_control_gefs Checking test 093 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 = 99.005801 +The total amount of wall time = 102.406232 Test 093 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_bulk_cfsr Checking test 094 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.130073 +The total amount of wall time = 102.853397 Test 094 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_bulk_gefs Checking test 095 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 = 102.806342 +The total amount of wall time = 99.614808 Test 095 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_mx025_gefs Checking test 096 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5301,23 +5301,23 @@ Checking test 096 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 = 398.271190 +The total amount of wall time = 400.097791 Test 096 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/Dom.Heinzeller/FV3_RT/rt_22968/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17690/datm_debug_cfsr Checking test 097 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 = 231.839569 +The total amount of wall time = 235.314746 Test 097 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 12:49:12 EDT 2021 -Elapsed time: 01h:37m:07s. Have a nice day! +Fri Apr 9 10:56:07 EDT 2021 +Elapsed time: 01h:22m:23s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 1d5ac1ab0b..0b2acdea99 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,19 +1,19 @@ -Wed Apr 7 16:21:34 UTC 2021 +Fri Apr 9 13:32:21 UTC 2021 Start Regression test -Compile 001 elapsed time 212 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp -Compile 002 elapsed time 212 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP -Compile 003 elapsed time 240 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y -Compile 004 elapsed time 217 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 005 elapsed time 144 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 006 elapsed time 107 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y -Compile 007 elapsed time 240 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y -Compile 008 elapsed time 107 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 246 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 010 elapsed time 218 seconds. APP=DATM_NEMS +Compile 001 elapsed time 207 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp +Compile 002 elapsed time 208 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP +Compile 003 elapsed time 233 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta 32BIT=Y +Compile 004 elapsed time 210 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 005 elapsed time 135 seconds. APP=ATM 32BIT=Y DEBUG=Y +Compile 006 elapsed time 102 seconds. APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y +Compile 007 elapsed time 234 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y +Compile 008 elapsed time 101 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 232 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled +Compile 010 elapsed time 224 seconds. APP=DATM_NEMS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 224.052403 + 0: The total amount of wall time = 235.076363 Test 001 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 648.482506 + 0: The total amount of wall time = 654.392575 Test 002 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 323.680835 + 0: The total amount of wall time = 321.174271 Test 003 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 349.942493 + 0: The total amount of wall time = 391.315053 Test 004 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 618.205913 + 0: The total amount of wall time = 696.284743 Test 005 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 740.139372 + 0: The total amount of wall time = 860.536242 Test 006 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 848.630963 + 0: The total amount of wall time = 865.468163 Test 007 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 396.261455 + 0: The total amount of wall time = 444.882641 Test 008 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/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 = 368.870208 + 0: The total amount of wall time = 556.694120 Test 009 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_rrfs_v1beta Checking test 010 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -715,13 +715,13 @@ Checking test 010 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 = 390.614111 + 0: The total amount of wall time = 454.550368 Test 010 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 011 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 = 613.304236 + 0: The total amount of wall time = 815.763815 Test 011 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -807,13 +807,13 @@ Checking test 012 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 = 437.934702 + 0: The total amount of wall time = 435.189344 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfsv16_ugwpv1 Checking test 013 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -872,13 +872,13 @@ Checking test 013 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 = 916.875328 + 0: The total amount of wall time = 914.666802 Test 013 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfsv16_ugwpv1_warmstart Checking test 014 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -937,13 +937,13 @@ Checking test 014 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 = 912.454511 + 0: The total amount of wall time = 905.761767 Test 014 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfs_v16_ras Checking test 015 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,13 +1008,13 @@ Checking test 015 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 = 547.531557 + 0: The total amount of wall time = 590.417600 Test 015 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_control_debug Checking test 016 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1041,13 +1041,13 @@ Checking test 016 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 83.952951 + 0: The total amount of wall time = 80.953459 Test 016 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_regional_control_debug Checking test 017 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1055,13 +1055,13 @@ Checking test 017 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 = 168.951791 + 0: The total amount of wall time = 167.243981 Test 017 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1126,13 +1126,13 @@ Checking test 018 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 = 114.691456 + 0: The total amount of wall time = 115.247468 Test 018 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1197,13 +1197,13 @@ Checking test 019 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 = 120.055567 + 0: The total amount of wall time = 118.651690 Test 019 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_thompson_debug Checking test 020 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1268,13 +1268,13 @@ Checking test 020 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 = 199.339817 + 0: The total amount of wall time = 197.904167 Test 020 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_thompson_no_aero_debug Checking test 021 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1339,13 +1339,13 @@ Checking test 021 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 = 193.800030 + 0: The total amount of wall time = 188.104220 Test 021 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v15p2_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v15p2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfs_v15p2_debug Checking test 022 fv3_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1410,13 +1410,13 @@ Checking test 022 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 = 294.838999 + 0: The total amount of wall time = 309.052962 Test 022 fv3_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfs_v16_debug Checking test 023 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1481,13 +1481,13 @@ Checking test 023 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 = 168.253161 + 0: The total amount of wall time = 167.637212 Test 023 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfs_v16_RRTMGP_debug Checking test 024 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 024 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 = 360.362524 + 0: The total amount of wall time = 578.064809 Test 024 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_multigases -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_multigases +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_multigases Checking test 025 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1629,13 +1629,13 @@ Checking test 025 fv3_multigases results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 418.104384 + 0: The total amount of wall time = 443.542271 Test 025 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1700,13 +1700,13 @@ Checking test 026 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 = 131.757593 + 0: The total amount of wall time = 128.596104 Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1721,13 +1721,13 @@ Checking test 027 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 = 221.831857 + 0: The total amount of wall time = 223.357742 Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfsv16_ugwpv1_debug Checking test 028 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -1786,13 +1786,13 @@ Checking test 028 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 = 397.674594 + 0: The total amount of wall time = 586.371404 Test 028 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/GNU/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Bin.Li/FV3_RT/rt_190543/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_187964/fv3_gfs_v16_ras_debug Checking test 029 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1857,11 +1857,11 @@ Checking test 029 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 = 216.524125 + 0: The total amount of wall time = 217.714601 Test 029 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 16:52:19 UTC 2021 -Elapsed time: 00h:30m:46s. Have a nice day! +Fri Apr 9 14:07:26 UTC 2021 +Elapsed time: 00h:35m:06s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index f6ff35edd1..fefba1c263 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,29 +1,29 @@ -Thu Apr 8 13:01:51 UTC 2021 +Fri Apr 9 13:47:19 UTC 2021 Start Regression test -Compile 001 elapsed time 633 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 517 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 488 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 937 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1125 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 785 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 1202 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 1370 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 32BIT=Y -Compile 009 elapsed time 547 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1100 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 500 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 565 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 320 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 168 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 171 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 563 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 556 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 275 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 502 seconds. APP=DATM_NEMS -Compile 020 elapsed time 125 seconds. APP=DATM_NEMS DEBUG=Y +Compile 001 elapsed time 1035 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 544 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 554 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1027 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 541 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 672 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 552 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 685 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 32BIT=Y +Compile 009 elapsed time 1207 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 748 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 508 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 536 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 163 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 163 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 146 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 569 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 552 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 152 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 373 seconds. APP=DATM_NEMS +Compile 020 elapsed time 133 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 40.782680 + 0: The total amount of wall time = 40.514878 Test 001 fv3_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 41.227479 + 0: The total amount of wall time = 42.011716 Test 002 fv3_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 60.800772 + 0: The total amount of wall time = 63.134058 Test 003 fv3_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 19.532613 + 0: The total amount of wall time = 19.039784 Test 004 fv3_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_read_inc +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 37.012249 + 0: The total amount of wall time = 37.060528 Test 005 fv3_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_netcdf_esmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 127.924439 + 0: The total amount of wall time = 145.423656 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 40.536472 + 0: The total amount of wall time = 37.845382 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.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 = 50.646780 + 0: The total amount of wall time = 60.083283 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGlatlon_netcdf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 41.887559 + 0: The total amount of wall time = 40.569642 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_nemsio +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 37.903884 + 0: The total amount of wall time = 42.090922 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_nemsio_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 100.627980 + 0: The total amount of wall time = 97.921920 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 41.217601 + 0: The total amount of wall time = 43.698821 Test 012 fv3_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 28.141071 + 0: The total amount of wall time = 31.676235 Test 013 fv3_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 44.595376 + 0: The total amount of wall time = 48.935704 Test 014 fv3_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_iau +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 36.910841 + 0: The total amount of wall time = 37.122592 Test 015 fv3_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 37.251327 + 0: The total amount of wall time = 70.850890 Test 016 fv3_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,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 = 654.936337 + 0: The total amount of wall time = 663.326542 Test 017 fv3_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,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 = 800.615915 + 0: The total amount of wall time = 807.103010 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_wrtGauss_nemsio_c768 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,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 = 709.877581 + 0: The total amount of wall time = 711.248257 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_multigases_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,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 = 94.934068 + 0: The total amount of wall time = 102.355062 Test 020 fv3_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_control_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,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 = 37.907795 + 0: The total amount of wall time = 37.699292 Test 021 fv3_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,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 = 250.543362 + 0: The total amount of wall time = 256.738146 Test 022 fv3_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched_nest +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 280.830857 + 0: The total amount of wall time = 280.979406 Test 023 fv3_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,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 = 601.238053 + 0: The total amount of wall time = 602.413655 Test 024 fv3_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 = 334.543164 + 0: The total amount of wall time = 335.316210 Test 025 fv3_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1469,13 +1469,13 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 616.623803 + 0: The total amount of wall time = 621.483709 Test 026 fv3_regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1483,13 +1483,13 @@ Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 618.522824 + 0: The total amount of wall time = 621.761449 Test 027 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1534,13 +1534,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 = 43.711718 + 0: The total amount of wall time = 42.369094 Test 028 fv3_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_gwd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1585,13 +1585,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 = 43.258665 + 0: The total amount of wall time = 43.008270 Test 029 fv3_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1636,13 +1636,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 = 48.519406 + 0: The total amount of wall time = 43.712239 Test 030 fv3_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1687,13 +1687,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 = 111.531576 + 0: The total amount of wall time = 106.523409 Test 031 fv3_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 46.364250 + 0: The total amount of wall time = 47.173772 Test 032 fv3_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_satmedmfq +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,13 +1789,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 = 45.383167 + 0: The total amount of wall time = 45.641668 Test 033 fv3_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmp_32bit +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,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 = 38.107238 + 0: The total amount of wall time = 37.053613 Test 034 fv3_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfdlmprad_32bit_post +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1895,13 +1895,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 = 75.148977 + 0: The total amount of wall time = 74.327629 Test 035 fv3_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_cpt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,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 = 258.526238 + 0: The total amount of wall time = 257.265481 Test 036 fv3_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2047,13 +2047,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 = 167.172925 + 0: The total amount of wall time = 168.806200 Test 037 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2118,13 +2118,13 @@ Checking test 038 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.732364 + 0: The total amount of wall time = 84.205580 Test 038 fv3_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,13 +2189,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.607445 + 0: The total amount of wall time = 84.193656 Test 039 fv3_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,13 +2260,13 @@ Checking test 040 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.795004 + 0: The total amount of wall time = 76.737193 Test 040 fv3_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,13 +2331,13 @@ Checking test 041 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 = 77.768020 + 0: The total amount of wall time = 79.265427 Test 041 fv3_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2402,13 +2402,13 @@ Checking test 042 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.510982 + 0: The total amount of wall time = 85.977186 Test 042 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 043 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 = 130.252479 + 0: The total amount of wall time = 137.949426 Test 043 fv3_gfs_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,13 +2538,13 @@ Checking test 044 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 = 76.452291 + 0: The total amount of wall time = 86.847364 Test 044 fv3_gfs_v16_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,13 +2609,13 @@ Checking test 045 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 = 47.149762 + 0: The total amount of wall time = 64.452399 Test 045 fv3_gfs_v16_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2680,13 +2680,13 @@ Checking test 046 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 = 168.444345 + 0: The total amount of wall time = 364.551491 Test 046 fv3_gfs_v16_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2745,13 +2745,13 @@ Checking test 047 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 = 654.493620 + 0: The total amount of wall time = 659.448896 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_2thrd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 048 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 = 236.965419 + 0: The total amount of wall time = 248.709988 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,13 +2867,13 @@ Checking test 049 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 = 116.502289 + 0: The total amount of wall time = 115.961050 Test 049 fv3_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2918,13 +2918,13 @@ Checking test 050 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.981151 + 0: The total amount of wall time = 113.233985 Test 050 fv3_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gocart_clm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2969,13 +2969,13 @@ Checking test 051 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.618171 + 0: The total amount of wall time = 47.757792 Test 051 fv3_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,13 +3040,13 @@ Checking test 052 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 = 91.564507 + 0: The total amount of wall time = 92.056972 Test 052 fv3_gfs_v16_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3111,13 +3111,13 @@ Checking test 053 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 = 143.131741 + 0: The total amount of wall time = 144.347427 Test 053 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3132,13 +3132,13 @@ Checking test 054 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 = 279.591863 + 0: The total amount of wall time = 277.396264 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3197,13 +3197,13 @@ Checking test 055 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 = 165.230016 + 0: The total amount of wall time = 170.736533 Test 055 fv3_gfsv16_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1_warmstart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3262,13 +3262,13 @@ Checking test 056 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 = 165.281030 + 0: The total amount of wall time = 176.633004 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3333,13 +3333,13 @@ Checking test 057 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 = 88.620814 + 0: The total amount of wall time = 100.931120 Test 057 fv3_gfs_v16_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3404,13 +3404,13 @@ Checking test 058 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 = 242.888431 + 0: The total amount of wall time = 247.786891 Test 058 fv3_gfs_v16_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_RRTMGP_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3475,13 +3475,13 @@ Checking test 059 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 = 368.220464 + 0: The total amount of wall time = 365.145340 Test 059 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3489,13 +3489,13 @@ Checking test 060 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 = 363.496523 + 0: The total amount of wall time = 364.168540 Test 060 fv3_regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3522,13 +3522,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 137.785308 + 0: The total amount of wall time = 137.529248 Test 061 fv3_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_stretched_nest_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3545,13 +3545,13 @@ Checking test 062 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.241535 + 0: The total amount of wall time = 369.827757 Test 062 fv3_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3616,13 +3616,13 @@ Checking test 063 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 = 203.735309 + 0: The total amount of wall time = 207.630570 Test 063 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3687,13 +3687,13 @@ Checking test 064 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.391365 + 0: The total amount of wall time = 288.137337 Test 064 fv3_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3758,13 +3758,13 @@ Checking test 065 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 = 344.600446 + 0: The total amount of wall time = 337.027072 Test 065 fv3_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3829,13 +3829,13 @@ Checking test 066 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 = 331.349130 + 0: The total amount of wall time = 329.217528 Test 066 fv3_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3900,13 +3900,13 @@ Checking test 067 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 = 200.236848 + 0: The total amount of wall time = 196.944420 Test 067 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 @@ -3971,13 +3971,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 - 0: The total amount of wall time = 198.596380 + 0: The total amount of wall time = 199.302834 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 @@ -3992,13 +3992,13 @@ Checking test 069 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 = 390.418966 + 0: The total amount of wall time = 389.060612 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfsv16_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4057,13 +4057,13 @@ Checking test 070 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 = 559.410267 + 0: The total amount of wall time = 562.859531 Test 070 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/fv3_gfs_v16_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/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 @@ -4128,13 +4128,13 @@ Checking test 071 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 = 314.347561 + 0: The total amount of wall time = 321.597772 Test 071 fv3_gfs_v16_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4184,13 +4184,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 - 0: The total amount of wall time = 94.109761 + 0: The total amount of wall time = 94.533649 Test 072 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4240,13 +4240,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 - 0: The total amount of wall time = 57.656600 + 0: The total amount of wall time = 57.674254 Test 073 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4296,13 +4296,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 - 0: The total amount of wall time = 104.418684 + 0: The total amount of wall time = 93.451808 Test 074 cpld_controlfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4352,13 +4352,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 - 0: The total amount of wall time = 57.299025 + 0: The total amount of wall time = 59.104001 Test 075 cpld_restartfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_2threads Checking test 076 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4408,13 +4408,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 - 0: The total amount of wall time = 117.770817 + 0: The total amount of wall time = 116.762070 Test 076 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4464,13 +4464,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 - 0: The total amount of wall time = 91.980157 + 0: The total amount of wall time = 92.052633 Test 077 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_satmedmf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4520,13 +4520,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 - 0: The total amount of wall time = 103.047906 + 0: The total amount of wall time = 90.355907 Test 078 cpld_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4576,13 +4576,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 - 0: The total amount of wall time = 93.361898 + 0: The total amount of wall time = 92.888841 Test 079 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4632,13 +4632,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 - 0: The total amount of wall time = 426.269399 + 0: The total amount of wall time = 402.514106 Test 080 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4688,13 +4688,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 - 0: The total amount of wall time = 283.016804 + 0: The total amount of wall time = 272.707762 Test 081 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4744,13 +4744,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 - 0: The total amount of wall time = 421.509666 + 0: The total amount of wall time = 391.235696 Test 082 cpld_controlfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4800,13 +4800,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 - 0: The total amount of wall time = 280.450510 + 0: The total amount of wall time = 275.420727 Test 083 cpld_restartfrac_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4859,13 +4859,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 - 0: The total amount of wall time = 1348.841856 + 0: The total amount of wall time = 1356.487381 Test 084 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4918,13 +4918,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 - 0: The total amount of wall time = 722.231648 + 0: The total amount of wall time = 741.612656 Test 085 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_controlfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4977,13 +4977,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 - 0: The total amount of wall time = 1337.079230 + 0: The total amount of wall time = 1375.625238 Test 086 cpld_controlfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restartfrac_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5036,13 +5036,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 - 0: The total amount of wall time = 727.905099 + 0: The total amount of wall time = 736.929736 Test 087 cpld_restartfrac_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5095,13 +5095,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 - 0: The total amount of wall time = 826.795353 + 0: The total amount of wall time = 836.276997 Test 088 cpld_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmark +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5154,13 +5154,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 - 0: The total amount of wall time = 497.594866 + 0: The total amount of wall time = 455.523041 Test 089 cpld_restart_bmark PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5213,13 +5213,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 - 0: The total amount of wall time = 871.307291 + 0: The total amount of wall time = 819.628887 Test 090 cpld_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmarkfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5272,13 +5272,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 - 0: The total amount of wall time = 476.070566 + 0: The total amount of wall time = 459.909278 Test 091 cpld_restart_bmarkfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmarkfrac_v16 Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5331,13 +5331,13 @@ Checking test 092 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 = 1392.761000 + 0: The total amount of wall time = 1360.497436 Test 092 cpld_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmarkfrac_v16_nsst Checking test 093 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5390,13 +5390,13 @@ Checking test 093 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 = 1354.305095 + 0: The total amount of wall time = 1326.763969 Test 093 cpld_bmarkfrac_v16_nsst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_restart_bmarkfrac_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_restart_bmarkfrac_v16 Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5449,13 +5449,13 @@ Checking test 094 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 = 735.045482 + 0: The total amount of wall time = 735.984059 Test 094 cpld_restart_bmarkfrac_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmark_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmark_wave Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5511,13 +5511,13 @@ Checking test 095 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 = 1436.425946 + 0: The total amount of wall time = 1397.701720 Test 095 cpld_bmark_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmarkfrac_wave Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5573,13 +5573,13 @@ Checking test 096 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 = 1424.685072 + 0: The total amount of wall time = 1372.017442 Test 096 cpld_bmarkfrac_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_bmarkfrac_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_bmarkfrac_wave_v16 Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5634,13 +5634,13 @@ Checking test 097 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 = 893.818338 + 0: The total amount of wall time = 928.860413 Test 097 cpld_bmarkfrac_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_control_wave Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5693,13 +5693,13 @@ Checking test 098 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 = 786.826694 + 0: The total amount of wall time = 782.198063 Test 098 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_debug Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5749,13 +5749,13 @@ Checking test 099 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 = 296.895514 + 0: The total amount of wall time = 297.979445 Test 099 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/cpld_debugfrac +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/cpld_debugfrac Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5805,73 +5805,73 @@ Checking test 100 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 = 293.580640 + 0: The total amount of wall time = 301.153535 Test 100 cpld_debugfrac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_control_cfsr Checking test 101 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 = 97.420083 + 0: The total amount of wall time = 102.284598 Test 101 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_restart_cfsr Checking test 102 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 = 67.772473 + 0: The total amount of wall time = 66.070708 Test 102 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_control_gefs Checking test 103 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 = 95.577769 + 0: The total amount of wall time = 91.119768 Test 103 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_bulk_cfsr Checking test 104 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 = 95.592568 + 0: The total amount of wall time = 92.961251 Test 104 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_bulk_gefs Checking test 105 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 = 91.884016 + 0: The total amount of wall time = 97.348004 Test 105 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5880,13 +5880,13 @@ Checking test 106 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 = 388.822923 + 0: The total amount of wall time = 400.118493 Test 106 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5895,23 +5895,23 @@ Checking test 107 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 = 389.863918 + 0: The total amount of wall time = 382.167902 Test 107 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_46447/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29376/datm_debug_cfsr Checking test 108 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 = 277.639703 + 0: The total amount of wall time = 272.648055 Test 108 datm_debug_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Apr 8 14:49:40 UTC 2021 -Elapsed time: 01h:47m:50s. Have a nice day! +Fri Apr 9 15:56:14 UTC 2021 +Elapsed time: 02h:08m:56s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 03a864f2cb..b9c6f95690 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Tue Apr 6 19:56:27 GMT 2021 +Fri Apr 9 14:16:26 GMT 2021 Start Regression test -Compile 001 elapsed time 2129 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1154 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 2174 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 3427 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 2654 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 001 elapsed time 2145 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1161 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 2145 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 2145 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 2130 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp Compile 006 elapsed time 2350 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 2558 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 32BIT=Y -Compile 008 elapsed time 2147 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 2236 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 2199 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 2362 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 012 elapsed time 220 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 262 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 32BIT=Y DEBUG=Y +Compile 007 elapsed time 2571 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 32BIT=Y +Compile 008 elapsed time 2159 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 2234 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 2191 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 2378 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 012 elapsed time 231 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 013 elapsed time 235 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 32BIT=Y DEBUG=Y Compile 014 elapsed time 220 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/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/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 = 62.986662 +The total amount of wall time = 71.788335 Test 001 fv3_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_2threads Checking test 002 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -153,13 +153,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 = 95.699032 +The total amount of wall time = 90.840431 Test 002 fv3_2threads PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_restart Checking test 003 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -206,13 +206,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 = 30.053802 +The total amount of wall time = 30.600734 Test 003 fv3_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_read_inc +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_read_inc Checking test 004 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -277,13 +277,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 = 62.023671 +The total amount of wall time = 57.344103 Test 004 fv3_read_inc PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_netcdf_esmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/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 +328,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 = 179.195248 +The total amount of wall time = 189.097491 Test 005 fv3_wrtGauss_netcdf_esmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_wrtGauss_netcdf Checking test 006 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -379,13 +379,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 = 55.638616 +The total amount of wall time = 54.685905 Test 006 fv3_wrtGauss_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_wrtGauss_netcdf_parallel Checking test 007 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -430,13 +430,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 = 76.260714 +The total amount of wall time = 78.330357 Test 007 fv3_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGlatlon_netcdf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_wrtGlatlon_netcdf Checking test 008 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -481,13 +481,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 = 54.263709 +The total amount of wall time = 54.596787 Test 008 fv3_wrtGlatlon_netcdf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_nemsio +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_wrtGauss_nemsio Checking test 009 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -532,13 +532,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 = 58.247901 +The total amount of wall time = 53.527076 Test 009 fv3_wrtGauss_nemsio PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_wrtGauss_nemsio_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/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 +583,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 = 154.363352 +The total amount of wall time = 145.388703 Test 010 fv3_wrtGauss_nemsio_c192 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_stochy Checking test 011 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -654,13 +654,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 = 60.686517 +The total amount of wall time = 61.138091 Test 011 fv3_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_ca Checking test 012 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -725,13 +725,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 = 44.565822 +The total amount of wall time = 53.019323 Test 012 fv3_ca PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_lndp Checking test 013 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -796,13 +796,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 = 72.509307 +The total amount of wall time = 76.479682 Test 013 fv3_lndp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_iau +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_iau Checking test 014 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -867,13 +867,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 = 63.530879 +The total amount of wall time = 55.192353 Test 014 fv3_iau PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_lheatstrg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_lheatstrg Checking test 015 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -918,13 +918,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.484071 +The total amount of wall time = 53.791152 Test 015 fv3_lheatstrg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_multigases_repro +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_multigases_repro Checking test 016 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +995,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 = 136.652327 +The total amount of wall time = 133.952933 Test 016 fv3_multigases PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_control_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_control_32bit Checking test 017 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1066,13 +1066,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 = 69.019652 +The total amount of wall time = 69.566800 Test 017 fv3_control_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_stretched Checking test 018 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1125,13 +1125,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 = 398.421500 +The total amount of wall time = 400.131154 Test 018 fv3_stretched PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched_nest +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_stretched_nest Checking test 019 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1195,13 +1195,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 = 423.351000 +The total amount of wall time = 432.612449 Test 019 fv3_stretched_nest PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_regional_control Checking test 020 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1209,25 +1209,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 = 857.782156 +The total amount of wall time = 858.345894 Test 020 fv3_regional_control PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/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 = 478.243165 +The total amount of wall time = 474.613163 Test 021 fv3_regional_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_regional_quilt_hafs Checking test 022 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1236,13 +1236,13 @@ Checking test 022 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 879.065760 +The total amount of wall time = 869.448278 Test 022 fv3_regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_regional_quilt_netcdf_parallel Checking test 023 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1250,13 +1250,13 @@ Checking test 023 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 884.744760 +The total amount of wall time = 865.567043 Test 023 fv3_regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfdlmp Checking test 024 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,13 +1301,13 @@ Checking test 024 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 61.557787 +The total amount of wall time = 61.886902 Test 024 fv3_gfdlmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_gwd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfdlmprad_gwd Checking test 025 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1352,13 +1352,13 @@ Checking test 025 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.919259 +The total amount of wall time = 62.459099 Test 025 fv3_gfdlmprad_gwd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfdlmprad_noahmp Checking test 026 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1403,13 +1403,13 @@ Checking test 026 fv3_gfdlmprad_noahmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 62.446841 +The total amount of wall time = 63.596042 Test 026 fv3_gfdlmprad_noahmp PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_csawmg Checking test 027 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1454,13 +1454,13 @@ Checking test 027 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.724202 +The total amount of wall time = 154.725845 Test 027 fv3_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_satmedmf +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_satmedmf Checking test 028 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1505,13 +1505,13 @@ Checking test 028 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 65.855153 +The total amount of wall time = 68.552593 Test 028 fv3_satmedmf PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_satmedmfq +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_satmedmfq Checking test 029 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1556,13 +1556,13 @@ Checking test 029 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.187156 +The total amount of wall time = 66.548571 Test 029 fv3_satmedmfq PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmp_32bit +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfdlmp_32bit Checking test 030 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1607,13 +1607,13 @@ Checking test 030 fv3_gfdlmp_32bit results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 54.907714 +The total amount of wall time = 55.884459 Test 030 fv3_gfdlmp_32bit PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfdlmprad_32bit_post +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfdlmprad_32bit_post Checking test 031 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1662,13 +1662,13 @@ Checking test 031 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 = 102.583829 +The total amount of wall time = 98.412198 Test 031 fv3_gfdlmprad_32bit_post PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_cpt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_cpt Checking test 032 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1719,13 +1719,13 @@ Checking test 032 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 359.390521 +The total amount of wall time = 358.392224 Test 032 fv3_cpt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gsd Checking test 033 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,13 +1814,13 @@ Checking test 033 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 242.079699 +The total amount of wall time = 236.764023 Test 033 fv3_gsd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_thompson Checking test 034 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 034 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 111.542376 +The total amount of wall time = 109.830516 Test 034 fv3_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_thompson_no_aero Checking test 035 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,13 +1956,13 @@ Checking test 035 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 = 113.332506 +The total amount of wall time = 111.842638 Test 035 fv3_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16 Checking test 036 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2039,13 +2039,13 @@ Checking test 036 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.752601 +The total amount of wall time = 196.322885 Test 036 fv3_gfs_v16 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_restart Checking test 037 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2092,13 +2092,13 @@ Checking test 037 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 = 118.725873 +The total amount of wall time = 112.740206 Test 037 fv3_gfs_v16_restart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_stochy Checking test 038 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2163,13 +2163,13 @@ Checking test 038 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 = 67.520915 +The total amount of wall time = 69.483658 Test 038 fv3_gfs_v16_stochy PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_RRTMGP Checking test 039 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2234,13 +2234,13 @@ Checking test 039 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 = 196.384197 +The total amount of wall time = 196.908257 Test 039 fv3_gfs_v16_RRTMGP PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_c192L127 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_RRTMGP_c192L127 Checking test 040 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 040 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 = 858.055752 +The total amount of wall time = 841.924201 Test 040 fv3_gfs_v16_RRTMGP_c192L127 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_2thrd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_RRTMGP_2thrd Checking test 041 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 041 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 = 323.796181 +The total amount of wall time = 325.848404 Test 041 fv3_gfs_v16_RRTMGP_2thrd PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfsv16_csawmg Checking test 042 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2421,13 +2421,13 @@ Checking test 042 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.557220 +The total amount of wall time = 163.368045 Test 042 fv3_gfsv16_csawmg PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfsv16_csawmgt Checking test 043 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2472,13 +2472,13 @@ Checking test 043 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 160.848665 +The total amount of wall time = 163.802075 Test 043 fv3_gfsv16_csawmgt PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gocart_clm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gocart_clm Checking test 044 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2523,13 +2523,13 @@ Checking test 044 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.552879 +The total amount of wall time = 73.646430 Test 044 fv3_gocart_clm PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_flake Checking test 045 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2594,13 +2594,13 @@ Checking test 045 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 = 125.184428 +The total amount of wall time = 128.474881 Test 045 fv3_gfs_v16_flake PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_HAFS_v0_hwrf_thompson Checking test 046 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2665,13 +2665,13 @@ Checking test 046 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 = 195.457269 +The total amount of wall time = 197.851292 Test 046 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_esg_HAFS_v0_hwrf_thompson Checking test 047 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2686,13 +2686,13 @@ Checking test 047 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 = 370.960417 +The total amount of wall time = 372.173481 Test 047 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfsv16_ugwpv1 Checking test 048 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2751,13 +2751,13 @@ Checking test 048 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 233.883203 +The total amount of wall time = 235.774071 Test 048 fv3_gfsv16_ugwpv1 PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1_warmstart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfsv16_ugwpv1_warmstart Checking test 049 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 049 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 = 248.168620 +The total amount of wall time = 235.132328 Test 049 fv3_gfsv16_ugwpv1_warmstart PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_ras Checking test 050 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2887,13 +2887,13 @@ Checking test 050 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 = 126.716814 +The total amount of wall time = 125.419150 Test 050 fv3_gfs_v16_ras PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_debug Checking test 051 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2958,13 +2958,13 @@ Checking test 051 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 = 317.138119 +The total amount of wall time = 320.780399 Test 051 fv3_gfs_v16_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_RRTMGP_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_RRTMGP_debug Checking test 052 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3029,13 +3029,13 @@ Checking test 052 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 = 475.088728 +The total amount of wall time = 486.193358 Test 052 fv3_gfs_v16_RRTMGP_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_regional_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_regional_control_debug Checking test 053 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3043,13 +3043,13 @@ Checking test 053 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 = 459.578030 +The total amount of wall time = 463.931726 Test 053 fv3_regional_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_control_debug Checking test 054 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3076,13 +3076,13 @@ Checking test 054 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 177.970355 +The total amount of wall time = 184.677935 Test 054 fv3_control_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_stretched_nest_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_stretched_nest_debug Checking test 055 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3099,13 +3099,13 @@ Checking test 055 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 545.233815 +The total amount of wall time = 540.991447 Test 055 fv3_stretched_nest_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gsd_debug Checking test 056 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3170,13 +3170,13 @@ Checking test 056 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 265.437888 +The total amount of wall time = 269.037235 Test 056 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gsd_diag3d_debug Checking test 057 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3241,13 +3241,13 @@ Checking test 057 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 = 366.517767 +The total amount of wall time = 383.182051 Test 057 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_thompson_debug Checking test 058 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3312,13 +3312,13 @@ Checking test 058 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 447.356345 +The total amount of wall time = 447.047013 Test 058 fv3_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_thompson_no_aero_debug Checking test 059 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3383,13 +3383,13 @@ Checking test 059 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 = 428.164628 +The total amount of wall time = 440.227548 Test 059 fv3_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_rrfs_v1beta_debug Checking test 060 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3454,13 +3454,13 @@ Checking test 060 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 = 258.469439 +The total amount of wall time = 260.062520 Test 060 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_HAFS_v0_hwrf_thompson_debug Checking test 061 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3525,13 +3525,13 @@ Checking test 061 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 = 280.719742 +The total amount of wall time = 275.415789 Test 061 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 062 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3546,13 +3546,13 @@ Checking test 062 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 = 513.409902 +The total amount of wall time = 507.890994 Test 062 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfsv16_ugwpv1_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfsv16_ugwpv1_debug Checking test 063 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3611,13 +3611,13 @@ Checking test 063 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 = 756.371724 +The total amount of wall time = 747.058596 Test 063 fv3_gfsv16_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/hfv3gfs/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug -working dir = /lfs4/HFIP/hfv3gfs/Bin.Li/RT_RUNDIRS/Bin.Li/FV3_RT/rt_235548/fv3_gfs_v16_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_226749/fv3_gfs_v16_ras_debug Checking test 064 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3682,11 +3682,11 @@ Checking test 064 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 = 432.126068 +The total amount of wall time = 419.674194 Test 064 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Apr 6 22:18:01 GMT 2021 -Elapsed time: 02h:21m:35s. Have a nice day! +Fri Apr 9 16:09:31 GMT 2021 +Elapsed time: 01h:53m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 2e949d19ce..a2cea6200a 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,29 +1,29 @@ -Wed Apr 7 13:31:29 CDT 2021 +Fri Apr 9 08:46:16 CDT 2021 Start Regression test -Compile 001 elapsed time 509 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 583 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 486 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 507 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 537 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 516 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 562 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 612 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 32BIT=Y -Compile 009 elapsed time 517 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 531 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 524 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 562 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 157 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 150 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 138 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 598 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 582 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 153 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 379 seconds. APP=DATM_NEMS -Compile 020 elapsed time 131 seconds. APP=DATM_NEMS DEBUG=Y +Compile 001 elapsed time 539 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1255 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 517 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 538 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 511 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 1149 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 007 elapsed time 1551 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 008 elapsed time 730 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 32BIT=Y +Compile 009 elapsed time 518 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 768 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 743 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1128 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 209 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 611 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 785 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 678 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 1018 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 494 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 402 seconds. APP=DATM_NEMS +Compile 020 elapsed time 134 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 53.209862 + 0: The total amount of wall time = 49.311485 Test 001 fv3_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 52.999148 + 0: The total amount of wall time = 50.508467 Test 002 fv3_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 58.491174 + 0: The total amount of wall time = 57.270467 Test 003 fv3_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 34.697280 + 0: The total amount of wall time = 32.800512 Test 004 fv3_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_read_inc -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_read_inc +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 50.304414 + 0: The total amount of wall time = 51.522743 Test 005 fv3_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_esmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_netcdf_esmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 168.782294 + 0: The total amount of wall time = 152.418206 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 49.585537 + 0: The total amount of wall time = 46.939418 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -470,7 +470,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 .........OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......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 = 61.283780 + 0: The total amount of wall time = 57.220815 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGlatlon_netcdf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGlatlon_netcdf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 52.838304 + 0: The total amount of wall time = 46.051559 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_nemsio +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 52.325758 + 0: The total amount of wall time = 46.918984 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_nemsio_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 109.396390 + 0: The total amount of wall time = 107.999766 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 50.817889 + 0: The total amount of wall time = 48.692049 Test 012 fv3_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 47.580415 + 0: The total amount of wall time = 39.023934 Test 013 fv3_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 64.181883 + 0: The total amount of wall time = 52.909651 Test 014 fv3_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_iau -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_iau +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 53.623174 + 0: The total amount of wall time = 53.919080 Test 015 fv3_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 52.689010 + 0: The total amount of wall time = 45.015551 Test 016 fv3_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1047,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 = 682.732374 + 0: The total amount of wall time = 683.543693 Test 017 fv3_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1099,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 = 823.766639 + 0: The total amount of wall time = 825.997207 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_wrtGauss_nemsio_c768 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_wrtGauss_nemsio_c768 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_wrtGauss_nemsio_c768 Checking test 019 fv3_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1151,13 +1151,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 = 703.327676 + 0: The total amount of wall time = 705.722950 Test 019 fv3_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_multigases_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_multigases_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_multigases_repro Checking test 020 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1228,13 +1228,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 = 109.509081 + 0: The total amount of wall time = 104.816385 Test 020 fv3_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_control_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_control_32bit Checking test 021 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1299,13 +1299,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 = 47.366163 + 0: The total amount of wall time = 47.236231 Test 021 fv3_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_stretched Checking test 022 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1358,13 +1358,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 = 220.556118 + 0: The total amount of wall time = 225.241485 Test 022 fv3_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched_nest +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_stretched_nest Checking test 023 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1428,13 +1428,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 = 243.381468 + 0: The total amount of wall time = 249.950171 Test 023 fv3_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_regional_control Checking test 024 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1442,25 +1442,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 = 558.971648 + 0: The total amount of wall time = 565.768134 Test 024 fv3_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 = 316.562520 + 0: The total amount of wall time = 312.828863 Test 025 fv3_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_regional_quilt_hafs Checking test 026 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1469,13 +1469,13 @@ Checking test 026 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 580.904493 + 0: The total amount of wall time = 580.552420 Test 026 fv3_regional_quilt_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_regional_quilt_netcdf_parallel Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1483,13 +1483,13 @@ Checking test 027 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 579.833753 + 0: The total amount of wall time = 582.052860 Test 027 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmp Checking test 028 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1534,13 +1534,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 = 55.049507 + 0: The total amount of wall time = 51.731534 Test 028 fv3_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_gwd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_gwd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmprad_gwd Checking test 029 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1585,13 +1585,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 = 49.211989 + 0: The total amount of wall time = 48.420225 Test 029 fv3_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmprad_noahmp Checking test 030 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1636,13 +1636,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 = 53.019151 + 0: The total amount of wall time = 52.370236 Test 030 fv3_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_csawmg Checking test 031 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1687,13 +1687,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 = 120.256744 + 0: The total amount of wall time = 114.401327 Test 031 fv3_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_satmedmf Checking test 032 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,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 = 55.694381 + 0: The total amount of wall time = 55.770597 Test 032 fv3_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_satmedmfq -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_satmedmfq +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_satmedmfq Checking test 033 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,13 +1789,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 = 52.117671 + 0: The total amount of wall time = 59.435402 Test 033 fv3_satmedmfq PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmp_32bit -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmp_32bit +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmp_32bit Checking test 034 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1840,13 +1840,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 = 50.735002 + 0: The total amount of wall time = 43.259074 Test 034 fv3_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfdlmprad_32bit_post -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfdlmprad_32bit_post +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfdlmprad_32bit_post Checking test 035 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1895,13 +1895,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 = 79.463320 + 0: The total amount of wall time = 74.122170 Test 035 fv3_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_cpt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_cpt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_cpt Checking test 036 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,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 = 264.906591 + 0: The total amount of wall time = 260.558849 Test 036 fv3_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2047,13 +2047,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 = 188.083310 + 0: The total amount of wall time = 177.517179 Test 037 fv3_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_rap Checking test 038 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2118,13 +2118,13 @@ Checking test 038 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 102.120478 + 0: The total amount of wall time = 96.553184 Test 038 fv3_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_hrrr Checking test 039 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2189,13 +2189,13 @@ Checking test 039 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 99.701707 + 0: The total amount of wall time = 94.005811 Test 039 fv3_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_thompson Checking test 040 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2260,13 +2260,13 @@ Checking test 040 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.794822 + 0: The total amount of wall time = 86.118407 Test 040 fv3_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_thompson_no_aero Checking test 041 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2331,13 +2331,13 @@ Checking test 041 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 = 94.216624 + 0: The total amount of wall time = 89.811733 Test 041 fv3_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_rrfs_v1beta Checking test 042 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2402,13 +2402,13 @@ Checking test 042 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 = 101.419944 + 0: The total amount of wall time = 98.781173 Test 042 fv3_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16 Checking test 043 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 043 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 = 214.505964 + 0: The total amount of wall time = 213.982813 Test 043 fv3_gfs_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_restart Checking test 044 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2538,13 +2538,13 @@ Checking test 044 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 = 158.668649 + 0: The total amount of wall time = 157.427158 Test 044 fv3_gfs_v16_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_stochy Checking test 045 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2609,13 +2609,13 @@ Checking test 045 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 = 56.796601 + 0: The total amount of wall time = 59.961117 Test 045 fv3_gfs_v16_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_RRTMGP Checking test 046 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2680,13 +2680,13 @@ Checking test 046 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 = 170.946434 + 0: The total amount of wall time = 173.047001 Test 046 fv3_gfs_v16_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_RRTMGP_c192L127 Checking test 047 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2745,13 +2745,13 @@ Checking test 047 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 = 633.829801 + 0: The total amount of wall time = 630.715279 Test 047 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_2thrd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_RRTMGP_2thrd Checking test 048 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2816,13 +2816,13 @@ Checking test 048 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 = 192.815231 + 0: The total amount of wall time = 193.296932 Test 048 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfsv16_csawmg Checking test 049 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,13 +2867,13 @@ Checking test 049 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 = 130.989675 + 0: The total amount of wall time = 128.040975 Test 049 fv3_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfsv16_csawmgt Checking test 050 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2918,13 +2918,13 @@ Checking test 050 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 = 132.191273 + 0: The total amount of wall time = 128.989830 Test 050 fv3_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gocart_clm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gocart_clm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gocart_clm Checking test 051 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2969,13 +2969,13 @@ Checking test 051 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 = 63.869948 + 0: The total amount of wall time = 58.854242 Test 051 fv3_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_flake Checking test 052 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3040,13 +3040,13 @@ Checking test 052 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 = 108.151891 + 0: The total amount of wall time = 108.295608 Test 052 fv3_gfs_v16_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3111,13 +3111,13 @@ Checking test 053 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 = 151.901676 + 0: The total amount of wall time = 154.257177 Test 053 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3132,13 +3132,13 @@ Checking test 054 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 = 309.278338 + 0: The total amount of wall time = 303.146594 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfsv16_ugwpv1 Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3146,60 +3146,64 @@ Checking test 055 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile4.nc .........OK Comparing phyf000.tile5.nc .........OK Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc ............MISSING file - Comparing phyf024.tile2.nc ............MISSING file - Comparing phyf024.tile3.nc ............MISSING file - Comparing phyf024.tile4.nc ............MISSING file - Comparing phyf024.tile5.nc ............MISSING file - Comparing phyf024.tile6.nc ............MISSING file + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK Comparing dynf000.tile1.nc .........OK Comparing dynf000.tile2.nc .........OK Comparing dynf000.tile3.nc .........OK Comparing dynf000.tile4.nc .........OK Comparing dynf000.tile5.nc .........OK Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc ............MISSING file - Comparing dynf024.tile2.nc ............MISSING file - Comparing dynf024.tile3.nc ............MISSING file - Comparing dynf024.tile4.nc ............MISSING file - Comparing dynf024.tile5.nc ............MISSING file - Comparing dynf024.tile6.nc ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + + 0: The total amount of wall time = 178.778735 + +Test 055 fv3_gfsv16_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_warmstart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1_warmstart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfsv16_ugwpv1_warmstart Checking test 056 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3258,13 +3262,13 @@ Checking test 056 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 = 174.087242 + 0: The total amount of wall time = 179.528010 Test 056 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_ras Checking test 057 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3329,13 +3333,13 @@ Checking test 057 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 = 101.140029 + 0: The total amount of wall time = 100.790972 Test 057 fv3_gfs_v16_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_debug Checking test 058 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3400,13 +3404,13 @@ Checking test 058 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 = 301.542402 + 0: The total amount of wall time = 305.924438 Test 058 fv3_gfs_v16_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_RRTMGP_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_RRTMGP_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfs_v16_RRTMGP_debug Checking test 059 fv3_gfs_v16_RRTMGP_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3471,13 +3475,13 @@ Checking test 059 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 = 389.592980 + 0: The total amount of wall time = 406.278867 Test 059 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_regional_control_debug Checking test 060 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3485,13 +3489,13 @@ Checking test 060 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 = 388.806335 + 0: The total amount of wall time = 388.128409 Test 060 fv3_regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_control_debug Checking test 061 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3518,13 +3522,13 @@ Checking test 061 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK - 0: The total amount of wall time = 156.460252 + 0: The total amount of wall time = 179.648758 Test 061 fv3_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_stretched_nest_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_stretched_nest_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_stretched_nest_debug Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history2d.nest02.tile7.nc .........OK Comparing fv3_history2d.tile1.nc .........OK @@ -3541,13 +3545,13 @@ Checking test 062 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK - 0: The total amount of wall time = 387.050724 + 0: The total amount of wall time = 378.369790 Test 062 fv3_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3612,13 +3616,13 @@ Checking test 063 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 = 234.896662 + 0: The total amount of wall time = 215.616517 Test 063 fv3_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3683,13 +3687,13 @@ Checking test 064 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 = 301.461408 + 0: The total amount of wall time = 295.610818 Test 064 fv3_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_thompson_debug Checking test 065 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3754,13 +3758,13 @@ Checking test 065 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 = 354.168274 + 0: The total amount of wall time = 358.346300 Test 065 fv3_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_thompson_no_aero_debug Checking test 066 fv3_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3825,13 +3829,13 @@ Checking test 066 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 = 349.395767 + 0: The total amount of wall time = 345.879100 Test 066 fv3_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3896,13 +3900,13 @@ Checking test 067 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 = 217.809992 + 0: The total amount of wall time = 210.304686 Test 067 fv3_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 @@ -3967,13 +3971,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 - 0: The total amount of wall time = 221.426604 + 0: The total amount of wall time = 218.549451 Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 @@ -3988,13 +3992,13 @@ Checking test 069 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 = 421.459532 + 0: The total amount of wall time = 417.824205 Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfsv16_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/fv3_gfsv16_ugwpv1_debug Checking test 070 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4053,13 +4057,13 @@ Checking test 070 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 = 615.925480 + 0: The total amount of wall time = 591.206797 Test 070 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfs_v16_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/fv3_gfs_v16_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/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 @@ -4124,13 +4128,13 @@ Checking test 071 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 = 340.050860 + 0: The total amount of wall time = 341.220639 Test 071 fv3_gfs_v16_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_control Checking test 072 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4180,13 +4184,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 - 0: The total amount of wall time = 114.085487 + 0: The total amount of wall time = 104.113742 Test 072 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart Checking test 073 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4236,13 +4240,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 - 0: The total amount of wall time = 80.352333 + 0: The total amount of wall time = 72.283410 Test 073 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_controlfrac Checking test 074 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4292,13 +4296,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 - 0: The total amount of wall time = 118.858770 + 0: The total amount of wall time = 102.826355 Test 074 cpld_controlfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restartfrac Checking test 075 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4348,69 +4352,69 @@ 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 - 0: The total amount of wall time = 83.344414 + 0: The total amount of wall time = 79.010360 Test 075 cpld_restartfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_2threads Checking test 076 cpld_2threads results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK + Comparing phyf024.tile1.nc ............ALT CHECK......NOT OK + Comparing phyf024.tile2.nc ............ALT CHECK......NOT OK + Comparing phyf024.tile3.nc ............ALT CHECK......NOT OK + Comparing phyf024.tile4.nc ............ALT CHECK......NOT OK + Comparing phyf024.tile5.nc ............ALT CHECK......NOT OK + Comparing phyf024.tile6.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile1.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile2.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile3.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile4.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile5.nc ............ALT CHECK......NOT OK + Comparing dynf024.tile6.nc ............ALT CHECK......NOT OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - - 0: The total amount of wall time = 146.483935 - -Test 076 cpld_2threads PASS + Comparing RESTART/fv_core.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_core.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/fv_tracer.res.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/phy_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile1.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile2.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile3.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile4.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile5.nc ............ALT CHECK......NOT OK + Comparing RESTART/sfc_data.tile6.nc ............ALT CHECK......NOT OK + Comparing RESTART/MOM.res.nc ............ALT CHECK......NOT OK + Comparing RESTART/iced.2016-10-04-00000.nc ............ALT CHECK......NOT OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc ............ALT CHECK......NOT OK + + 0: The total amount of wall time = 551.337361 + +Test 076 cpld_2threads FAIL baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_decomp Checking test 077 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4460,13 +4464,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 - 0: The total amount of wall time = 114.361653 + 0: The total amount of wall time = 97.794227 Test 077 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_satmedmf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_satmedmf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_satmedmf Checking test 078 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4516,13 +4520,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 - 0: The total amount of wall time = 115.981288 + 0: The total amount of wall time = 106.625554 Test 078 cpld_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_ca Checking test 079 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4572,13 +4576,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 - 0: The total amount of wall time = 115.481967 + 0: The total amount of wall time = 101.356422 Test 079 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_control_c192 Checking test 080 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4628,13 +4632,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 - 0: The total amount of wall time = 396.694432 + 0: The total amount of wall time = 378.757253 Test 080 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart_c192 Checking test 081 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4684,13 +4688,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 - 0: The total amount of wall time = 280.858947 + 0: The total amount of wall time = 277.243365 Test 081 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_controlfrac_c192 Checking test 082 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4740,13 +4744,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 - 0: The total amount of wall time = 394.086444 + 0: The total amount of wall time = 398.475569 Test 082 cpld_controlfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restartfrac_c192 Checking test 083 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4796,13 +4800,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 - 0: The total amount of wall time = 279.835319 + 0: The total amount of wall time = 278.009753 Test 083 cpld_restartfrac_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_control_c384 Checking test 084 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4855,13 +4859,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 - 0: The total amount of wall time = 1335.914111 + 0: The total amount of wall time = 1330.180135 Test 084 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart_c384 Checking test 085 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4914,13 +4918,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 - 0: The total amount of wall time = 696.593727 + 0: The total amount of wall time = 710.514809 Test 085 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_controlfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_controlfrac_c384 Checking test 086 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4973,13 +4977,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 - 0: The total amount of wall time = 1341.172134 + 0: The total amount of wall time = 1322.315753 Test 086 cpld_controlfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_controlfrac_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restartfrac_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restartfrac_c384 Checking test 087 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5032,13 +5036,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 - 0: The total amount of wall time = 690.253844 + 0: The total amount of wall time = 704.076808 Test 087 cpld_restartfrac_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmark Checking test 088 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5091,13 +5095,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 - 0: The total amount of wall time = 865.199220 + 0: The total amount of wall time = 845.702706 Test 088 cpld_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmark +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart_bmark Checking test 089 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5150,13 +5154,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 - 0: The total amount of wall time = 462.313406 + 0: The total amount of wall time = 466.041455 Test 089 cpld_restart_bmark PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmarkfrac Checking test 090 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5209,68 +5213,72 @@ 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 - 0: The total amount of wall time = 848.480968 + 0: The total amount of wall time = 845.465865 Test 090 cpld_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmarkfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart_bmarkfrac Checking test 091 cpld_restart_bmarkfrac results .... - Comparing phyf024.tile1.nc ............MISSING file - Comparing phyf024.tile2.nc ............MISSING file - Comparing phyf024.tile3.nc ............MISSING file - Comparing phyf024.tile4.nc ............MISSING file - Comparing phyf024.tile5.nc ............MISSING file - Comparing phyf024.tile6.nc ............MISSING file - Comparing dynf024.tile1.nc ............MISSING file - Comparing dynf024.tile2.nc ............MISSING file - Comparing dynf024.tile3.nc ............MISSING file - Comparing dynf024.tile4.nc ............MISSING file - Comparing dynf024.tile5.nc ............MISSING file - Comparing dynf024.tile6.nc ............MISSING file - Comparing RESTART/coupler.res ............MISSING file - Comparing RESTART/fv_core.res.nc ............MISSING file - Comparing RESTART/fv_core.res.tile1.nc ............MISSING file - Comparing RESTART/fv_core.res.tile2.nc ............MISSING file - Comparing RESTART/fv_core.res.tile3.nc ............MISSING file - Comparing RESTART/fv_core.res.tile4.nc ............MISSING file - Comparing RESTART/fv_core.res.tile5.nc ............MISSING file - Comparing RESTART/fv_core.res.tile6.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING file - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING file - Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING file - Comparing RESTART/phy_data.tile1.nc ............MISSING file - Comparing RESTART/phy_data.tile2.nc ............MISSING file - Comparing RESTART/phy_data.tile3.nc ............MISSING file - Comparing RESTART/phy_data.tile4.nc ............MISSING file - Comparing RESTART/phy_data.tile5.nc ............MISSING file - Comparing RESTART/phy_data.tile6.nc ............MISSING file - Comparing RESTART/sfc_data.tile1.nc ............MISSING file - Comparing RESTART/sfc_data.tile2.nc ............MISSING file - Comparing RESTART/sfc_data.tile3.nc ............MISSING file - Comparing RESTART/sfc_data.tile4.nc ............MISSING file - Comparing RESTART/sfc_data.tile5.nc ............MISSING file - Comparing RESTART/sfc_data.tile6.nc ............MISSING file - Comparing RESTART/MOM.res.nc ............MISSING file - Comparing RESTART/MOM.res_1.nc ............MISSING file - Comparing RESTART/MOM.res_2.nc ............MISSING file - Comparing RESTART/MOM.res_3.nc ............MISSING file - Comparing RESTART/iced.2013-04-02-00000.nc ............MISSING file - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc ............MISSING file + Comparing phyf024.tile1.nc .........OK + Comparing phyf024.tile2.nc .........OK + Comparing phyf024.tile3.nc .........OK + Comparing phyf024.tile4.nc .........OK + Comparing phyf024.tile5.nc .........OK + Comparing phyf024.tile6.nc .........OK + Comparing dynf024.tile1.nc .........OK + Comparing dynf024.tile2.nc .........OK + Comparing dynf024.tile3.nc .........OK + Comparing dynf024.tile4.nc .........OK + Comparing dynf024.tile5.nc .........OK + Comparing dynf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 458.243612 + +Test 091 cpld_restart_bmarkfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmarkfrac_v16 Checking test 092 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5323,13 +5331,13 @@ Checking test 092 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 = 1363.272264 + 0: The total amount of wall time = 1357.153532 Test 092 cpld_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmarkfrac_v16_nsst Checking test 093 cpld_bmarkfrac_v16_nsst results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5382,13 +5390,13 @@ Checking test 093 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 = 1369.410952 + 0: The total amount of wall time = 1369.628457 Test 093 cpld_bmarkfrac_v16_nsst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_restart_bmarkfrac_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_restart_bmarkfrac_v16 Checking test 094 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5441,13 +5449,13 @@ Checking test 094 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 = 744.581609 + 0: The total amount of wall time = 726.749712 Test 094 cpld_restart_bmarkfrac_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmark_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmark_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmark_wave Checking test 095 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5503,13 +5511,13 @@ Checking test 095 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 = 1477.338296 + 0: The total amount of wall time = 1456.074391 Test 095 cpld_bmark_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmarkfrac_wave Checking test 096 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5565,13 +5573,13 @@ Checking test 096 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 = 1446.365011 + 0: The total amount of wall time = 1443.709709 Test 096 cpld_bmarkfrac_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_bmarkfrac_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_bmarkfrac_wave_v16 Checking test 097 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5626,13 +5634,13 @@ Checking test 097 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 = 975.791844 + 0: The total amount of wall time = 1001.467024 Test 097 cpld_bmarkfrac_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_control_wave Checking test 098 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5685,13 +5693,13 @@ Checking test 098 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 = 828.555013 + 0: The total amount of wall time = 824.886089 Test 098 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_debug Checking test 099 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5741,13 +5749,13 @@ Checking test 099 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 = 333.241786 + 0: The total amount of wall time = 335.201485 Test 099 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_debugfrac -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/cpld_debugfrac +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/cpld_debugfrac Checking test 100 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5797,73 +5805,73 @@ Checking test 100 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 = 326.289908 + 0: The total amount of wall time = 336.683487 Test 100 cpld_debugfrac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_control_cfsr Checking test 101 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 = 105.522289 + 0: The total amount of wall time = 105.690202 Test 101 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_restart_cfsr Checking test 102 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 = 76.388694 + 0: The total amount of wall time = 76.186833 Test 102 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_control_gefs Checking test 103 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 = 97.510630 + 0: The total amount of wall time = 98.013334 Test 103 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_bulk_cfsr Checking test 104 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 = 106.268172 + 0: The total amount of wall time = 101.667261 Test 104 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_bulk_gefs Checking test 105 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 = 99.688223 + 0: The total amount of wall time = 98.761103 Test 105 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_mx025_cfsr Checking test 106 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5872,13 +5880,13 @@ Checking test 106 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 = 403.785512 + 0: The total amount of wall time = 398.394368 Test 106 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_mx025_gefs Checking test 107 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5887,164 +5895,38 @@ Checking test 107 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 = 395.301256 + 0: The total amount of wall time = 403.823731 Test 107 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_193904/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_275314/datm_debug_cfsr Checking test 108 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 = 304.295175 + 0: The total amount of wall time = 295.785509 Test 108 datm_debug_cfsr PASS -FAILED TESTS: -Test fv3_gfsv16_ugwpv1 055 failed in run_test failed -Test cpld_restart_bmarkfrac 091 failed in run_test failed - -REGRESSION TEST FAILED -Wed Apr 7 16:16:39 CDT 2021 -Elapsed time: 02h:45m:11s. Have a nice day! +FAILED TESTS: +Test cpld_2threads 076 failed in check_result failed +Test cpld_2threads 076 failed in run_test failed -Wed Apr 7 20:27:55 CDT 2021 +REGRESSION TEST FAILED +Fri Apr 9 11:39:38 CDT 2021 +Elapsed time: 02h:53m:22s. Have a nice day! +Fri Apr 9 12:10:07 CDT 2021 Start Regression test -Compile 001 elapsed time 567 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 589 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 001 elapsed time 602 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 -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/fv3_gfsv16_ugwpv1 -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/fv3_gfsv16_ugwpv1 -Checking test 001 fv3_gfsv16_ugwpv1 results .... - Comparing phyf000.tile1.nc .........OK - Comparing phyf000.tile2.nc .........OK - Comparing phyf000.tile3.nc .........OK - Comparing phyf000.tile4.nc .........OK - Comparing phyf000.tile5.nc .........OK - Comparing phyf000.tile6.nc .........OK - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf000.tile1.nc .........OK - Comparing dynf000.tile2.nc .........OK - Comparing dynf000.tile3.nc .........OK - Comparing dynf000.tile4.nc .........OK - Comparing dynf000.tile5.nc .........OK - Comparing dynf000.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - - 0: The total amount of wall time = 178.273750 - -Test 001 fv3_gfsv16_ugwpv1 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/cpld_bmarkfrac -Checking test 002 cpld_bmarkfrac results .... - Comparing phyf024.tile1.nc .........OK - Comparing phyf024.tile2.nc .........OK - Comparing phyf024.tile3.nc .........OK - Comparing phyf024.tile4.nc .........OK - Comparing phyf024.tile5.nc .........OK - Comparing phyf024.tile6.nc .........OK - Comparing dynf024.tile1.nc .........OK - Comparing dynf024.tile2.nc .........OK - Comparing dynf024.tile3.nc .........OK - Comparing dynf024.tile4.nc .........OK - Comparing dynf024.tile5.nc .........OK - Comparing dynf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.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 = 866.624413 - -Test 002 cpld_bmarkfrac PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_bmarkfrac -working dir = /work/noaa/stmp/libin/stmp/libin/FV3_RT/rt_242309/cpld_restart_bmarkfrac -Checking test 003 cpld_restart_bmarkfrac results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/INTEL/cpld_control +working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_110216/cpld_2threads +Checking test 001 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK Comparing phyf024.tile3.nc .........OK @@ -6090,17 +5972,14 @@ Checking test 003 cpld_restart_bmarkfrac results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-02-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-02-00000.nc .........OK + 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 = 449.343036 + 0: The total amount of wall time = 134.417248 -Test 003 cpld_restart_bmarkfrac PASS +Test 001 cpld_2threads PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 21:40:33 CDT 2021 -Elapsed time: 01h:12m:38s. Have a nice day! +Fri Apr 9 12:28:59 CDT 2021 +Elapsed time: 00h:18m:53s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 96dbe105cc..0dce0f930c 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,23 +1,23 @@ -Wed Apr 7 13:28:26 UTC 2021 +Fri Apr 9 11:01:43 UTC 2021 Start Regression test -Compile 001 elapsed time 981 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 961 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 003 elapsed time 990 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 004 elapsed time 998 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 005 elapsed time 961 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 006 elapsed time 955 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 007 elapsed time 1155 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 32BIT=Y -Compile 008 elapsed time 1109 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 009 elapsed time 938 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 010 elapsed time 1022 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 011 elapsed time 1044 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 001 elapsed time 1058 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 958 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 003 elapsed time 996 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 004 elapsed time 965 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 005 elapsed time 977 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 006 elapsed time 1030 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq +Compile 007 elapsed time 1072 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 32BIT=Y +Compile 008 elapsed time 1043 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 009 elapsed time 950 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 010 elapsed time 1034 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 011 elapsed time 1116 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras Compile 012 elapsed time 609 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 013 elapsed time 583 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 32BIT=Y DEBUG=Y -Compile 014 elapsed time 546 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras DEBUG=Y +Compile 013 elapsed time 607 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 32BIT=Y DEBUG=Y +Compile 014 elapsed time 548 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-20210406/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 103.122326 +The total amount of wall time = 106.667429 Test 001 fv3_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_decomp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 103.902391 +The total amount of wall time = 103.588792 Test 002 fv3_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_2threads +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 82.781318 +The total amount of wall time = 83.313937 Test 003 fv3_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 34.960060 +The total amount of wall time = 32.502681 Test 004 fv3_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_read_inc -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_read_inc +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 65.708244 +The total amount of wall time = 64.358556 Test 005 fv3_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 238.690793 +The total amount of wall time = 290.272703 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGauss_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 54.354947 +The total amount of wall time = 56.303326 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 59.325732 +The total amount of wall time = 66.724863 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGlatlon_netcdf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGlatlon_netcdf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 50.126199 +The total amount of wall time = 53.999795 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGauss_nemsio +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 50.815682 +The total amount of wall time = 55.423293 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 121.664963 +The total amount of wall time = 130.775939 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 80.721419 +The total amount of wall time = 89.446088 Test 012 fv3_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_ca +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 83.900743 +The total amount of wall time = 90.016839 Test 013 fv3_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_lndp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 106.598866 +The total amount of wall time = 107.997345 Test 014 fv3_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_iau -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_iau +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 59.960329 +The total amount of wall time = 59.472359 Test 015 fv3_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_lheatstrg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 58.640493 +The total amount of wall time = 53.169654 Test 016 fv3_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_multigases_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_multigases_repro +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 109.269167 +The total amount of wall time = 108.260227 Test 017 fv3_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_control_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 105.113663 +The total amount of wall time = 100.783474 Test 018 fv3_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_stretched +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 329.624112 +The total amount of wall time = 344.447050 Test 019 fv3_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_stretched_nest +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 401.170016 +The total amount of wall time = 372.654007 Test 020 fv3_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_control +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 717.312970 +The total amount of wall time = 730.202012 Test 021 fv3_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 = 418.580481 +The total amount of wall time = 410.923492 Test 022 fv3_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_regional_quilt_hafs Checking test 023 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1307,13 +1307,13 @@ Checking test 023 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 704.526497 +The total amount of wall time = 711.337564 Test 023 fv3_regional_quilt_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_regional_quilt_netcdf_parallel Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1321,13 +1321,13 @@ Checking test 024 fv3_regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 695.795868 +The total amount of wall time = 700.070251 Test 024 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfdlmp Checking test 025 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1372,13 +1372,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 = 64.858445 +The total amount of wall time = 76.651511 Test 025 fv3_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_gwd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_gwd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfdlmprad_gwd Checking test 026 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1423,13 +1423,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 = 59.032226 +The total amount of wall time = 65.694553 Test 026 fv3_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_noahmp +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfdlmprad_noahmp Checking test 027 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1474,13 +1474,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 = 58.866871 +The total amount of wall time = 86.168659 Test 027 fv3_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_csawmg Checking test 028 fv3_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1525,13 +1525,13 @@ Checking test 028 fv3_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 127.050701 +The total amount of wall time = 129.688084 Test 028 fv3_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmf -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_satmedmf +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_satmedmf Checking test 029 fv3_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1576,13 +1576,13 @@ Checking test 029 fv3_satmedmf results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 59.713239 +The total amount of wall time = 78.123279 Test 029 fv3_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmfq -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_satmedmfq +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_satmedmfq Checking test 030 fv3_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1627,13 +1627,13 @@ Checking test 030 fv3_satmedmfq results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 60.482558 +The total amount of wall time = 61.835109 Test 030 fv3_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp_32bit -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmp_32bit +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfdlmp_32bit Checking test 031 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1678,13 +1678,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 = 55.864123 +The total amount of wall time = 57.410106 Test 031 fv3_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_32bit_post -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfdlmprad_32bit_post +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfdlmprad_32bit_post Checking test 032 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1733,13 +1733,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 = 108.417769 +The total amount of wall time = 103.567354 Test 032 fv3_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_cpt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_cpt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_cpt Checking test 033 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1790,13 +1790,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 = 288.807051 +The total amount of wall time = 285.453254 Test 033 fv3_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,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 = 236.485826 +The total amount of wall time = 234.396230 Test 034 fv3_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rap +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_rap Checking test 035 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1956,13 +1956,13 @@ Checking test 035 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 142.774591 +The total amount of wall time = 148.044933 Test 035 fv3_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_hrrr +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_hrrr Checking test 036 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2027,13 +2027,13 @@ Checking test 036 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 152.219202 +The total amount of wall time = 147.023352 Test 036 fv3_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_thompson Checking test 037 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2098,13 +2098,13 @@ Checking test 037 fv3_thompson results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 137.422276 +The total amount of wall time = 138.330548 Test 037 fv3_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson_no_aero +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_thompson_no_aero Checking test 038 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2169,13 +2169,13 @@ Checking test 038 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 = 141.818405 +The total amount of wall time = 140.049510 Test 038 fv3_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2240,13 +2240,13 @@ Checking test 039 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 144.264460 +The total amount of wall time = 145.705839 Test 039 fv3_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16 Checking test 040 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2323,13 +2323,13 @@ Checking test 040 fv3_gfs_v16 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 235.497468 +The total amount of wall time = 240.535951 Test 040 fv3_gfs_v16 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_restart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_restart Checking test 041 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2376,13 +2376,13 @@ Checking test 041 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 = 122.704459 +The total amount of wall time = 122.048316 Test 041 fv3_gfs_v16_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_stochy +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_stochy Checking test 042 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2447,13 +2447,13 @@ Checking test 042 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 = 103.695538 +The total amount of wall time = 107.602528 Test 042 fv3_gfs_v16_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_RRTMGP Checking test 043 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2518,13 +2518,13 @@ Checking test 043 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 = 188.749740 +The total amount of wall time = 191.741267 Test 043 fv3_gfs_v16_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_RRTMGP_c192L127 Checking test 044 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2583,13 +2583,13 @@ Checking test 044 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 = 771.237336 +The total amount of wall time = 774.573201 Test 044 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP_2thrd +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_RRTMGP_2thrd Checking test 045 fv3_gfs_v16_RRTMGP_2thrd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2654,13 +2654,13 @@ Checking test 045 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 = 284.029296 +The total amount of wall time = 287.359290 Test 045 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_csawmg +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfsv16_csawmg Checking test 046 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2705,13 +2705,13 @@ Checking test 046 fv3_gfsv16_csawmg results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 140.389992 +The total amount of wall time = 137.878764 Test 046 fv3_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_csawmgt +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfsv16_csawmgt Checking test 047 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2756,13 +2756,13 @@ Checking test 047 fv3_gfsv16_csawmgt results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 136.443818 +The total amount of wall time = 136.716174 Test 047 fv3_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gocart_clm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gocart_clm +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gocart_clm Checking test 048 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2807,13 +2807,13 @@ Checking test 048 fv3_gocart_clm results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 63.699133 +The total amount of wall time = 70.110781 Test 048 fv3_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_flake +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_flake Checking test 049 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2878,13 +2878,13 @@ Checking test 049 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 = 157.751072 +The total amount of wall time = 154.841085 Test 049 fv3_gfs_v16_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 @@ -2949,13 +2949,13 @@ Checking test 050 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 = 168.349507 +The total amount of wall time = 170.971633 Test 050 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 @@ -2970,13 +2970,13 @@ Checking test 051 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 = 309.747159 +The total amount of wall time = 305.377635 Test 051 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1 +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfsv16_ugwpv1 Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3035,13 +3035,13 @@ Checking test 052 fv3_gfsv16_ugwpv1 results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 210.489127 +The total amount of wall time = 212.490975 Test 052 fv3_gfsv16_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfsv16_ugwpv1_warmstart Checking test 053 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3100,13 +3100,13 @@ Checking test 053 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 = 212.981234 +The total amount of wall time = 211.533095 Test 053 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_ras +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_ras Checking test 054 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3171,13 +3171,13 @@ Checking test 054 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 = 138.625258 +The total amount of wall time = 143.293257 Test 054 fv3_gfs_v16_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_debug Checking test 055 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3242,13 +3242,13 @@ Checking test 055 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.639912 +The total amount of wall time = 248.560580 Test 055 fv3_gfs_v16_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 @@ -3313,13 +3313,13 @@ Checking test 056 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 = 347.441294 +The total amount of wall time = 347.182087 Test 056 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_regional_control_debug Checking test 057 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3327,13 +3327,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 -The total amount of wall time = 344.871132 +The total amount of wall time = 345.560732 Test 057 fv3_regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_control_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_control_debug Checking test 058 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3360,13 +3360,13 @@ Checking test 058 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -The total amount of wall time = 132.763758 +The total amount of wall time = 130.336136 Test 058 fv3_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_stretched_nest_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 @@ -3383,13 +3383,13 @@ Checking test 059 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -The total amount of wall time = 408.135584 +The total amount of wall time = 408.916862 Test 059 fv3_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gsd_debug Checking test 060 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3454,13 +3454,13 @@ Checking test 060 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.991513 +The total amount of wall time = 198.138986 Test 060 fv3_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gsd_diag3d_debug Checking test 061 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3525,13 +3525,13 @@ Checking test 061 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.242086 +The total amount of wall time = 240.616923 Test 061 fv3_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_thompson_debug Checking test 062 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3596,13 +3596,13 @@ Checking test 062 fv3_thompson_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 329.518556 +The total amount of wall time = 333.625487 Test 062 fv3_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/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 @@ -3667,13 +3667,13 @@ Checking test 063 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 = 315.277535 +The total amount of wall time = 314.816405 Test 063 fv3_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_rrfs_v1beta_debug Checking test 064 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3738,13 +3738,13 @@ Checking test 064 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 = 188.796211 +The total amount of wall time = 193.371222 Test 064 fv3_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3809,13 +3809,13 @@ Checking test 065 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 = 193.102034 +The total amount of wall time = 193.705074 Test 065 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3830,13 +3830,13 @@ Checking test 066 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 = 353.804479 +The total amount of wall time = 362.283673 Test 066 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfsv16_ugwpv1_debug Checking test 067 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3895,13 +3895,13 @@ Checking test 067 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 = 547.721800 +The total amount of wall time = 549.994308 Test 067 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_2352/fv3_gfs_v16_ras_debug +working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_35011/fv3_gfs_v16_ras_debug Checking test 068 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3966,11 +3966,11 @@ Checking test 068 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 = 308.592135 +The total amount of wall time = 308.636787 Test 068 fv3_gfs_v16_ras_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Apr 7 14:11:06 UTC 2021 -Elapsed time: 00h:42m:40s. Have a nice day! +Fri Apr 9 11:45:19 UTC 2021 +Elapsed time: 00h:43m:37s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index ab382a603f..9a062585a4 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,29 +1,28 @@ -Thu Apr 8 10:47:40 UTC 2021 +Fri Apr 9 11:01:49 UTC 2021 Start Regression test -Compile 001 elapsed time 2190 seconds. APP=ATM SUITES=FV3_GFS_2017 -Compile 002 elapsed time 1690 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp -Compile 003 elapsed time 1526 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -Compile 004 elapsed time 1678 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y -Compile 005 elapsed time 1816 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -Compile 006 elapsed time 2094 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp -Compile 007 elapsed time 2932 seconds. APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq -Compile 008 elapsed time 3014 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 32BIT=Y -Compile 009 elapsed time 2454 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 010 elapsed time 1842 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg -Compile 011 elapsed time 3001 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake -Compile 012 elapsed time 2740 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras -Compile 013 elapsed time 1400 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP -Compile 014 elapsed time 1121 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 32BIT=Y DEBUG=Y -Compile 015 elapsed time 412 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 2885 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 3056 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 723 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 1362 seconds. APP=DATM_NEMS -Compile 020 elapsed time 431 seconds. APP=DATM_NEMS DEBUG=Y +Compile 001 elapsed time 1557 seconds. APP=ATM SUITES=FV3_GFS_2017 +Compile 002 elapsed time 1814 seconds. APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp +Compile 003 elapsed time 1550 seconds. APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +Compile 004 elapsed time 1649 seconds. APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y +Compile 005 elapsed time 1570 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +Compile 006 elapsed time 1929 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp +Compile 008 elapsed time 2442 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 32BIT=Y +Compile 009 elapsed time 1766 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 010 elapsed time 1751 seconds. APP=ATM SUITES=FV3_GFS_v16_csawmg +Compile 011 elapsed time 1908 seconds. APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake +Compile 012 elapsed time 1916 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16b_ugwpv1,FV3_GFS_v16_ras +Compile 013 elapsed time 409 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP +Compile 014 elapsed time 533 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 32BIT=Y DEBUG=Y +Compile 015 elapsed time 456 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 2888 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 2764 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 697 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 1387 seconds. APP=DATM_NEMS +Compile 020 elapsed time 419 seconds. APP=DATM_NEMS DEBUG=Y baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_control Checking test 001 fv3_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -88,13 +87,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 = 49.854122 +[0] The total amount of wall time = 65.042572 Test 001 fv3_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_decomp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_decomp Checking test 002 fv3_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -159,13 +158,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 = 50.981900 +[0] The total amount of wall time = 65.073119 Test 002 fv3_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_2threads +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_2threads Checking test 003 fv3_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -230,13 +229,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.717021 +[0] The total amount of wall time = 69.795721 Test 003 fv3_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_restart Checking test 004 fv3_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -283,13 +282,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 = 25.631941 +[0] The total amount of wall time = 30.012657 Test 004 fv3_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_read_inc -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_read_inc +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_read_inc Checking test 005 fv3_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -354,13 +353,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 = 46.485170 +[0] The total amount of wall time = 56.531190 Test 005 fv3_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_esmf -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGauss_netcdf_esmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 +404,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 = 167.597104 +[0] The total amount of wall time = 181.153597 Test 006 fv3_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGauss_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_wrtGauss_netcdf Checking test 007 fv3_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -456,13 +455,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.952734 +[0] The total amount of wall time = 56.454055 Test 007 fv3_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_wrtGauss_netcdf_parallel Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -472,7 +471,7 @@ Checking test 008 fv3_wrtGauss_netcdf_parallel results .... Comparing atmos_4xdaily.tile6.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -507,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 -[0] The total amount of wall time = 62.070531 +[0] The total amount of wall time = 74.852849 Test 008 fv3_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGlatlon_netcdf -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGlatlon_netcdf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_wrtGlatlon_netcdf Checking test 009 fv3_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -558,13 +557,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 = 46.631273 +[0] The total amount of wall time = 56.275415 Test 009 fv3_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGauss_nemsio +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_wrtGauss_nemsio Checking test 010 fv3_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -609,13 +608,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 = 45.783156 +[0] The total amount of wall time = 55.858319 Test 010 fv3_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_wrtGauss_nemsio_c192 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_wrtGauss_nemsio_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 +659,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 = 120.386925 +[0] The total amount of wall time = 146.750242 Test 011 fv3_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stochy -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_stochy Checking test 012 fv3_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -731,13 +730,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 = 52.658803 +[0] The total amount of wall time = 67.397229 Test 012 fv3_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_ca -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_ca Checking test 013 fv3_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -802,13 +801,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 = 32.916881 +[0] The total amount of wall time = 45.452263 Test 013 fv3_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lndp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_lndp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_lndp Checking test 014 fv3_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -873,13 +872,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.990672 +[0] The total amount of wall time = 70.970678 Test 014 fv3_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_iau -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_iau +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_iau Checking test 015 fv3_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -944,13 +943,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 = 45.143343 +[0] The total amount of wall time = 56.325953 Test 015 fv3_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_lheatstrg -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_lheatstrg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_lheatstrg Checking test 016 fv3_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -995,13 +994,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.641910 +[0] The total amount of wall time = 55.723632 Test 016 fv3_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmprad Checking test 017 fv3_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1047,13 +1046,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 = 681.103904 +[0] The total amount of wall time = 1062.662797 Test 017 fv3_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_atmwav -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_atmwav +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmprad_atmwav Checking test 018 fv3_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1099,13 +1098,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 = 851.240465 +[0] The total amount of wall time = 1300.671104 Test 018 fv3_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_multigases_repro -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_multigases_repro +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_multigases_repro Checking test 019 fv3_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1176,13 +1175,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 = 116.478151 +[0] The total amount of wall time = 158.701285 Test 019 fv3_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_32bit -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_control_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_control_32bit Checking test 020 fv3_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1247,13 +1246,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 = 46.216873 +[0] The total amount of wall time = 59.146825 Test 020 fv3_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stretched +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_stretched Checking test 021 fv3_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1306,13 +1305,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 = 329.554117 +[0] The total amount of wall time = 443.750427 Test 021 fv3_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stretched_nest +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_stretched_nest Checking test 022 fv3_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,13 +1375,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 = 351.697769 +[0] The total amount of wall time = 458.175640 Test 022 fv3_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_regional_control Checking test 023 fv3_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1390,25 +1389,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 = 984.631836 +[0] The total amount of wall time = 982.995340 Test 023 fv3_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 = 534.966212 +[0] The total amount of wall time = 537.776212 Test 024 fv3_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_regional_quilt_hafs Checking test 025 fv3_regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1417,27 +1416,27 @@ Checking test 025 fv3_regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 723.576582 +[0] The total amount of wall time = 720.960000 Test 025 fv3_regional_quilt_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_regional_quilt_netcdf_parallel Checking test 026 fv3_regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 722.136587 +[0] The total amount of wall time = 728.312249 Test 026 fv3_regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmp Checking test 027 fv3_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1482,13 +1481,13 @@ Checking test 027 fv3_gfdlmp results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 52.659045 +[0] The total amount of wall time = 63.781735 Test 027 fv3_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_gwd -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_gwd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmprad_gwd Checking test 028 fv3_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1533,13 +1532,13 @@ Checking test 028 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 = 52.546740 +[0] The total amount of wall time = 63.792455 Test 028 fv3_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_noahmp -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_noahmp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmprad_noahmp Checking test 029 fv3_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1584,166 +1583,13 @@ Checking test 029 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.970861 +[0] The total amount of wall time = 64.037928 Test 029 fv3_gfdlmprad_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_csawmg -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_csawmg -Checking test 030 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 - -[0] The total amount of wall time = 130.299035 - -Test 030 fv3_csawmg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmf -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_satmedmf -Checking test 031 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 - -[0] The total amount of wall time = 56.918985 - -Test 031 fv3_satmedmf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_satmedmfq -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_satmedmfq -Checking test 032 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 - -[0] The total amount of wall time = 57.418114 - -Test 032 fv3_satmedmfq PASS - - baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmp_32bit -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmp_32bit +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmp_32bit Checking test 033 fv3_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1788,13 +1634,13 @@ Checking test 033 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 = 45.098037 +[0] The total amount of wall time = 56.126205 Test 033 fv3_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfdlmprad_32bit_post -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfdlmprad_32bit_post +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfdlmprad_32bit_post Checking test 034 fv3_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1843,13 +1689,13 @@ Checking test 034 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 = 84.011198 +[0] The total amount of wall time = 116.500197 Test 034 fv3_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_cpt -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_cpt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_cpt Checking test 035 fv3_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1900,13 +1746,13 @@ Checking test 035 fv3_cpt results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 308.975094 +[0] The total amount of wall time = 309.866456 Test 035 fv3_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gsd Checking test 036 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1995,13 +1841,13 @@ Checking test 036 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 199.647430 +[0] The total amount of wall time = 236.077631 Test 036 fv3_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rap -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rap +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2066,13 +1912,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 = 101.836108 +[0] The total amount of wall time = 121.570009 Test 037 fv3_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2137,13 +1983,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 = 100.478504 +[0] The total amount of wall time = 120.391850 Test 038 fv3_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_thompson Checking test 039 fv3_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2208,13 +2054,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 = 93.409256 +[0] The total amount of wall time = 114.922228 Test 039 fv3_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_thompson_no_aero Checking test 040 fv3_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2279,13 +2125,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 = 92.661439 +[0] The total amount of wall time = 114.675370 Test 040 fv3_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2350,13 +2196,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 = 102.761390 +[0] The total amount of wall time = 122.970180 Test 041 fv3_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16 Checking test 042 fv3_gfs_v16 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2433,13 +2279,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 = 153.690024 +[0] The total amount of wall time = 190.135527 Test 042 fv3_gfs_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_restart Checking test 043 fv3_gfs_v16_restart results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2486,13 +2332,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 = 92.488412 +[0] The total amount of wall time = 110.984631 Test 043 fv3_gfs_v16_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_stochy -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_stochy +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_stochy Checking test 044 fv3_gfs_v16_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,13 +2403,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 = 59.863804 +[0] The total amount of wall time = 75.699763 Test 044 fv3_gfs_v16_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_RRTMGP Checking test 045 fv3_gfs_v16_RRTMGP results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2628,13 +2474,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 = 191.796179 +[0] The total amount of wall time = 218.889326 Test 045 fv3_gfs_v16_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_c192L127 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP_c192L127 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_RRTMGP_c192L127 Checking test 046 fv3_gfs_v16_RRTMGP_c192L127 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -2693,13 +2539,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 = 747.534288 +[0] The total amount of wall time = 862.365694 Test 046 fv3_gfs_v16_RRTMGP_c192L127 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP_2thrd +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -2764,13 +2610,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 = 246.741865 +[0] The total amount of wall time = 245.390291 Test 047 fv3_gfs_v16_RRTMGP_2thrd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmg -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_csawmg +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfsv16_csawmg Checking test 048 fv3_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2815,13 +2661,13 @@ Checking test 048 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 = 138.387536 +[0] The total amount of wall time = 182.577682 Test 048 fv3_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_csawmgt -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_csawmgt +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfsv16_csawmgt Checking test 049 fv3_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2866,13 +2712,13 @@ Checking test 049 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 = 136.015374 +[0] The total amount of wall time = 177.494978 Test 049 fv3_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gocart_clm -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gocart_clm +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gocart_clm Checking test 050 fv3_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2917,13 +2763,13 @@ Checking test 050 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.508231 +[0] The total amount of wall time = 70.426451 Test 050 fv3_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_flake -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_flake +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_flake Checking test 051 fv3_gfs_v16_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2988,13 +2834,13 @@ Checking test 051 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 = 121.904910 +[0] The total amount of wall time = 145.516371 Test 051 fv3_gfs_v16_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -3059,13 +2905,13 @@ Checking test 052 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 = 172.416413 +[0] The total amount of wall time = 203.861332 Test 052 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -3080,13 +2926,13 @@ Checking test 053 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 = 318.336302 +[0] The total amount of wall time = 324.872648 Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfsv16_ugwpv1 Checking test 054 fv3_gfsv16_ugwpv1 results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3145,13 +2991,13 @@ Checking test 054 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 = 198.687699 +[0] The total amount of wall time = 252.734157 Test 054 fv3_gfsv16_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_warmstart -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1_warmstart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfsv16_ugwpv1_warmstart Checking test 055 fv3_gfsv16_ugwpv1_warmstart results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3210,13 +3056,13 @@ Checking test 055 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 = 199.127035 +[0] The total amount of wall time = 251.730317 Test 055 fv3_gfsv16_ugwpv1_warmstart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_ras +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_ras Checking test 056 fv3_gfs_v16_ras results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3281,13 +3127,13 @@ Checking test 056 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 = 107.939841 +[0] The total amount of wall time = 131.433691 Test 056 fv3_gfs_v16_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_debug Checking test 057 fv3_gfs_v16_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3352,13 +3198,13 @@ Checking test 057 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 = 291.050956 +[0] The total amount of wall time = 459.589498 Test 057 fv3_gfs_v16_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_RRTMGP_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_RRTMGP_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -3423,13 +3269,13 @@ Checking test 058 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 = 423.971242 +[0] The total amount of wall time = 670.859718 Test 058 fv3_gfs_v16_RRTMGP_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_regional_control_debug Checking test 059 fv3_regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -3437,13 +3283,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 -[0] The total amount of wall time = 399.723617 +[0] The total amount of wall time = 782.345923 Test 059 fv3_regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_control_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_control_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_control_debug Checking test 060 fv3_control_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -3470,13 +3316,13 @@ Checking test 060 fv3_control_debug results .... Comparing dynf006.tile5.nc .........OK Comparing dynf006.tile6.nc .........OK -[0] The total amount of wall time = 156.762478 +[0] The total amount of wall time = 278.559205 Test 060 fv3_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_stretched_nest_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_stretched_nest_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -3493,13 +3339,13 @@ Checking test 061 fv3_stretched_nest_debug results .... Comparing fv3_history.tile5.nc .........OK Comparing fv3_history.tile6.nc .........OK -[0] The total amount of wall time = 473.022403 +[0] The total amount of wall time = 903.216894 Test 061 fv3_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gsd_debug Checking test 062 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3564,13 +3410,13 @@ Checking test 062 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 = 231.613723 +[0] The total amount of wall time = 417.402807 Test 062 fv3_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gsd_diag3d_debug Checking test 063 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3635,13 +3481,13 @@ Checking test 063 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 = 294.699079 +[0] The total amount of wall time = 483.559789 Test 063 fv3_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_thompson_debug Checking test 064 fv3_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3706,13 +3552,13 @@ Checking test 064 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 = 387.720008 +[0] The total amount of wall time = 727.474437 Test 064 fv3_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/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 @@ -3777,13 +3623,13 @@ Checking test 065 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 = 374.534019 +[0] The total amount of wall time = 703.375205 Test 065 fv3_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_rrfs_v1beta_debug Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3848,13 +3694,13 @@ Checking test 066 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 = 224.599055 +[0] The total amount of wall time = 410.724038 Test 066 fv3_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3919,13 +3765,13 @@ Checking test 067 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 = 231.574104 +[0] The total amount of wall time = 411.966291 Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -3940,13 +3786,13 @@ Checking test 068 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 = 432.955861 +[0] The total amount of wall time = 452.678203 Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfsv16_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfsv16_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfsv16_ugwpv1_debug Checking test 069 fv3_gfsv16_ugwpv1_debug results .... Comparing phyf000.tile1.nc .........OK Comparing phyf000.tile2.nc .........OK @@ -4005,13 +3851,13 @@ Checking test 069 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 = 648.890415 +[0] The total amount of wall time = 1207.224462 Test 069 fv3_gfsv16_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/fv3_gfs_v16_ras_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/fv3_gfs_v16_ras_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/fv3_gfs_v16_ras_debug Checking test 070 fv3_gfs_v16_ras_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -4076,13 +3922,13 @@ Checking test 070 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 = 367.606122 +[0] The total amount of wall time = 648.920372 Test 070 fv3_gfs_v16_ras_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_control Checking test 071 cpld_control results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4132,13 +3978,13 @@ Checking test 071 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 = 101.810870 +[0] The total amount of wall time = 106.888960 Test 071 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart Checking test 072 cpld_restart results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4188,13 +4034,13 @@ Checking test 072 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 = 67.990187 +[0] The total amount of wall time = 71.508821 Test 072 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_controlfrac Checking test 073 cpld_controlfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4244,13 +4090,13 @@ Checking test 073 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 = 101.739850 +[0] The total amount of wall time = 111.347208 Test 073 cpld_controlfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restartfrac Checking test 074 cpld_restartfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4300,13 +4146,13 @@ Checking test 074 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 = 66.650159 +[0] The total amount of wall time = 71.420656 Test 074 cpld_restartfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_2threads +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_2threads Checking test 075 cpld_2threads results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4356,13 +4202,13 @@ Checking test 075 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 = 129.172403 +[0] The total amount of wall time = 130.571680 Test 075 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_decomp +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_decomp Checking test 076 cpld_decomp results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4412,13 +4258,13 @@ Checking test 076 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 = 100.802787 +[0] The total amount of wall time = 105.050826 Test 076 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_satmedmf -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_satmedmf +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_satmedmf Checking test 077 cpld_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4468,13 +4314,13 @@ Checking test 077 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 = 102.097438 +[0] The total amount of wall time = 105.063541 Test 077 cpld_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_ca -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_ca +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_ca Checking test 078 cpld_ca results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4524,13 +4370,13 @@ Checking test 078 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 = 100.904528 +[0] The total amount of wall time = 107.418435 Test 078 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_control_c192 Checking test 079 cpld_control_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4580,13 +4426,13 @@ Checking test 079 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 = 411.927740 +[0] The total amount of wall time = 423.335207 Test 079 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart_c192 Checking test 080 cpld_restart_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4636,13 +4482,13 @@ Checking test 080 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.296166 +[0] The total amount of wall time = 320.044595 Test 080 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_controlfrac_c192 Checking test 081 cpld_controlfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4692,13 +4538,13 @@ Checking test 081 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 = 407.177841 +[0] The total amount of wall time = 413.406606 Test 081 cpld_controlfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c192 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac_c192 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restartfrac_c192 Checking test 082 cpld_restartfrac_c192 results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -4748,13 +4594,13 @@ Checking test 082 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 = 308.764775 +[0] The total amount of wall time = 320.195279 Test 082 cpld_restartfrac_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_control_c384 Checking test 083 cpld_control_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4807,13 +4653,13 @@ Checking test 083 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 = 1458.504821 +[0] The total amount of wall time = 1484.932037 Test 083 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart_c384 Checking test 084 cpld_restart_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4866,13 +4712,13 @@ Checking test 084 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 = 797.256047 +[0] The total amount of wall time = 818.799240 Test 084 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_controlfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_controlfrac_c384 Checking test 085 cpld_controlfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4925,13 +4771,13 @@ Checking test 085 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 = 1452.077681 +[0] The total amount of wall time = 1481.416261 Test 085 cpld_controlfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_controlfrac_c384 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restartfrac_c384 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restartfrac_c384 Checking test 086 cpld_restartfrac_c384 results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -4984,13 +4830,13 @@ Checking test 086 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 = 794.390073 +[0] The total amount of wall time = 812.981657 Test 086 cpld_restartfrac_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmark Checking test 087 cpld_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5043,13 +4889,13 @@ Checking test 087 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 = 878.029595 +[0] The total amount of wall time = 896.098912 Test 087 cpld_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmark +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart_bmark Checking test 088 cpld_restart_bmark results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5102,13 +4948,13 @@ Checking test 088 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 = 518.443044 +[0] The total amount of wall time = 535.714677 Test 088 cpld_restart_bmark PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmarkfrac Checking test 089 cpld_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5161,13 +5007,13 @@ Checking test 089 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 = 877.408492 +[0] The total amount of wall time = 892.523479 Test 089 cpld_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmarkfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart_bmarkfrac Checking test 090 cpld_restart_bmarkfrac results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5220,13 +5066,13 @@ Checking test 090 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 = 513.224149 +[0] The total amount of wall time = 531.607448 Test 090 cpld_restart_bmarkfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmarkfrac_v16 Checking test 091 cpld_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5279,72 +5125,15 @@ Checking test 091 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.187336 +[0] The total amount of wall time = 1547.227224 Test 091 cpld_bmarkfrac_v16 PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16_nsst -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_v16_nsst -Checking test 092 cpld_bmarkfrac_v16_nsst results .... - Comparing phyf012.tile1.nc .........OK - Comparing phyf012.tile2.nc .........OK - Comparing phyf012.tile3.nc .........OK - Comparing phyf012.tile4.nc .........OK - Comparing phyf012.tile5.nc .........OK - Comparing phyf012.tile6.nc .........OK - Comparing dynf012.tile1.nc .........OK - Comparing dynf012.tile2.nc .........OK - Comparing dynf012.tile3.nc .........OK - Comparing dynf012.tile4.nc .........OK - Comparing dynf012.tile5.nc .........OK - Comparing dynf012.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.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 = 1531.926197 - -Test 092 cpld_bmarkfrac_v16_nsst PASS +Test 092 cpld_bmarkfrac_v16_nsst FAIL baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_restart_bmarkfrac_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_restart_bmarkfrac_v16 Checking test 093 cpld_restart_bmarkfrac_v16 results .... Comparing phyf012.tile1.nc .........OK Comparing phyf012.tile2.nc .........OK @@ -5397,13 +5186,13 @@ Checking test 093 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 = 898.134117 +[0] The total amount of wall time = 903.959850 Test 093 cpld_restart_bmarkfrac_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmark_wave -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmark_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmark_wave Checking test 094 cpld_bmark_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5459,13 +5248,13 @@ Checking test 094 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 = 1546.884251 +[0] The total amount of wall time = 2139.810901 Test 094 cpld_bmark_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_wave -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmarkfrac_wave Checking test 095 cpld_bmarkfrac_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5521,13 +5310,13 @@ Checking test 095 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 = 1536.845407 +[0] The total amount of wall time = 2144.522969 Test 095 cpld_bmarkfrac_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_wave_v16 -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_bmarkfrac_wave_v16 +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_bmarkfrac_wave_v16 Checking test 096 cpld_bmarkfrac_wave_v16 results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5582,13 +5371,13 @@ Checking test 096 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 = 1102.376276 +[0] The total amount of wall time = 1345.535180 Test 096 cpld_bmarkfrac_wave_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_control_wave Checking test 097 cpld_control_wave results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -5641,13 +5430,13 @@ Checking test 097 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 = 827.745133 +[0] The total amount of wall time = 1308.301458 Test 097 cpld_control_wave PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_debug -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_debug +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_debug Checking test 098 cpld_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5697,13 +5486,13 @@ Checking test 098 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 = 327.210515 +[0] The total amount of wall time = 339.782163 Test 098 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_debugfrac -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/cpld_debugfrac +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/cpld_debugfrac Checking test 099 cpld_debugfrac results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -5753,73 +5542,73 @@ Checking test 099 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 = 326.505976 +[0] The total amount of wall time = 338.631608 Test 099 cpld_debugfrac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_control_cfsr Checking test 100 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 = 106.160069 +[0] The total amount of wall time = 116.706463 Test 100 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_restart_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_restart_cfsr Checking test 101 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 = 76.632310 +[0] The total amount of wall time = 83.030480 Test 101 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_control_gefs Checking test 102 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 = 100.368966 +[0] The total amount of wall time = 104.875984 Test 102 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_bulk_cfsr Checking test 103 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 = 102.745716 +[0] The total amount of wall time = 107.556840 Test 103 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_bulk_gefs Checking test 104 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.178060 +[0] The total amount of wall time = 104.447279 Test 104 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_mx025_cfsr Checking test 105 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5828,13 +5617,13 @@ Checking test 105 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.750361 +[0] The total amount of wall time = 428.991844 Test 105 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_mx025_gefs Checking test 106 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -5843,23 +5632,94 @@ Checking test 106 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 = 398.217690 +[0] The total amount of wall time = 429.480481 Test 106 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Bin.Li/FV3_RT/rt_71995/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_90010/datm_debug_cfsr Checking test 107 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 = 311.506835 +[0] The total amount of wall time = 330.590115 Test 107 datm_debug_cfsr PASS +FAILED TESTS: +Test cpld_bmarkfrac_v16_nsst 092 failed failed +Test cpld_bmarkfrac_v16_nsst 092 failed in run_test failed + +REGRESSION TEST FAILED +Fri Apr 9 14:07:41 UTC 2021 +Elapsed time: 03h:05m:54s. Have a nice day! + +Fri Apr 9 15:07:58 UTC 2021 +Start Regression test + +Compile 001 elapsed time 2869 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 + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210406/cpld_bmarkfrac_v16_nsst +working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_113255/cpld_bmarkfrac_v16_nsst +Checking test 001 cpld_bmarkfrac_v16_nsst results .... + Comparing phyf012.tile1.nc .........OK + Comparing phyf012.tile2.nc .........OK + Comparing phyf012.tile3.nc .........OK + Comparing phyf012.tile4.nc .........OK + Comparing phyf012.tile5.nc .........OK + Comparing phyf012.tile6.nc .........OK + Comparing dynf012.tile1.nc .........OK + Comparing dynf012.tile2.nc .........OK + Comparing dynf012.tile3.nc .........OK + Comparing dynf012.tile4.nc .........OK + Comparing dynf012.tile5.nc .........OK + Comparing dynf012.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.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 = 1548.206099 + +Test 001 cpld_bmarkfrac_v16_nsst PASS + REGRESSION TEST WAS SUCCESSFUL -Thu Apr 8 14:57:01 UTC 2021 -Elapsed time: 04h:09m:22s. Have a nice day! +Fri Apr 9 16:57:07 UTC 2021 +Elapsed time: 01h:49m:11s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index ff76688daa..cbb6ea60ab 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -56,7 +56,7 @@ hostname set +x if [[ $MACHINE_ID == macosx.* ]] || [[ $MACHINE_ID == linux.* ]]; then - source $PATHTR/modulefiles/${MACHINE_ID}/fv3 + source $PATHTR/modulefiles/ufs_${MACHINE_ID} else if [[ $MACHINE_ID == wcoss2 ]]; then source /apps/prod/lmodules/startLmod @@ -66,10 +66,10 @@ else source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh fi # Load fv3 module - module use $PATHTR/modulefiles/${MACHINE_ID} - modulefile="fv3" + module use $PATHTR/modulefiles + modulefile="ufs_${MACHINE_ID}" if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - [[ -f $PATHTR/modulefiles/${MACHINE_ID}/fv3_debug ]] && modulefile="fv3_debug" + [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" fi module load $modulefile module list @@ -175,9 +175,9 @@ bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe if [[ "${MAKE_OPT}" == "DEBUG=Y" ]]; then - cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3_debug ${PATHTR}/tests/modules.${BUILD_NAME} + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} else - cp ${PATHTR}/modulefiles/${MACHINE_ID}/fv3 ${PATHTR}/tests/modules.${BUILD_NAME} + cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} fi if [ $clean_after = YES ] ; then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index cba4c74880..d2b38e16d9 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -478,7 +478,6 @@ export DATM=false export DAYS="1" export FHMAX="24" -export FDIAG="6" export WLCLK=30 # default atm/ocn/ice resolution @@ -534,7 +533,7 @@ export RUNTYPE='startup' # to run frac_grid, set both frac_grid and FRAC_GRID_INPUTs to .T. export FRAC_GRID='.F.' export FRAC_GRID_INPUT='.T.' -export SUITE_NAME="FV3_GFS_2017_coupled" +export CCPP_SUITE="FV3_GFS_2017_coupled" export INPUT_NML=input.mom6_ccpp.nml.IN export FIELD_TABLE="field_table" export DIAG_TABLE="diag_table_template" diff --git a/tests/parm/input.benchmark_ccpp.nml.IN b/tests/parm/input.benchmark_ccpp.nml.IN index 4d3e4f473d..4ffdde1ffd 100644 --- a/tests/parm/input.benchmark_ccpp.nml.IN +++ b/tests/parm/input.benchmark_ccpp.nml.IN @@ -12,12 +12,12 @@ blocksize = 32 chksum_debug = .false. dycore_only = .false. - fdiag = 6 - fhmax = 840 - fhout = 6 - fhmaxhf = 0 - fhouthf = -1 - ccpp_suite = '@[SUITE_NAME]' + fdiag = @[FDIAG] + fhmax = @[FHMAX] + fhout = @[NFHOUT] + fhmaxhf = @[NFHMAX_HF] + fhouthf = @[NFHOUT_HF] + ccpp_suite = @[CCPP_SUITE] / diff --git a/tests/parm/input.benchmark_v16.nml.IN b/tests/parm/input.benchmark_v16.nml.IN index 7ba42541de..190171b0cb 100644 --- a/tests/parm/input.benchmark_v16.nml.IN +++ b/tests/parm/input.benchmark_v16.nml.IN @@ -12,12 +12,12 @@ blocksize = 32 chksum_debug = .false. dycore_only = .false. - fdiag = 6 - fhmax = 840 - fhout = 6 - fhmaxhf = 0 - fhouthf = -1 - ccpp_suite = '@[SUITE_NAME]' + fdiag = @[FDIAG] + fhmax = @[FHMAX] + fhout = @[NFHOUT] + fhmaxhf = @[NFHMAX_HF] + fhouthf = @[NFHOUT_HF] + ccpp_suite = @[CCPP_SUITE] / diff --git a/tests/parm/input.mom6_ccpp.nml.IN b/tests/parm/input.mom6_ccpp.nml.IN index 0fc5f52233..ec4acdd704 100644 --- a/tests/parm/input.mom6_ccpp.nml.IN +++ b/tests/parm/input.mom6_ccpp.nml.IN @@ -13,8 +13,10 @@ dycore_only = .false. fdiag = @[FDIAG] fhmax = @[FHMAX] + fhout = @[NFHOUT] fhmaxhf = @[NFHMAX_HF] - ccpp_suite = '@[SUITE_NAME]' + fhouthf = @[NFHOUT_HF] + ccpp_suite = @[CCPP_SUITE] / &diag_manager_nml diff --git a/tests/parm/med_modelio.nml b/tests/parm/med_modelio.nml deleted file mode 100644 index 959488b191..0000000000 --- a/tests/parm/med_modelio.nml +++ /dev/null @@ -1,8 +0,0 @@ -&pio_inparm - pio_netcdf_format = "64bit_offset" - pio_numiotasks = -99 - pio_rearranger = 1 - pio_root = 1 - pio_stride = 36 - pio_typename = "netcdf" -/ diff --git a/tests/parm/pio_in b/tests/parm/pio_in deleted file mode 100644 index 0282ee8721..0000000000 --- a/tests/parm/pio_in +++ /dev/null @@ -1,34 +0,0 @@ -&papi_inparm - papi_ctr1_str = "PAPI_FP_OPS" - papi_ctr2_str = "PAPI_NO_CTR" - papi_ctr3_str = "PAPI_NO_CTR" - papi_ctr4_str = "PAPI_NO_CTR" -/ -&pio_default_inparm - pio_async_interface = .false. - pio_blocksize = -1 - pio_buffer_size_limit = -1 - pio_debug_level = 0 - pio_rearr_comm_enable_hs_comp2io = .true. - pio_rearr_comm_enable_hs_io2comp = .false. - pio_rearr_comm_enable_isend_comp2io = .false. - pio_rearr_comm_enable_isend_io2comp = .true. - pio_rearr_comm_fcd = "2denable" - pio_rearr_comm_max_pend_req_comp2io = 0 - pio_rearr_comm_max_pend_req_io2comp = 64 - pio_rearr_comm_type = "p2p" -/ -&prof_inparm - profile_add_detail = .false. - profile_barrier = .false. - profile_depth_limit = 4 - profile_detail_limit = 2 - profile_disable = .false. - profile_global_stats = .true. - profile_outpe_num = 1 - profile_outpe_stride = 0 - profile_ovhd_measurement = .false. - profile_papi_enable = .false. - profile_single_file = .false. - profile_timer = 4 -/ diff --git a/tests/rt.sh b/tests/rt.sh index 23dd21fb6f..22c77ac632 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -292,10 +292,10 @@ elif [[ $MACHINE_ID = jet.* ]]; then QUEUE=batch COMPILE_QUEUE=batch - ACCNR=hfv3gfs + ACCNR=h-nems PARTITION=xjet - DISKNM=/lfs4/HFIP/hfv3gfs/emc.nemspara/RT - dprefix=/lfs4/HFIP/hfv3gfs/$USER + DISKNM=/lfs4/HFIP/h-nems/emc.nemspara/RT + dprefix=/lfs4/HFIP/h-nems/$USER STMP=$dprefix/RT_BASELINE PTMP=$dprefix/RT_RUNDIRS diff --git a/tests/run_test.sh b/tests/run_test.sh index 0d6010de23..1f7cc05806 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -78,6 +78,7 @@ cp ${PATHRT}/fv3_${COMPILE_NR}.exe fv3.exe # modulefile for FV3 prerequisites: cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 +cp ${PATHTR}/modulefiles/ufs_common* . # Get the shell file that loads the "module" command and purges modules: cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh @@ -107,8 +108,6 @@ if [[ $DATM = 'true' ]] || [[ $S2S = 'true' ]]; then edit_data_table < ${PATHRT}/parm/data_table_template > data_table # CMEPS cp ${PATHRT}/parm/fd_nems.yaml fd_nems.yaml - cp ${PATHRT}/parm/pio_in pio_in - cp ${PATHRT}/parm/med_modelio.nml med_modelio.nml fi if [[ $DATM = 'true' ]]; then cp ${PATHRT}/parm/datm_data_table.IN datm_data_table diff --git a/tests/tests/cpld_bmark b/tests/tests/cpld_bmark index 48990102db..8969cebd97 100644 --- a/tests/tests/cpld_bmark +++ b/tests/tests/cpld_bmark @@ -134,6 +134,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_35d b/tests/tests/cpld_bmark_35d index 1a952f79ad..7e941ffb13 100644 --- a/tests/tests/cpld_bmark_35d +++ b/tests/tests/cpld_bmark_35d @@ -83,7 +83,7 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_wave b/tests/tests/cpld_bmark_wave index ea5aff0038..aa3e6e1a0d 100644 --- a/tests/tests/cpld_bmark_wave +++ b/tests/tests/cpld_bmark_wave @@ -141,6 +141,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmark_wave_35d b/tests/tests/cpld_bmark_wave_35d index 5990dba60d..4562538179 100644 --- a/tests/tests/cpld_bmark_wave_35d +++ b/tests/tests/cpld_bmark_wave_35d @@ -102,7 +102,7 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac b/tests/tests/cpld_bmarkfrac index b4d857cba0..eaa5e88002 100644 --- a/tests/tests/cpld_bmarkfrac +++ b/tests/tests/cpld_bmarkfrac @@ -137,6 +137,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16 b/tests/tests/cpld_bmarkfrac_v16 index 20aac3cead..138ea75c28 100644 --- a/tests/tests/cpld_bmarkfrac_v16 +++ b/tests/tests/cpld_bmarkfrac_v16 @@ -144,6 +144,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_coupled" +export CCPP_SUITE="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16_35d b/tests/tests/cpld_bmarkfrac_v16_35d index 413504e17e..7abf2fa3fe 100644 --- a/tests/tests/cpld_bmarkfrac_v16_35d +++ b/tests/tests/cpld_bmarkfrac_v16_35d @@ -91,6 +91,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_coupled" +export CCPP_SUITE="FV3_GFS_v16_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_v16_nsst b/tests/tests/cpld_bmarkfrac_v16_nsst index cbf246706e..fdbe306d2f 100644 --- a/tests/tests/cpld_bmarkfrac_v16_nsst +++ b/tests/tests/cpld_bmarkfrac_v16_nsst @@ -145,6 +145,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_couplednsst" +export CCPP_SUITE="FV3_GFS_v16_couplednsst" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave b/tests/tests/cpld_bmarkfrac_wave index 1b0b44f201..ced0130784 100644 --- a/tests/tests/cpld_bmarkfrac_wave +++ b/tests/tests/cpld_bmarkfrac_wave @@ -144,6 +144,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_35d b/tests/tests/cpld_bmarkfrac_wave_35d index 86c0636497..a25a77ae14 100644 --- a/tests/tests/cpld_bmarkfrac_wave_35d +++ b/tests/tests/cpld_bmarkfrac_wave_35d @@ -105,7 +105,7 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16 b/tests/tests/cpld_bmarkfrac_wave_v16 index 080555f979..2192c6ef2e 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16 +++ b/tests/tests/cpld_bmarkfrac_wave_v16 @@ -153,5 +153,5 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_coupled" +export CCPP_SUITE="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_bmarkfrac_wave_v16_35d b/tests/tests/cpld_bmarkfrac_wave_v16_35d index 593ad312be..55110fd8f3 100644 --- a/tests/tests/cpld_bmarkfrac_wave_v16_35d +++ b/tests/tests/cpld_bmarkfrac_wave_v16_35d @@ -121,6 +121,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_coupled" +export CCPP_SUITE="FV3_GFS_v16_coupled" export RT35D='.T.' export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmark b/tests/tests/cpld_restart_bmark index bde73202ec..6374d52db0 100644 --- a/tests/tests/cpld_restart_bmark +++ b/tests/tests/cpld_restart_bmark @@ -149,6 +149,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac b/tests/tests/cpld_restart_bmarkfrac index de460c2c21..625696f7a0 100644 --- a/tests/tests/cpld_restart_bmarkfrac +++ b/tests/tests/cpld_restart_bmarkfrac @@ -152,6 +152,6 @@ export INPUT_NML=input.benchmark_ccpp.nml.IN export FIELD_TABLE="field_table.gfdlmp" export DIAG_TABLE="diag_table_bmark_template" -export SUITE_NAME="FV3_GFS_v15p2_coupled" +export CCPP_SUITE="FV3_GFS_v15p2_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_restart_bmarkfrac_v16 b/tests/tests/cpld_restart_bmarkfrac_v16 index f969bc447a..1fa33d9d14 100644 --- a/tests/tests/cpld_restart_bmarkfrac_v16 +++ b/tests/tests/cpld_restart_bmarkfrac_v16 @@ -160,6 +160,6 @@ export INPUT_NML=input.benchmark_v16.nml.IN export FIELD_TABLE="field_table_gfsv16" export DIAG_TABLE="diag_table_bmark_v16_template" -export SUITE_NAME="FV3_GFS_v16_coupled" +export CCPP_SUITE="FV3_GFS_v16_coupled" export FV3_RUN=cpld_bmark_run.IN diff --git a/tests/tests/cpld_satmedmf b/tests/tests/cpld_satmedmf index ec0bdd0f80..eeebf68bb7 100644 --- a/tests/tests/cpld_satmedmf +++ b/tests/tests/cpld_satmedmf @@ -61,6 +61,6 @@ export SATMEDMF='.true.' export HYBEDMF='.false.' export FIELD_TABLE='field_table_satmedmf' -export SUITE_NAME='FV3_GFS_2017_satmedmf_coupled' +export CCPP_SUITE='FV3_GFS_2017_satmedmf_coupled' export FV3_RUN=cpld_control_run.IN diff --git a/tests/utest b/tests/utest index 28a2a9b8d5..158773aa3f 100755 --- a/tests/utest +++ b/tests/utest @@ -428,16 +428,13 @@ fi # utility functions in rt_utils need to be able to see variables in utest source rt_utils.sh +source $PATHTR/NEMS/src/conf/module-setup.sh.inc # Machine-dependent libraries, modules, variables, etc. if [[ $MACHINE_ID = hera.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - - export PATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin:$PATH - export PYTHONPATH=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/lib/python2.7/site-packages - ECFLOW_START=/scratch2/NCEPDEV/fv3-cam/Dusan.Jovic/ecflow/bin/ecflow_start.sh + export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) PARTITION= @@ -453,15 +450,11 @@ if [[ $MACHINE_ID = hera.* ]]; then elif [[ $MACHINE_ID = orion.* ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 module load gcc/8.3.0 - export PATH=/work/noaa/fv3-cam/djovic/ecflow/bin:$PATH - export PYTHONPATH=/work/noaa/fv3-cam/djovic/ecflow/lib/python2.7/site-packages - ECFLOW_START=/work/noaa/fv3-cam/djovic/ecflow/bin/ecflow_start.sh + export PATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin:$PATH + export PYTHONPATH=/work/noaa/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages + ECFLOW_START=/work/noaa/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh ECF_PORT=$(( $(id -u) + 1500 )) QUEUE=batch COMPILE_QUEUE=batch @@ -477,17 +470,12 @@ elif [[ $MACHINE_ID = orion.* ]]; then elif [[ $MACHINE_ID = wcoss_dell_p3 ]]; then - source $PATHTR/NEMS/src/conf/module-setup.sh.inc module load lsf/10.1 - - module use $PATHTR/modulefiles/${MACHINE_ID} - module load fv3 - - module load python/2.7.14 + module load python/3.6.3 module load ips/18.0.1.163 - module load ecflow/4.7.1 - ECFLOW_START=${ECF_ROOT}/intel/bin/ecflow_start.sh + module load ecflow/4.17.0 + ECFLOW_START=${ECF_ROOT}/bin/ecflow_start.sh ECF_PORT=$(grep $USER /usrx/local/sys/ecflow/assigned_ports.txt | awk '{print $2}') DISKNM=/gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT From d98e97c3e6c8accef1b9ba5089f5f3093fdcaae7 Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:11:55 -0400 Subject: [PATCH 16/29] debug this again... --- .github/workflows/build_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 59c040a4b9..f503acc9e0 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -30,14 +30,14 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} - git clone -q ${{ github.event.pull_request.head.repo.git_url }} . - git checkout -q $head_sha - git submodule -q update --init --recursive + git clone ${{ github.event.pull_request.head.repo.git_url }} . + git checkout $head_sha + git submodule update --init --recursive cd ${GITHUB_WORKSPACE}/tests/ci pr_number=$(curl -sS -H "$app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) pr_uid=${{ github.event.pull_request.head.owner.login }} - comment_body="$(./repo-check.sh $pr_uid 2>/dev/null)" + comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then echo "Repos are not up to date" From 14e504dac63c3fa87cf39b04efb8e834e916dc51 Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:17:46 -0400 Subject: [PATCH 17/29] debug again --- .github/workflows/build_test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index f503acc9e0..66783360d0 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -18,6 +18,11 @@ jobs: current: ${{ steps.check.outputs.current }} steps: + - name: print github env + env: + GITHUB_CONTEXT: ${{toJson(github)}} + run: echo "$GITHUB_CONTEXT" + - name: Check id: check run: | @@ -37,6 +42,7 @@ jobs: cd ${GITHUB_WORKSPACE}/tests/ci pr_number=$(curl -sS -H "$app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) pr_uid=${{ github.event.pull_request.head.owner.login }} + echo ${{ github.event.pull_request.head.owner.login }} comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then From 229f65962df62b3b3806c56de66e281689b137a7 Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:24:07 -0400 Subject: [PATCH 18/29] debug continues --- .github/workflows/build_test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 66783360d0..5ea3ae2a4f 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -35,14 +35,17 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} + pr_uid=${{ github.event.pull_request.head.owner.login }} + echo "pr_uid is $pr_uid" git clone ${{ github.event.pull_request.head.repo.git_url }} . git checkout $head_sha git submodule update --init --recursive cd ${GITHUB_WORKSPACE}/tests/ci pr_number=$(curl -sS -H "$app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) + echo "pr_number is $pr_number" pr_uid=${{ github.event.pull_request.head.owner.login }} - echo ${{ github.event.pull_request.head.owner.login }} + echo "pr_uid is $pr_uid" comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then From bd20bceae2a7b29ffbb3d4e5b49f48cee9da6e1b Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:40:20 -0400 Subject: [PATCH 19/29] missed repo field --- .github/workflows/build_test.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5ea3ae2a4f..20a07cb7d5 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -35,17 +35,13 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} - pr_uid=${{ github.event.pull_request.head.owner.login }} - echo "pr_uid is $pr_uid" git clone ${{ github.event.pull_request.head.repo.git_url }} . git checkout $head_sha git submodule update --init --recursive cd ${GITHUB_WORKSPACE}/tests/ci pr_number=$(curl -sS -H "$app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) - echo "pr_number is $pr_number" - pr_uid=${{ github.event.pull_request.head.owner.login }} - echo "pr_uid is $pr_uid" + pr_uid=${{ github.event.pull_request.head.repo.owner.login }} comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then From c3d7f74614f263a2540072dcf031fece70aa9db5 Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:45:52 -0400 Subject: [PATCH 20/29] remove debug related texts --- .github/workflows/build_test.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 20a07cb7d5..34f14179a1 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -18,11 +18,6 @@ jobs: current: ${{ steps.check.outputs.current }} steps: - - name: print github env - env: - GITHUB_CONTEXT: ${{toJson(github)}} - run: echo "$GITHUB_CONTEXT" - - name: Check id: check run: | @@ -35,14 +30,14 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} - git clone ${{ github.event.pull_request.head.repo.git_url }} . - git checkout $head_sha - git submodule update --init --recursive + git clone -q ${{ github.event.pull_request.head.repo.git_url }} . + git checkout -q $head_sha + git submodule -q update --init --recursive cd ${GITHUB_WORKSPACE}/tests/ci pr_number=$(curl -sS -H "$app" https://api.github.com/repos/MinsukJi-NOAA/ufs-weather-model/pulls | ./json_helper.py get_pr $head_sha) pr_uid=${{ github.event.pull_request.head.repo.owner.login }} - comment_body="$(./repo-check.sh $pr_uid)" + comment_body="$(./repo-check.sh $pr_uid 2>/dev/null)" if [[ -n $comment_body ]]; then echo "Repos are not up to date" From 1d5faf423ebbe9d43adc896ca4a8f05d61f5fa17 Mon Sep 17 00:00:00 2001 From: minsukji Date: Fri, 9 Apr 2021 23:49:13 -0400 Subject: [PATCH 21/29] remove -x flag. run-ci --- tests/ci/repo-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/repo-check.sh b/tests/ci/repo-check.sh index 22aadcd70b..c3ee08dfa1 100755 --- a/tests/ci/repo-check.sh +++ b/tests/ci/repo-check.sh @@ -1,5 +1,5 @@ #!/bin/bash -set -eux +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) From 67c646b5d1cdbd82c9aaf0c8eb5acbdbb33fce3d Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 17:42:23 -0400 Subject: [PATCH 22/29] reduce sleep time --- tests/ci/build_status_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/build_status_check.py b/tests/ci/build_status_check.py index a18144ef15..b607073270 100755 --- a/tests/ci/build_status_check.py +++ b/tests/ci/build_status_check.py @@ -21,7 +21,7 @@ def update_url_data(response, job_name): def main(): - time.sleep(90) # give enough time for jobs to start! + time.sleep(60) # give enough time for jobs to start! url = sys.stdin.read() job_name = sys.argv[1] token = os.environ.get('AUTH') From 3a5b34d4d2c956feb82124c47dc3801ea075fbe9 Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 17:46:03 -0400 Subject: [PATCH 23/29] diag --- .github/workflows/build_test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 35e596cc39..dec9072795 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -31,15 +31,15 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} - git clone -q ${{ github.event.pull_request.head.repo.git_url }} . - git checkout -q $head_sha - git submodule -q update --init --recursive + git clone ${{ github.event.pull_request.head.repo.git_url }} . + git checkout $head_sha + git submodule update --init --recursive cd $GITHUB_WORKSPACE/tests/ci url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/pulls pr_number=$(curl -sS -H "$app" $url | ./json_helper.py get_pr $head_sha) pr_uid=${{ github.event.pull_request.head.owner.login }} - comment_body="$(./repo-check.sh $pr_uid 2>/dev/null)" + comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then echo "Repos are not up to date" From dde62fe95c61f9e927e118069b13d90059a4102a Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 17:49:08 -0400 Subject: [PATCH 24/29] diag2 --- .github/workflows/build_test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index dec9072795..99aedde5e0 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -31,6 +31,7 @@ jobs: echo "This is a pull_request event. Check." head_sha=${{ github.event.pull_request.head.sha }} + echo "head_sha is $head_sha" git clone ${{ github.event.pull_request.head.repo.git_url }} . git checkout $head_sha git submodule update --init --recursive @@ -38,7 +39,9 @@ jobs: cd $GITHUB_WORKSPACE/tests/ci url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/pulls pr_number=$(curl -sS -H "$app" $url | ./json_helper.py get_pr $head_sha) + echo "pr_number is $pr_number" pr_uid=${{ github.event.pull_request.head.owner.login }} + echo "pr_uid is $pr_uid" comment_body="$(./repo-check.sh $pr_uid)" if [[ -n $comment_body ]]; then From f34edc6de9faae65f54bb8195c93befb8bbec45f Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 17:57:59 -0400 Subject: [PATCH 25/29] Fix pr_uid --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 99aedde5e0..b8bbcf095b 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -40,7 +40,7 @@ jobs: url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY/pulls pr_number=$(curl -sS -H "$app" $url | ./json_helper.py get_pr $head_sha) echo "pr_number is $pr_number" - pr_uid=${{ github.event.pull_request.head.owner.login }} + pr_uid=${{ github.event.pull_request.head.repo.owner.login }} echo "pr_uid is $pr_uid" comment_body="$(./repo-check.sh $pr_uid)" From d35b3cf8a34174daf750f18b85d0d1d3d81330a0 Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 18:02:23 -0400 Subject: [PATCH 26/29] diag again --- .github/workflows/aux.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index 2d71796b11..b1de11b885 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -33,12 +33,14 @@ jobs: - name: Notify the PR author run: | comment=$(cat comment_file) + echo "comment is $comment" url=$GITHUB_API_URL/repos/$GITHUB_REPOSITORY echo "url is $url" head_sha=${{ github.event.workflow_run.head_sha }} echo "head_sha is $head_sha" cd $GITHUB_WORKSPACE/tests/ci pr_number=$(curl -sS -H "$app" $url/pulls | ./json_helper.py get_pr $head_sha) + echo "pr_number is $pr_number" if [[ -n $comment && -n $pr_number ]]; then curl -sS -X POST -H "$app" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" $url/issues/$pr_number/comments -d '{"body": "'"${comment}"'"}' fi From a65dde93d74a449ee405c8153d5dbf53227ffbc3 Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 18:09:41 -0400 Subject: [PATCH 27/29] still debugging --- .github/workflows/build_test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index b8bbcf095b..021c8475c4 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -43,6 +43,7 @@ jobs: pr_uid=${{ github.event.pull_request.head.repo.owner.login }} echo "pr_uid is $pr_uid" comment_body="$(./repo-check.sh $pr_uid)" + echo "comment_body is $comment_body" if [[ -n $comment_body ]]; then echo "Repos are not up to date" From 5a1124e615f1fce3c78321ccc0aacd4ab6667231 Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 18:17:39 -0400 Subject: [PATCH 28/29] lets see if this works --- tests/ci/build_status_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/build_status_check.py b/tests/ci/build_status_check.py index b607073270..df139c0e3e 100755 --- a/tests/ci/build_status_check.py +++ b/tests/ci/build_status_check.py @@ -21,7 +21,7 @@ def update_url_data(response, job_name): def main(): - time.sleep(60) # give enough time for jobs to start! + time.sleep(80) # give enough time for jobs to start! url = sys.stdin.read() job_name = sys.argv[1] token = os.environ.get('AUTH') From 1a6ba8aafd19a6adf84027625de814544f7a07bb Mon Sep 17 00:00:00 2001 From: minsukji Date: Mon, 12 Apr 2021 18:24:21 -0400 Subject: [PATCH 29/29] use context as main yml key --- .github/workflows/build_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 021c8475c4..34d1367182 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -61,7 +61,7 @@ jobs: uses: actions/cache@v2 with: path: comment_file - key: comment-$GITHUB_RUN_ID + key: comment-${{ github.run_id }} runcheck: name: Check if run-ci is requested