diff --git a/CMakeModules b/CMakeModules index 18658695a0..cedeb2c64e 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit 18658695a0b87ad6fcf33982b9cb13e6d7373911 +Subproject commit cedeb2c64e55d3445ac4e4847ea7c4fa3220c3dd diff --git a/FV3 b/FV3 index 799b157e90..b811a6c9e9 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 799b157e905519a672ab5dbc18492174b4a34c68 +Subproject commit b811a6c9e982e0b9e6efea51acf89138b575fc50 diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 03399d7830..dbc619c5f1 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -315,23 +315,23 @@ can be identified via variables ``INPUT_NML``, ``NEMS_CONFIGURE`` and ``FV3_RUN` for example, by trying ``grep -n INPUT_NML *`` inside the tests/ and tests/tests/ directories. -.. _UsingUnitTest: +.. _UsingOpnReqTest: --------------------------- -Using the unit test script --------------------------- -The unit test script ``utest`` in the tests/ directory can also be used to run -tests. Given the name of a test, ``utest`` carries out a suite of test cases. +--------------------------------------------- +Using the operational requirement test script +--------------------------------------------- +The operational requirement test script ``opnReqTest`` in the tests/ directory can also be used to run +tests. Given the name of a test, ``opnReqTest`` carries out a suite of test cases. Each test case addresses an aspect of the requirements new implementations -should satisfy, which are shown in :numref:`Table %s `. -For the following discussions on utest, the user should note the distinction between +should satisfy, which are shown in :numref:`Table %s `. +For the following discussions on opnReqTest, the user should note the distinction between 'test name' and 'test case': examples of test name are ``control``, ``cpld_control`` and ``regional_control`` which are all found in the /tests/tests/ directory, whereas test case refers to any one of ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ``dbg``. -.. _ImplementationRequirement: +.. _OperationalRequirement: -.. table:: *Implementation requirements* +.. table:: *Operational requirements* +----------+------------------------------------------------------------------------+ | **Case** | **Description** | @@ -349,47 +349,40 @@ test case refers to any one of ``thr``, ``mpi``, ``dcp``, ``rst``, ``bit`` and ` | dbg | Model can be compiled and run to completion in debug mode | +----------+------------------------------------------------------------------------+ -The unit test uses the same testing framework used by the regression +The operational requirement test uses the same testing framework used by the regression test, and therefore it is recommened that the user first read :numref:`Section %s `. All the files in the subdirectories shown in :numref:`Table %s ` are relavant to the -unit test except that the ``utest`` script replaces ``rt.sh`` and the -``utest.bld`` file replaces ``rt.conf``. The /tests/utests/ directory contains -utest-specific lower-level scripts used to set up run configurations. +operational requirement test except that the ``opnReqTest`` script replaces ``rt.sh``. +The /tests/opnReqTests/ directory contains +opnReqTest-specific lower-level scripts used to set up run configurations. On `Tier-1 platforms `_, tests can -be run by first modifying the PSV file ``utest.bld`` to specify the build options -and then invoking +be run by invoking .. code-block:: console - ./utest -n + ./opnReqTest -n -For example, including in the ``utest.bld`` file the following line - -.. code-block:: console - - control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON - -and then executing ``./utest -n control`` performs all six test cases -listed in :numref:`Table %s ` for ``control`` -test. At the end of the run, a log file ``UnitTests_..log`` +For example, ``./opnReqTest -n control`` performs all six test cases +listed in :numref:`Table %s ` for ``control`` +test. At the end of the run, a log file ``OpnReqTests_..log`` is generated in tests/ directory, which informs the user whether each test case passed or failed. The user can choose to run a specific test case by invoking .. code-block:: console - ./utest -n -c + ./opnReqTest -n -c where ```` is one or more comma-separated values selected from ``thr``, ``mpi``, ``dcp``, ``rst``, -``bit``, ``dbg``. For example, ``./utest -n control -c thr,rst`` runs the +``bit``, ``dbg``. For example, ``./opnReqTest -n control -c thr,rst`` runs the ``control`` test and checks the reproducibility of threading and restart. -The user can see different command line options available to ``utest`` by -executing ``./utest -h``; frequently used options are ``-e`` to use the ecFlow +The user can see different command line options available to ``opnReqTest`` by +executing ``./opnReqTest -h``; frequently used options are ``-e`` to use the ecFlow workflow manager, and ``-k`` to keep the ``$RUNDIR``. In the following, -comparisons are made between the regression and unit tests on how they handle +comparisons are made between the regression and operational requirement tests on how they handle different reproducibility tests. As discussed in :numref:`Section %s `, the variables and @@ -398,18 +391,18 @@ values used to configure model parameters and to set up initial conditions in th define default values; then a specific test file in the tests/tests/ subdirectory either overrides the default values or creates new variables if required by the test. The regression test treats the different test cases shown in -:numref:`Table %s ` as different tests. Therefore, each +:numref:`Table %s ` as different tests. Therefore, each test case requires a test file in the tests/tests/ subdirectory; examples are ``control_2threads``, ``control_decomp``, ``control_restart`` and ``control_debug``, which are just variations of ``control`` test to check various reproducibilities. There are two potential issues with this approach. First, if several different variations of a given test were to be created and included in the ``rt.conf`` file, there are too many tests to run. Second, if a new test is added by the user, s/he -will also have to create these variations. The idea behind the unit test is to +will also have to create these variations. The idea behind the operational requirement test is to automatically configure and run these variations, or test cases, given a test file. -For example, ``./utest -n control`` will run all six test cases in -:numref:`Table %s ` based on a single ``control`` test file. -Similarly, if the user adds a new test ``new_test``, then ``./utest -n new_test`` will -run all test cases. This is done by the unit test script ``utest`` by adding a third -stage of variable overrides, and the related scripts can be found in the tests/utests/ +For example, ``./opnReqTest -n control`` will run all six test cases in +:numref:`Table %s ` based on a single ``control`` test file. +Similarly, if the user adds a new test ``new_test``, then ``./opnReqTest -n new_test`` will +run all test cases. This is done by the operational requirement test script ``opnReqTest`` by adding a third +stage of variable overrides, and the related scripts can be found in the tests/opnReqTests/ directory. diff --git a/modulefiles/ufs_gaea.intel b/modulefiles/ufs_gaea.intel index 7a7ba12b96..b505d42b9b 100644 --- a/modulefiles/ufs_gaea.intel +++ b/modulefiles/ufs_gaea.intel @@ -22,7 +22,7 @@ module load cmake/3.20.1 #needed for WW3 build module load gcc/8.3.0 -module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack +module use /lustre/f2/pdata/ncep_shared/hpc-stack/modulefiles/stack module load hpc/1.1.0 module load hpc-intel/18.0.6.288 diff --git a/modulefiles/ufs_gaea.intel_debug b/modulefiles/ufs_gaea.intel_debug index 43929f10fe..2a51bf3208 100644 --- a/modulefiles/ufs_gaea.intel_debug +++ b/modulefiles/ufs_gaea.intel_debug @@ -19,7 +19,7 @@ module load alps module use /lustre/f2/pdata/ncep_shared/cmake-3.20.1/modulefiles module load cmake/3.20.1 -module use /lustre/f2/pdata/esrl/gsd/ufs/hpc-stack-v1.1.0/modulefiles/stack +module use /lustre/f2/pdata/ncep_shared/hpc-stack/modulefiles/stack module load hpc/1.1.0 module load hpc-intel/18.0.6.288 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 8ba3fcc8cb..689719eab6 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Fri Oct 1 04:55:43 MDT 2021 +Fri Oct 1 13:55:55 MDT 2021 Start Regression test -Compile 001 elapsed time 403 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 376 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 423 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 171 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 494 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 247 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 263 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 426 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 468 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 250 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 271 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,13 +57,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 271.189863 +0:The total amount of wall time = 277.162019 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -102,13 +102,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.003061 +0:The total amount of wall time = 137.467315 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_c48 -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_c48 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_c48 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -147,13 +147,13 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 812.275484 +0:The total amount of wall time = 811.685338 Test 003 control_c48 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -164,13 +164,13 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 176.017443 +0:The total amount of wall time = 177.386821 Test 004 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -181,13 +181,13 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 339.204669 +0:The total amount of wall time = 339.245540 Test 005 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_rrtmgp -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_rrtmgp +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -198,13 +198,13 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 360.454629 +0:The total amount of wall time = 356.502357 Test 006 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -215,13 +215,13 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 359.678330 +0:The total amount of wall time = 361.417257 Test 007 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -232,13 +232,13 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 348.298446 +0:The total amount of wall time = 349.631530 Test 008 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -249,13 +249,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 289.523318 +0:The total amount of wall time = 288.302412 Test 009 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_p7 Checking test 010 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -302,13 +302,13 @@ Checking test 010 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 314.258074 +0:The total amount of wall time = 321.604325 Test 010 control_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/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 @@ -373,13 +373,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 = 236.797317 +0:The total amount of wall time = 252.539868 Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/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 @@ -394,13 +394,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 = 452.822332 +0:The total amount of wall time = 455.284163 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_gsd Checking test 013 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -489,13 +489,13 @@ Checking test 013 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 447.474985 +0:The total amount of wall time = 444.871973 Test 013 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_rrfs_v1alpha Checking test 014 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -560,13 +560,13 @@ Checking test 014 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 165.311752 +0:The total amount of wall time = 166.193330 Test 014 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_rrfs_v1beta Checking test 015 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,39 +631,39 @@ Checking test 015 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 = 164.892937 +0:The total amount of wall time = 164.556179 Test 015 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_debug Checking test 016 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 80.556609 +0:The total amount of wall time = 84.291746 Test 016 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_diag_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_diag_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_diag_debug Checking test 017 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.399261 +0:The total amount of wall time = 85.865803 Test 017 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/regional_control_debug Checking test 018 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -671,13 +671,13 @@ Checking test 018 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 = 132.581811 +0:The total amount of wall time = 134.643290 Test 018 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -742,13 +742,13 @@ Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 105.163587 +0:The total amount of wall time = 105.271220 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,13 +813,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 108.924762 +0:The total amount of wall time = 105.552172 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,13 +884,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 135.541683 +0:The total amount of wall time = 135.358264 Test 021 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd_diag_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_gsd_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd_diag_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_gsd_diag_debug Checking test 022 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -917,104 +917,104 @@ Checking test 022 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 207.162230 +0:The total amount of wall time = 219.576879 Test 022 fv3_gsd_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_thompson_debug Checking test 023 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.839727 +0:The total amount of wall time = 96.564573 Test 023 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_thompson_no_aero_debug Checking test 024 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.766469 +0:The total amount of wall time = 90.670783 Test 024 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_thompson_extdiag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_thompson_extdiag_debug Checking test 025 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 103.279315 +0:The total amount of wall time = 102.926768 Test 025 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_rrtmgp_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_rrtmgp_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_rrtmgp_debug Checking test 026 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.426870 +0:The total amount of wall time = 89.621147 Test 026 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_ras_debug Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.061370 +0:The total amount of wall time = 84.323399 Test 027 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_stochy_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_stochy_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_stochy_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_stochy_debug Checking test 028 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.605387 +0:The total amount of wall time = 91.935705 Test 028 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/control_debug_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/control_debug_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/control_debug_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/control_debug_p7 Checking test 029 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 124.721597 +0:The total amount of wall time = 125.043065 Test 029 control_debug_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 030 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 = 107.749774 +0:The total amount of wall time = 110.967213 Test 030 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1100,13 +1100,13 @@ Checking test 031 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 = 213.632533 +0:The total amount of wall time = 213.303628 Test 031 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/cpld_control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/cpld_control_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/cpld_control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/cpld_control_p7 Checking test 032 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1156,13 +1156,13 @@ Checking test 032 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 407.136735 +0:The total amount of wall time = 415.742245 Test 032 cpld_control_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/GNU/cpld_debug_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_4063/cpld_debug_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/GNU/cpld_debug_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_37493/cpld_debug_p7 Checking test 033 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1212,11 +1212,11 @@ Checking test 033 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 381.565444 +0:The total amount of wall time = 386.674924 Test 033 cpld_debug_p7 PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 05:52:53 MDT 2021 -Elapsed time: 00h:57m:10s. Have a nice day! +Fri Oct 1 14:20:11 MDT 2021 +Elapsed time: 00h:24m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index ee20b324f9..26ca862ef0 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,20 +1,20 @@ -Fri Oct 1 05:35:01 MDT 2021 +Fri Oct 1 14:09:07 MDT 2021 Start Regression test -Compile 001 elapsed time 948 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 366 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 942 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 946 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 310 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 815 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 828 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 427 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 233 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 705 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_control_p7 +Compile 001 elapsed time 888 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 376 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 898 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 901 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 325 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 774 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 776 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 453 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 251 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 655 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -64,13 +64,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 279.392375 +0:The total amount of wall time = 278.645620 Test 001 cpld_control_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_restart_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -120,13 +120,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 150.921203 +0:The total amount of wall time = 161.529122 Test 002 cpld_restart_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_2threads_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -176,13 +176,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 517.803522 +0:The total amount of wall time = 513.650733 Test 003 cpld_2threads_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_decomp_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -232,13 +232,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 265.647040 +0:The total amount of wall time = 265.867924 Test 004 cpld_decomp_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_wave_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_control_wave_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_wave_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_control_wave_p7 Checking test 005 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -291,13 +291,13 @@ Checking test 005 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 429.699681 +0:The total amount of wall time = 434.974338 Test 005 cpld_control_wave_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_control_c192_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_control_c192_p7 Checking test 006 cpld_control_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -347,13 +347,13 @@ Checking test 006 cpld_control_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK -0:The total amount of wall time = 1410.345248 +0:The total amount of wall time = 1404.468678 Test 006 cpld_control_c192_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_restart_c192_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_restart_c192_p7 Checking test 007 cpld_restart_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 007 cpld_restart_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK -0:The total amount of wall time = 966.382974 +0:The total amount of wall time = 963.698684 Test 007 cpld_restart_c192_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_debug_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/cpld_debug_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_debug_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/cpld_debug_p7 Checking test 008 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -459,13 +459,13 @@ Checking test 008 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 712.405261 +0:The total amount of wall time = 715.721780 Test 008 cpld_debug_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control Checking test 009 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -512,13 +512,13 @@ Checking test 009 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 152.104008 +0:The total amount of wall time = 142.037675 Test 009 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_decomp Checking test 010 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -561,13 +561,13 @@ Checking test 010 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 151.167573 +0:The total amount of wall time = 147.695829 Test 010 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_2threads Checking test 011 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -610,13 +610,13 @@ Checking test 011 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 312.583079 +0:The total amount of wall time = 313.334263 Test 011 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_restart Checking test 012 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -655,13 +655,13 @@ Checking test 012 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 74.762180 +0:The total amount of wall time = 74.880344 Test 012 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_fhzero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_fhzero Checking test 013 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -704,13 +704,13 @@ Checking test 013 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 136.252822 +0:The total amount of wall time = 137.188238 Test 013 control_fhzero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_CubedSphereGrid +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_CubedSphereGrid Checking test 014 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -737,30 +737,30 @@ Checking test 014 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 146.134266 +0:The total amount of wall time = 142.729522 Test 014 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_wrtGauss_netcdf_parallel Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 142.458786 +0:The total amount of wall time = 150.451131 Test 015 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c48 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_c48 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c48 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_c48 Checking test 016 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -799,13 +799,13 @@ Checking test 016 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 416.221564 +0:The total amount of wall time = 417.002369 Test 016 control_c48 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c192 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c192 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_c192 Checking test 017 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -816,13 +816,13 @@ Checking test 017 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 575.148410 +0:The total amount of wall time = 561.176271 Test 017 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_c384 Checking test 018 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -833,13 +833,13 @@ Checking test 018 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1054.483589 +0:The total amount of wall time = 1065.348214 Test 018 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_c384gdas +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_c384gdas Checking test 019 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -882,13 +882,13 @@ Checking test 019 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 926.548829 +0:The total amount of wall time = 927.035721 Test 019 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_stochy Checking test 020 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -899,26 +899,26 @@ Checking test 020 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 94.290640 +0:The total amount of wall time = 93.722135 Test 020 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_stochy_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_stochy_restart Checking test 021 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 49.223935 +0:The total amount of wall time = 49.767329 Test 021 control_stochy_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_lndp Checking test 022 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -929,13 +929,13 @@ Checking test 022 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 87.389601 +0:The total amount of wall time = 86.889360 Test 022 control_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_p7 Checking test 023 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -982,13 +982,13 @@ Checking test 023 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 190.028281 +0:The total amount of wall time = 190.096907 Test 023 control_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_restart_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_restart_p7 Checking test 024 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1027,13 +1027,13 @@ Checking test 024 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 109.695027 +0:The total amount of wall time = 113.441815 Test 024 control_restart_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_decomp_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_decomp_p7 Checking test 025 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1076,13 +1076,13 @@ Checking test 025 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 192.837961 +0:The total amount of wall time = 192.171114 Test 025 control_decomp_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_2threads_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_2threads_p7 Checking test 026 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 026 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 383.685367 +0:The total amount of wall time = 383.417058 Test 026 control_2threads_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_control Checking test 027 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1139,25 +1139,25 @@ Checking test 027 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 = 349.252764 +0:The total amount of wall time = 347.769371 Test 027 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_restart -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_restart +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_restart Checking test 028 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 = 188.882897 +0:The total amount of wall time = 189.638379 Test 028 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt Checking test 029 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1168,13 +1168,13 @@ Checking test 029 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 345.310988 +0:The total amount of wall time = 343.738824 Test 029 regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt_2threads Checking test 030 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1185,13 +1185,13 @@ Checking test 030 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 929.741027 +0:The total amount of wall time = 932.447275 Test 030 regional_quilt_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt_hafs Checking test 031 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1200,27 +1200,27 @@ Checking test 031 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 345.425640 +0:The total amount of wall time = 345.033742 Test 031 regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt_netcdf_parallel Checking test 032 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 345.161296 +0:The total amount of wall time = 346.458088 Test 032 regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt_RRTMGP Checking test 033 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1231,13 +1231,13 @@ Checking test 033 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 525.875820 +0:The total amount of wall time = 526.562811 Test 033 regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_gsd Checking test 034 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1326,13 +1326,13 @@ Checking test 034 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 251.985239 +0:The total amount of wall time = 253.863373 Test 034 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_rrfs_v1alpha Checking test 035 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,13 +1397,13 @@ Checking test 035 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.020364 +0:The total amount of wall time = 100.692203 Test 035 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rap -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rap +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_rap Checking test 036 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1468,13 +1468,13 @@ Checking test 036 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.796039 +0:The total amount of wall time = 100.850553 Test 036 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_hrrr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_hrrr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_hrrr Checking test 037 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1539,13 +1539,13 @@ Checking test 037 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.327761 +0:The total amount of wall time = 99.345647 Test 037 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_rrfs_v1beta Checking test 038 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1610,13 +1610,13 @@ Checking test 038 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 = 99.829631 +0:The total amount of wall time = 99.165804 Test 038 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_rrtmgp Checking test 039 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1627,13 +1627,13 @@ Checking test 039 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 274.647925 +0:The total amount of wall time = 275.355281 Test 039 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_csawmg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_csawmg Checking test 040 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1644,13 +1644,13 @@ Checking test 040 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 336.601387 +0:The total amount of wall time = 339.972327 Test 040 control_csawmg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_csawmgt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_csawmgt Checking test 041 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1661,13 +1661,13 @@ Checking test 041 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 416.192960 +0:The total amount of wall time = 419.542685 Test 041 control_csawmgt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_flake -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_flake +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_flake Checking test 042 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1678,13 +1678,13 @@ Checking test 042 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 249.766401 +0:The total amount of wall time = 262.921189 Test 042 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_ras Checking test 043 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 043 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 207.074331 +0:The total amount of wall time = 198.659981 Test 043 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_thompson Checking test 044 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1712,13 +1712,13 @@ Checking test 044 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 258.226975 +0:The total amount of wall time = 258.527607 Test 044 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_thompson_no_aero Checking test 045 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1729,13 +1729,13 @@ Checking test 045 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 237.375865 +0:The total amount of wall time = 245.468074 Test 045 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/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 @@ -1800,13 +1800,13 @@ Checking test 046 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 = 182.945655 +0:The total amount of wall time = 185.071707 Test 046 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/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 @@ -1821,39 +1821,39 @@ Checking test 047 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 = 344.949574 +0:The total amount of wall time = 339.668952 Test 047 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_debug Checking test 048 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.963979 +0:The total amount of wall time = 158.763448 Test 048 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_2threads_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_2threads_debug Checking test 049 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 273.117202 +0:The total amount of wall time = 274.613905 Test 049 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_CubedSphereGrid_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_CubedSphereGrid_debug Checking test 050 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1880,169 +1880,169 @@ Checking test 050 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 172.664880 +0:The total amount of wall time = 168.538233 Test 050 control_CubedSphereGrid_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_wrtGauss_netcdf_parallel_debug Checking test 051 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 157.636334 +0:The total amount of wall time = 162.180817 Test 051 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_stochy_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_stochy_debug Checking test 052 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.732559 +0:The total amount of wall time = 179.518193 Test 052 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_lndp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_lndp_debug Checking test 053 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.810966 +0:The total amount of wall time = 159.751839 Test 053 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_rrtmgp_debug Checking test 054 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.741198 +0:The total amount of wall time = 181.779718 Test 054 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_csawmg_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_csawmg_debug Checking test 055 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 270.385914 +0:The total amount of wall time = 269.033405 Test 055 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_csawmgt_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_csawmgt_debug Checking test 056 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 310.234338 +0:The total amount of wall time = 309.798638 Test 056 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_ras_debug Checking test 057 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.520046 +0:The total amount of wall time = 165.545846 Test 057 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_diag_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_diag_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_diag_debug Checking test 058 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.320410 +0:The total amount of wall time = 164.482939 Test 058 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug_p7 -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_debug_p7 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug_p7 +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_debug_p7 Checking test 059 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 221.635766 +0:The total amount of wall time = 226.056532 Test 059 control_debug_p7 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_thompson_debug Checking test 060 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 180.996323 +0:The total amount of wall time = 182.419794 Test 060 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_thompson_no_aero_debug Checking test 061 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.450301 +0:The total amount of wall time = 175.525447 Test 061 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_thompson_extdiag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_thompson_extdiag_debug Checking test 062 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 190.925178 +0:The total amount of wall time = 192.115073 Test 062 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_control_debug Checking test 063 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2050,26 +2050,26 @@ Checking test 063 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 = 259.570752 +0:The total amount of wall time = 256.189108 Test 063 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/regional_quilt_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/regional_quilt_debug Checking test 064 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 260.339518 +0:The total amount of wall time = 260.339374 Test 064 regional_quilt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_gsd_debug Checking test 065 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2134,13 +2134,13 @@ Checking test 065 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 263.883179 +0:The total amount of wall time = 264.388450 Test 065 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_diag_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_gsd_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_diag_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_gsd_diag_debug Checking test 066 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2167,13 +2167,13 @@ Checking test 066 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 298.894763 +0:The total amount of wall time = 297.503483 Test 066 fv3_gsd_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_rrfs_v1beta_debug Checking test 067 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2238,13 +2238,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 = 208.933496 +0:The total amount of wall time = 211.967984 Test 067 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_rrfs_v1alpha_debug Checking test 068 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2309,13 +2309,13 @@ Checking test 068 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.383974 +0:The total amount of wall time = 209.362075 Test 068 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_HAFS_v0_hwrf_thompson_debug Checking test 069 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,13 +2380,13 @@ Checking test 069 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 = 218.022059 +0:The total amount of wall time = 219.643420 Test 069 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2401,51 +2401,51 @@ Checking test 070 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 = 398.201393 +0:The total amount of wall time = 399.299062 Test 070 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/hafs_regional_atm +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/hafs_regional_atm Checking test 071 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 504.578769 +0:The total amount of wall time = 502.908972 Test 071 hafs_regional_atm PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/hafs_regional_atm_ocn +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/hafs_regional_atm_ocn Checking test 072 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 413.741311 +0:The total amount of wall time = 414.219631 Test 072 hafs_regional_atm_ocn PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/hafs_regional_docn +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/hafs_regional_docn Checking test 073 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 353.381284 +0:The total amount of wall time = 355.743807 Test 073 hafs_regional_docn PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/hafs_regional_docn_oisst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/hafs_regional_docn_oisst Checking test 074 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2453,97 +2453,97 @@ Checking test 074 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 350.230651 +0:The total amount of wall time = 351.129807 Test 074 hafs_regional_docn_oisst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/hafs_regional_datm_cdeps +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/hafs_regional_datm_cdeps Checking test 075 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1304.081943 +0:The total amount of wall time = 1176.604805 Test 075 hafs_regional_datm_cdeps PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_control_cfsr Checking test 076 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.028587 +0:The total amount of wall time = 162.748677 Test 076 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_restart_cfsr Checking test 077 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.234511 +0:The total amount of wall time = 102.270463 Test 077 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_control_gefs Checking test 078 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 155.919372 +0:The total amount of wall time = 156.003841 Test 078 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_stochy_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_stochy_gefs Checking test 079 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 152.402135 +0:The total amount of wall time = 159.783731 Test 079 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_bulk_cfsr Checking test 080 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 158.855255 +0:The total amount of wall time = 157.813392 Test 080 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_bulk_gefs Checking test 081 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 151.462400 +0:The total amount of wall time = 157.031544 Test 081 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_mx025_cfsr Checking test 082 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2552,13 +2552,13 @@ Checking test 082 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 344.737528 +0:The total amount of wall time = 331.688827 Test 082 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_mx025_gefs Checking test 083 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2567,35 +2567,35 @@ Checking test 083 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 346.015637 +0:The total amount of wall time = 329.232677 Test 083 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_multiple_files_cfsr Checking test 084 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 155.706856 +0:The total amount of wall time = 162.852905 Test 084 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/datm_cdeps_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/datm_cdeps_debug_cfsr Checking test 085 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 447.748438 +0:The total amount of wall time = 448.327513 Test 085 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atmwav -working dir = /glade/scratch/worthen/FV3_RT/rt_57170/control_atmwav +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atmwav +working dir = /glade/scratch/heinzell/FV3_RT/rt_42292/control_atmwav Checking test 086 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2639,11 +2639,11 @@ Checking test 086 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 147.098017 +0:The total amount of wall time = 140.364484 Test 086 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 06:41:42 MDT 2021 -Elapsed time: 01h:06m:42s. Have a nice day! +Fri Oct 1 15:11:27 MDT 2021 +Elapsed time: 01h:02m:20s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 8c273ed6a8..0913b6ccdd 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,20 +1,20 @@ -Thu Sep 30 23:24:51 EDT 2021 +Sat Oct 2 23:03:17 EDT 2021 Start Regression test -Compile 001 elapsed time 742 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 209 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 688 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 798 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 202 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 666 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 650 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 280 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 604 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_control_p7 +Compile 001 elapsed time 686 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 216 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 630 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 658 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 614 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 596 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 278 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 157 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -64,13 +64,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 303.821596 + 0: The total amount of wall time = 647.858438 Test 001 cpld_control_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_restart_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -120,13 +120,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 141.829070 + 0: The total amount of wall time = 396.768577 Test 002 cpld_restart_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_2threads_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -176,13 +176,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 300.009571 + 0: The total amount of wall time = 630.178637 Test 003 cpld_2threads_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_decomp_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -232,13 +232,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 245.693409 + 0: The total amount of wall time = 651.166948 Test 004 cpld_decomp_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_wave_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_control_wave_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_wave_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_control_wave_p7 Checking test 005 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -291,13 +291,13 @@ Checking test 005 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 408.630556 + 0: The total amount of wall time = 732.203219 Test 005 cpld_control_wave_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_control_c192_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_control_c192_p7 Checking test 006 cpld_control_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -347,13 +347,13 @@ Checking test 006 cpld_control_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 1578.534660 + 0: The total amount of wall time = 2086.047559 Test 006 cpld_control_c192_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_restart_c192_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_restart_c192_p7 Checking test 007 cpld_restart_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 007 cpld_restart_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 971.130877 + 0: The total amount of wall time = 1755.535270 Test 007 cpld_restart_c192_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_control_c384_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_control_c384_p7 Checking test 008 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -452,13 +452,13 @@ Checking test 008 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1179.338394 + 0: The total amount of wall time = 4768.011548 Test 008 cpld_control_c384_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_restart_c384_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_restart_c384_p7 Checking test 009 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -501,13 +501,13 @@ Checking test 009 cpld_restart_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1499.249513 + 0: The total amount of wall time = 1733.542119 Test 009 cpld_restart_c384_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_bmark_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_bmark_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_bmark_p7 Checking test 010 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -552,13 +552,13 @@ Checking test 010 cpld_bmark_p7 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 = 1261.877361 + 0: The total amount of wall time = 1181.005655 Test 010 cpld_bmark_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_debug_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/cpld_debug_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_debug_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/cpld_debug_p7 Checking test 011 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 011 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 705.544469 + 0: The total amount of wall time = 1039.885167 Test 011 cpld_debug_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -661,13 +661,13 @@ Checking test 012 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 129.897462 + 0: The total amount of wall time = 429.910381 Test 012 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_decomp Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -710,13 +710,13 @@ Checking test 013 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.279405 + 0: The total amount of wall time = 675.184489 Test 013 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -759,13 +759,13 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.650209 + 0: The total amount of wall time = 610.772783 Test 014 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -804,13 +804,13 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 70.536691 + 0: The total amount of wall time = 304.342470 Test 015 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_fhzero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -853,13 +853,13 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 121.898736 + 0: The total amount of wall time = 395.324431 Test 016 control_fhzero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -886,13 +886,13 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 125.022042 + 0: The total amount of wall time = 693.871255 Test 017 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -903,13 +903,13 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 566.784102 + 0: The total amount of wall time = 132.626358 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_c48 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -948,13 +948,13 @@ Checking test 019 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 350.437089 +0: The total amount of wall time = 357.477648 Test 019 control_c48 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -965,13 +965,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 526.476901 + 0: The total amount of wall time = 1961.206011 Test 020 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -982,13 +982,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 900.127622 + 0: The total amount of wall time = 1293.570659 Test 021 control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_c384gdas +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1031,13 +1031,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 862.728208 + 0: The total amount of wall time = 1475.223782 Test 022 control_c384gdas PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1048,26 +1048,26 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 86.357470 + 0: The total amount of wall time = 393.550520 Test 023 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_stochy_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 185.576309 + 0: The total amount of wall time = 232.121116 Test 024 control_stochy_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1078,13 +1078,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 325.429801 + 0: The total amount of wall time = 291.074135 Test 025 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_p7 Checking test 026 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1131,13 +1131,13 @@ Checking test 026 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.713059 + 0: The total amount of wall time = 708.694042 Test 026 control_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_restart_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_restart_p7 Checking test 027 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 027 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 111.122577 + 0: The total amount of wall time = 173.708215 Test 027 control_restart_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_decomp_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_decomp_p7 Checking test 028 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.796909 + 0: The total amount of wall time = 709.829466 Test 028 control_decomp_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_2threads_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_2threads_p7 Checking test 029 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1274,13 +1274,13 @@ Checking test 029 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.756390 + 0: The total amount of wall time = 310.502205 Test 029 control_2threads_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_control Checking test 030 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1288,25 +1288,25 @@ Checking test 030 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 = 1706.628213 + 0: The total amount of wall time = 2040.980860 Test 030 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_restart Checking test 031 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 = 905.746363 + 0: The total amount of wall time = 865.731617 Test 031 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt Checking test 032 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1317,13 +1317,13 @@ Checking test 032 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 328.065466 + 0: The total amount of wall time = 1528.787559 Test 032 regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt_2threads Checking test 033 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1334,13 +1334,13 @@ Checking test 033 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 257.657035 + 0: The total amount of wall time = 1814.721617 Test 033 regional_quilt_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt_hafs Checking test 034 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1349,27 +1349,27 @@ Checking test 034 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 1124.583087 + 0: The total amount of wall time = 1834.917506 Test 034 regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt_netcdf_parallel Checking test 035 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 - 0: The total amount of wall time = 338.577948 + 0: The total amount of wall time = 1635.978191 Test 035 regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt_RRTMGP Checking test 036 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1380,13 +1380,13 @@ Checking test 036 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 464.113837 + 0: The total amount of wall time = 1884.238304 Test 036 regional_quilt_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1475,13 +1475,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 = 234.651598 + 0: The total amount of wall time = 1681.495465 Test 037 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_rrfs_v1alpha +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_rrfs_v1alpha Checking test 038 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,13 +1546,13 @@ Checking test 038 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 459.947268 + 0: The total amount of wall time = 649.681663 Test 038 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,13 +1617,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.135545 + 0: The total amount of wall time = 584.526812 Test 039 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1688,13 +1688,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.210773 + 0: The total amount of wall time = 696.468263 Test 040 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1759,13 +1759,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 = 92.204927 + 0: The total amount of wall time = 120.517229 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_rrtmgp Checking test 042 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1776,13 +1776,13 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.841511 + 0: The total amount of wall time = 697.815768 Test 042 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_csawmgt Checking test 043 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 043 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 360.276316 + 0: The total amount of wall time = 420.655830 Test 043 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_flake Checking test 044 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1810,13 +1810,13 @@ Checking test 044 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 239.572235 + 0: The total amount of wall time = 802.927451 Test 044 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_ras Checking test 045 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,13 +1827,13 @@ Checking test 045 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.539114 + 0: The total amount of wall time = 839.067381 Test 045 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_thompson Checking test 046 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1844,13 +1844,13 @@ Checking test 046 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 223.529306 + 0: The total amount of wall time = 655.393713 Test 046 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_thompson_no_aero Checking test 047 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1861,13 +1861,13 @@ Checking test 047 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 216.756827 + 0: The total amount of wall time = 823.526594 Test 047 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/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 @@ -1932,13 +1932,13 @@ Checking test 048 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 = 163.008723 + 0: The total amount of wall time = 461.903771 Test 048 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/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 @@ -1953,39 +1953,39 @@ Checking test 049 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 = 298.824732 + 0: The total amount of wall time = 303.621587 Test 049 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_debug Checking test 050 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.013091 + 0: The total amount of wall time = 182.437244 Test 050 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_2threads_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_2threads_debug Checking test 051 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 255.303183 + 0: The total amount of wall time = 256.308391 Test 051 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_CubedSphereGrid_debug Checking test 052 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2012,169 +2012,169 @@ Checking test 052 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 156.038654 + 0: The total amount of wall time = 184.694648 Test 052 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_wrtGauss_netcdf_parallel_debug Checking test 053 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.844669 + 0: The total amount of wall time = 159.450643 Test 053 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_stochy_debug Checking test 054 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.360106 + 0: The total amount of wall time = 168.191784 Test 054 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_lndp_debug Checking test 055 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.308469 + 0: The total amount of wall time = 151.867703 Test 055 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_rrtmgp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_rrtmgp_debug Checking test 056 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.743722 + 0: The total amount of wall time = 190.901554 Test 056 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_csawmg_debug Checking test 057 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.631457 + 0: The total amount of wall time = 316.875432 Test 057 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_csawmgt_debug Checking test 058 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.311036 + 0: The total amount of wall time = 357.917315 Test 058 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_ras_debug Checking test 059 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.803586 + 0: The total amount of wall time = 167.137371 Test 059 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_diag_debug Checking test 060 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.760831 + 0: The total amount of wall time = 185.807080 Test 060 control_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_debug_p7 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_debug_p7 Checking test 061 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.467335 + 0: The total amount of wall time = 275.192383 Test 061 control_debug_p7 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_thompson_debug Checking test 062 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.160601 + 0: The total amount of wall time = 177.460528 Test 062 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_thompson_no_aero_debug Checking test 063 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.497451 + 0: The total amount of wall time = 265.646590 Test 063 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_thompson_extdiag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_thompson_extdiag_debug Checking test 064 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.513891 + 0: The total amount of wall time = 233.274603 Test 064 control_thompson_extdiag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_control_debug Checking test 065 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2182,26 +2182,26 @@ Checking test 065 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 = 258.395702 + 0: The total amount of wall time = 261.651910 Test 065 regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/regional_quilt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/regional_quilt_debug Checking test 066 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 261.673948 + 0: The total amount of wall time = 314.502796 Test 066 regional_quilt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_gsd_debug Checking test 067 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2266,13 +2266,13 @@ Checking test 067 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 = 252.143174 + 0: The total amount of wall time = 343.357368 Test 067 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_gsd_diag_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_gsd_diag_debug Checking test 068 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2299,13 +2299,13 @@ Checking test 068 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 241.682023 + 0: The total amount of wall time = 244.739415 Test 068 fv3_gsd_diag_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2370,13 +2370,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.402458 + 0: The total amount of wall time = 261.292468 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_rrfs_v1alpha_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2441,13 +2441,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 331.488371 + 0: The total amount of wall time = 280.297133 Test 070 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2512,13 +2512,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 211.774682 + 0: The total amount of wall time = 346.053840 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2533,37 +2533,37 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 380.817809 + 0: The total amount of wall time = 379.609109 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/hafs_regional_atm +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/hafs_regional_atm Checking test 073 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 268.105053 + 0: The total amount of wall time = 2187.608644 Test 073 hafs_regional_atm PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/hafs_regional_atm_ocn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/hafs_regional_atm_ocn Checking test 074 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 413.399456 + 0: The total amount of wall time = 471.760636 Test 074 hafs_regional_atm_ocn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/hafs_regional_docn +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/hafs_regional_docn Checking test 075 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2571,111 +2571,111 @@ Checking test 075 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.109427 + 0: The total amount of wall time = 420.407485 Test 075 hafs_regional_docn PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/hafs_regional_docn_oisst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/hafs_regional_docn_oisst Checking test 076 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 375.938971 + 0: The total amount of wall time = 435.926097 Test 076 hafs_regional_docn_oisst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/hafs_regional_datm_cdeps +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/hafs_regional_datm_cdeps Checking test 077 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1023.412380 + 0: The total amount of wall time = 1077.303311 Test 077 hafs_regional_datm_cdeps PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_control_cfsr Checking test 078 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.627867 + 0: The total amount of wall time = 255.865591 Test 078 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_restart_cfsr Checking test 079 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 84.601137 + 0: The total amount of wall time = 171.152592 Test 079 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_control_gefs Checking test 080 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.018920 + 0: The total amount of wall time = 158.174519 Test 080 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_stochy_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_stochy_gefs Checking test 081 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.589213 + 0: The total amount of wall time = 240.779323 Test 081 datm_cdeps_stochy_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_bulk_cfsr Checking test 082 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.564803 + 0: The total amount of wall time = 260.733850 Test 082 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_bulk_gefs Checking test 083 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.455694 + 0: The total amount of wall time = 143.241470 Test 083 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_mx025_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_mx025_cfsr Checking test 084 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2684,13 +2684,13 @@ Checking test 084 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 334.806044 + 0: The total amount of wall time = 450.690557 Test 084 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_mx025_gefs Checking test 085 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2699,35 +2699,35 @@ Checking test 085 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 341.114998 + 0: The total amount of wall time = 353.734045 Test 085 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_multiple_files_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_multiple_files_cfsr Checking test 086 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.966826 + 0: The total amount of wall time = 335.509759 Test 086 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/datm_cdeps_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/datm_cdeps_debug_cfsr Checking test 087 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 360.771051 + 0: The total amount of wall time = 362.005020 Test 087 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_atmwav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_atmwav Checking test 088 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2771,13 +2771,13 @@ Checking test 088 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 531.415998 + 0: The total amount of wall time = 780.897843 Test 088 control_atmwav PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_17342/control_c384gdas_wav +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43362/control_c384gdas_wav Checking test 089 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -2823,11 +2823,11 @@ Checking test 089 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 9357.381224 + 0: The total amount of wall time = 1964.166569 Test 089 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 02:50:51 EDT 2021 -Elapsed time: 03h:26m:01s. Have a nice day! +Sun Oct 3 01:36:58 EDT 2021 +Elapsed time: 02h:33m:42s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index dedc44309e..24cd2aa14e 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Thu Sep 30 22:42:52 UTC 2021 +Fri Oct 1 19:15:01 UTC 2021 Start Regression test -Compile 001 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 176 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 90 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 115 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 107 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 301 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 271 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 305 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 193 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 177 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,13 +57,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 809.022502 + 0: The total amount of wall time = 778.530855 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -102,13 +102,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 379.561881 + 0: The total amount of wall time = 378.429969 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -147,13 +147,13 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 667.621449 +0: The total amount of wall time = 672.149064 Test 003 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -164,13 +164,13 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 623.890218 + 0: The total amount of wall time = 621.769084 Test 004 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -181,13 +181,13 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1348.600152 + 0: The total amount of wall time = 1386.239519 Test 005 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -198,13 +198,13 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 830.087606 + 0: The total amount of wall time = 850.055814 Test 006 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -215,13 +215,13 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 976.222250 + 0: The total amount of wall time = 987.373599 Test 007 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -232,13 +232,13 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 936.428163 + 0: The total amount of wall time = 956.845186 Test 008 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -249,13 +249,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 803.578498 + 0: The total amount of wall time = 807.804602 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_p7 Checking test 010 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -302,13 +302,13 @@ Checking test 010 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 847.112937 + 0: The total amount of wall time = 834.381788 Test 010 control_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/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 @@ -373,13 +373,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 = 591.862976 + 0: The total amount of wall time = 601.617900 Test 011 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/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 @@ -394,13 +394,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 = 444.327461 + 0: The total amount of wall time = 438.955160 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_gsd Checking test 013 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -489,13 +489,13 @@ Checking test 013 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1013.304461 + 0: The total amount of wall time = 1012.908523 Test 013 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_rrfs_v1alpha Checking test 014 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -560,13 +560,13 @@ Checking test 014 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 365.546388 + 0: The total amount of wall time = 377.100579 Test 014 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_rrfs_v1beta Checking test 015 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -631,39 +631,39 @@ Checking test 015 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 = 347.958563 + 0: The total amount of wall time = 366.871134 Test 015 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_debug Checking test 016 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 97.952618 + 0: The total amount of wall time = 101.549623 Test 016 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_diag_debug Checking test 017 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.086105 + 0: The total amount of wall time = 129.020847 Test 017 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/regional_control_debug Checking test 018 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -671,13 +671,13 @@ Checking test 018 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 = 121.729481 + 0: The total amount of wall time = 138.310362 Test 018 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_rrfs_v1alpha_debug Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -742,13 +742,13 @@ Checking test 019 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.502628 + 0: The total amount of wall time = 120.255234 Test 019 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_rrfs_v1beta_debug Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -813,13 +813,13 @@ Checking test 020 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.667338 + 0: The total amount of wall time = 118.455100 Test 020 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_gsd_debug Checking test 021 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -884,13 +884,13 @@ Checking test 021 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 146.721043 + 0: The total amount of wall time = 150.270634 Test 021 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/fv3_gsd_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_gsd_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_gsd_diag_debug Checking test 022 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -917,104 +917,104 @@ Checking test 022 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 282.886569 + 0: The total amount of wall time = 303.502757 Test 022 fv3_gsd_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_thompson_debug Checking test 023 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.787266 + 0: The total amount of wall time = 111.783438 Test 023 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_thompson_no_aero_debug Checking test 024 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 109.598424 + 0: The total amount of wall time = 112.887594 Test 024 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_thompson_extdiag_debug Checking test 025 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 135.311552 + 0: The total amount of wall time = 132.147328 Test 025 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_rrtmgp_debug Checking test 026 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 108.227072 + 0: The total amount of wall time = 109.582934 Test 026 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_ras_debug Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.056527 + 0: The total amount of wall time = 104.019071 Test 027 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_stochy_debug Checking test 028 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 119.602610 + 0: The total amount of wall time = 115.499613 Test 028 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/control_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/control_debug_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/control_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/control_debug_p7 Checking test 029 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.262004 + 0: The total amount of wall time = 147.142377 Test 029 control_debug_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1079,13 +1079,13 @@ Checking test 030 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 129.668259 + 0: The total amount of wall time = 133.533957 Test 030 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1100,13 +1100,13 @@ Checking test 031 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 = 235.863104 + 0: The total amount of wall time = 242.207786 Test 031 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/cpld_control_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/cpld_control_p7 Checking test 032 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1156,13 +1156,13 @@ Checking test 032 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1165.437629 + 0: The total amount of wall time = 1157.463672 Test 032 cpld_control_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/GNU/cpld_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10967/cpld_debug_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/GNU/cpld_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31638/cpld_debug_p7 Checking test 033 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1212,11 +1212,11 @@ Checking test 033 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 595.146360 + 0: The total amount of wall time = 628.801850 Test 033 cpld_debug_p7 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Sep 30 23:15:39 UTC 2021 -Elapsed time: 00h:32m:48s. Have a nice day! +Fri Oct 1 19:51:02 UTC 2021 +Elapsed time: 00h:36m:01s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index c13ea05adb..02a366612d 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,21 +1,21 @@ -Thu Sep 30 22:57:45 UTC 2021 +Mon Oct 4 13:46:31 UTC 2021 Start Regression test -Compile 001 elapsed time 656 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 162 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 587 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 596 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 156 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 304 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 628 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 586 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 183 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 96 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 551 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 589 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_control_p7 +Compile 001 elapsed time 1237 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 904 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 885 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 739 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 170 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 576 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 614 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 570 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 551 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 540 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 510 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 487 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -65,13 +65,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 220.044432 + 0: The total amount of wall time = 217.804018 Test 001 cpld_control_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_restart_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -121,13 +121,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 131.858579 + 0: The total amount of wall time = 128.119284 Test 002 cpld_restart_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_2threads_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -177,13 +177,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 255.003277 + 0: The total amount of wall time = 250.209067 Test 003 cpld_2threads_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_decomp_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -233,13 +233,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 211.440478 + 0: The total amount of wall time = 209.634257 Test 004 cpld_decomp_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_wave_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_control_wave_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_wave_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_control_wave_p7 Checking test 005 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -292,13 +292,13 @@ Checking test 005 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 400.871837 + 0: The total amount of wall time = 396.701801 Test 005 cpld_control_wave_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_control_c192_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_control_c192_p7 Checking test 006 cpld_control_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -348,13 +348,13 @@ Checking test 006 cpld_control_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 1136.350005 + 0: The total amount of wall time = 1130.033353 Test 006 cpld_control_c192_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_restart_c192_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_restart_c192_p7 Checking test 007 cpld_restart_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -404,13 +404,13 @@ Checking test 007 cpld_restart_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 849.471035 + 0: The total amount of wall time = 792.409818 Test 007 cpld_restart_c192_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_control_c384_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_control_c384_p7 Checking test 008 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -453,15 +453,15 @@ Checking test 008 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1070.872481 + 0: The total amount of wall time = 1023.711531 Test 008 cpld_control_c384_p7 PASS Test 009 cpld_restart_c384_p7 FAIL -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_bmark_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_bmark_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_bmark_p7 Checking test 010 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -506,13 +506,13 @@ Checking test 010 cpld_bmark_p7 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 = 922.774204 + 0: The total amount of wall time = 895.244423 Test 010 cpld_bmark_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/cpld_debug_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/cpld_debug_p7 Checking test 011 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -562,13 +562,13 @@ Checking test 011 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 653.962092 + 0: The total amount of wall time = 650.970959 Test 011 cpld_debug_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -615,13 +615,13 @@ Checking test 012 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.070694 + 0: The total amount of wall time = 119.213951 Test 012 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_decomp Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -664,13 +664,13 @@ Checking test 013 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.072231 + 0: The total amount of wall time = 125.425482 Test 013 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -713,13 +713,13 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 142.747439 + 0: The total amount of wall time = 143.336464 Test 014 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -758,13 +758,13 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 63.462854 + 0: The total amount of wall time = 63.169372 Test 015 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_fhzero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -807,13 +807,13 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 112.255747 + 0: The total amount of wall time = 111.332689 Test 016 control_fhzero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -840,13 +840,13 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 115.031770 + 0: The total amount of wall time = 113.931119 Test 017 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -857,13 +857,13 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 120.184431 + 0: The total amount of wall time = 119.124015 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_c48 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -902,13 +902,13 @@ Checking test 019 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 306.881431 +0: The total amount of wall time = 308.992636 Test 019 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -919,13 +919,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.712231 + 0: The total amount of wall time = 448.165348 Test 020 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -936,13 +936,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 761.069968 + 0: The total amount of wall time = 766.922450 Test 021 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -985,13 +985,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.065374 + 0: The total amount of wall time = 666.210784 Test 022 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1002,26 +1002,26 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.489312 + 0: The total amount of wall time = 77.781716 Test 023 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 42.302829 + 0: The total amount of wall time = 42.416480 Test 024 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1032,13 +1032,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 71.725743 + 0: The total amount of wall time = 71.865602 Test 025 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_p7 Checking test 026 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1085,13 +1085,13 @@ Checking test 026 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.465931 + 0: The total amount of wall time = 152.430492 Test 026 control_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_restart_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_restart_p7 Checking test 027 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1130,13 +1130,13 @@ Checking test 027 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.769721 + 0: The total amount of wall time = 92.085030 Test 027 control_restart_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_decomp_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_decomp_p7 Checking test 028 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1179,13 +1179,13 @@ Checking test 028 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.969324 + 0: The total amount of wall time = 158.804894 Test 028 control_decomp_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_2threads_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_2threads_p7 Checking test 029 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1228,13 +1228,13 @@ Checking test 029 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.963041 + 0: The total amount of wall time = 182.317752 Test 029 control_2threads_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_control Checking test 030 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1242,25 +1242,25 @@ Checking test 030 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 = 286.160973 + 0: The total amount of wall time = 289.135109 Test 030 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_restart Checking test 031 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 = 160.024549 + 0: The total amount of wall time = 163.680373 Test 031 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt Checking test 032 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1271,13 +1271,13 @@ Checking test 032 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 289.976278 + 0: The total amount of wall time = 290.159657 Test 032 regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt_2threads Checking test 033 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1288,13 +1288,13 @@ Checking test 033 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 208.422902 + 0: The total amount of wall time = 209.314454 Test 033 regional_quilt_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt_hafs Checking test 034 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1303,27 +1303,27 @@ Checking test 034 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 289.695658 + 0: The total amount of wall time = 290.017847 Test 034 regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt_netcdf_parallel Checking test 035 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 291.474537 + 0: The total amount of wall time = 291.136329 Test 035 regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt_RRTMGP Checking test 036 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1334,13 +1334,13 @@ Checking test 036 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 380.497462 + 0: The total amount of wall time = 380.696695 Test 036 regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1429,13 +1429,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 = 215.475293 + 0: The total amount of wall time = 215.580450 Test 037 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_rrfs_v1alpha Checking test 038 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1500,13 +1500,13 @@ Checking test 038 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.085987 + 0: The total amount of wall time = 85.977942 Test 038 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1571,13 +1571,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.755594 + 0: The total amount of wall time = 84.434610 Test 039 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1642,13 +1642,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.949862 + 0: The total amount of wall time = 83.704355 Test 040 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1713,13 +1713,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 = 86.911819 + 0: The total amount of wall time = 85.590394 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_rrtmgp Checking test 042 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1730,13 +1730,13 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 193.086056 + 0: The total amount of wall time = 190.123415 Test 042 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_csawmg Checking test 043 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1747,13 +1747,13 @@ Checking test 043 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 260.085758 + 0: The total amount of wall time = 252.803032 Test 043 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_csawmgt Checking test 044 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1764,13 +1764,13 @@ Checking test 044 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 314.019203 + 0: The total amount of wall time = 310.110580 Test 044 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_flake Checking test 045 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1781,13 +1781,13 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.765616 + 0: The total amount of wall time = 211.104659 Test 045 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_ras Checking test 046 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1798,13 +1798,13 @@ Checking test 046 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.742721 + 0: The total amount of wall time = 162.628899 Test 046 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_thompson Checking test 047 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1815,13 +1815,13 @@ Checking test 047 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.932721 + 0: The total amount of wall time = 200.827488 Test 047 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_thompson_no_aero Checking test 048 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 048 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.943397 + 0: The total amount of wall time = 192.862825 Test 048 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1903,13 +1903,13 @@ Checking test 049 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.088465 + 0: The total amount of wall time = 142.559055 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1924,39 +1924,39 @@ Checking test 050 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 = 284.929019 + 0: The total amount of wall time = 284.353296 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.018550 + 0: The total amount of wall time = 145.357045 Test 051 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_2threads_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.777208 + 0: The total amount of wall time = 211.547263 Test 052 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1983,169 +1983,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 152.720586 + 0: The total amount of wall time = 155.253784 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 150.017270 + 0: The total amount of wall time = 147.386281 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.735422 + 0: The total amount of wall time = 164.512635 Test 055 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.974014 + 0: The total amount of wall time = 149.136569 Test 056 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_rrtmgp_debug Checking test 057 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.627541 + 0: The total amount of wall time = 167.381880 Test 057 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_csawmg_debug Checking test 058 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 233.759142 + 0: The total amount of wall time = 234.239737 Test 058 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_csawmgt_debug Checking test 059 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.355191 + 0: The total amount of wall time = 265.673023 Test 059 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_ras_debug Checking test 060 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.644263 + 0: The total amount of wall time = 144.862990 Test 060 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_diag_debug Checking test 061 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.190268 + 0: The total amount of wall time = 154.042278 Test 061 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_debug_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_debug_p7 Checking test 062 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 194.778053 + 0: The total amount of wall time = 196.121882 Test 062 control_debug_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_thompson_debug Checking test 063 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.097152 + 0: The total amount of wall time = 168.593041 Test 063 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_thompson_no_aero_debug Checking test 064 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.492231 + 0: The total amount of wall time = 159.758364 Test 064 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_thompson_extdiag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_thompson_extdiag_debug Checking test 065 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.367772 + 0: The total amount of wall time = 175.363673 Test 065 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2153,26 +2153,26 @@ Checking test 066 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 = 233.692904 + 0: The total amount of wall time = 230.626616 Test 066 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/regional_quilt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/regional_quilt_debug Checking test 067 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 240.812651 + 0: The total amount of wall time = 238.682156 Test 067 regional_quilt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2237,13 +2237,13 @@ Checking test 068 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 = 239.903262 + 0: The total amount of wall time = 248.729436 Test 068 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_gsd_diag_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_gsd_diag_debug Checking test 069 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2270,13 +2270,13 @@ Checking test 069 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 319.137667 + 0: The total amount of wall time = 320.032171 Test 069 fv3_gsd_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_rrfs_v1beta_debug Checking test 070 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2341,13 +2341,13 @@ Checking test 070 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.598841 + 0: The total amount of wall time = 190.701379 Test 070 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_rrfs_v1alpha_debug Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2412,13 +2412,13 @@ Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.004755 + 0: The total amount of wall time = 189.990485 Test 071 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2483,13 +2483,13 @@ Checking test 072 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 = 195.161187 + 0: The total amount of wall time = 200.164556 Test 072 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2504,149 +2504,149 @@ Checking test 073 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 = 389.946851 + 0: The total amount of wall time = 393.683872 Test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/hafs_regional_atm Checking test 074 hafs_regional_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 260.666551 + 0: The total amount of wall time = 258.514524 Test 074 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/hafs_regional_atm_ocn Checking test 075 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 374.308271 + 0: The total amount of wall time = 368.208486 Test 075 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/hafs_regional_docn Checking test 076 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.661294 + 0: The total amount of wall time = 338.182677 Test 076 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/hafs_regional_docn_oisst Checking test 077 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 344.241828 + 0: The total amount of wall time = 344.082151 Test 077 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/hafs_regional_datm_cdeps Checking test 078 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 959.737851 + 0: The total amount of wall time = 943.253573 Test 078 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_control_cfsr Checking test 079 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.509882 + 0: The total amount of wall time = 145.239295 Test 079 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_restart_cfsr Checking test 080 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 96.913066 + 0: The total amount of wall time = 97.885624 Test 080 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_control_gefs Checking test 081 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.172884 + 0: The total amount of wall time = 137.639316 Test 081 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_stochy_gefs Checking test 082 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.354313 + 0: The total amount of wall time = 141.850982 Test 082 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_bulk_cfsr Checking test 083 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.952594 + 0: The total amount of wall time = 149.950788 Test 083 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_bulk_gefs Checking test 084 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 138.838005 + 0: The total amount of wall time = 143.219612 Test 084 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_mx025_cfsr Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2655,13 +2655,13 @@ Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 317.295582 + 0: The total amount of wall time = 314.483963 Test 085 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_mx025_gefs Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2670,35 +2670,35 @@ Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 319.963258 + 0: The total amount of wall time = 309.493623 Test 086 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_multiple_files_cfsr Checking test 087 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.324876 + 0: The total amount of wall time = 145.450772 Test 087 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/datm_cdeps_debug_cfsr Checking test 088 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 435.587678 + 0: The total amount of wall time = 435.271893 Test 088 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_atmwav Checking test 089 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2742,13 +2742,13 @@ Checking test 089 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 132.765492 + 0: The total amount of wall time = 131.478630 Test 089 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_c384gdas_wav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_c384gdas_wav Checking test 090 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -2794,13 +2794,13 @@ Checking test 090 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 701.983497 + 0: The total amount of wall time = 692.081875 Test 090 control_c384gdas_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_20063/control_atm_aerosols +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2258/control_atm_aerosols Checking test 091 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2847,7 +2847,7 @@ Checking test 091 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 273.853664 + 0: The total amount of wall time = 271.746271 Test 091 control_atm_aerosols PASS @@ -2856,15 +2856,15 @@ Test cpld_restart_c384_p7 009 failed failed Test cpld_restart_c384_p7 009 failed in run_test failed REGRESSION TEST FAILED -Fri Oct 1 00:11:31 UTC 2021 -Elapsed time: 01h:13m:46s. Have a nice day! -Fri Oct 1 00:44:37 UTC 2021 +Mon Oct 4 15:03:46 UTC 2021 +Elapsed time: 01h:17m:15s. Have a nice day! +Mon Oct 4 15:16:36 UTC 2021 Start Regression test -Compile 001 elapsed time 666 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 573 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_22555/cpld_control_c384_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_53522/cpld_control_c384_p7 Checking test 001 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -2907,13 +2907,13 @@ Checking test 001 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1047.128326 + 0: The total amount of wall time = 1203.894044 Test 001 cpld_control_c384_p7 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /scratch1/NCEPDEV/stmp2/Denise.Worthen/FV3_RT/rt_22555/cpld_restart_c384_p7 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /scratch1/NCEPDEV/stmp2/Minsuk.Ji/FV3_RT/rt_53522/cpld_restart_c384_p7 Checking test 002 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -2956,11 +2956,11 @@ Checking test 002 cpld_restart_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 608.026658 + 0: The total amount of wall time = 590.652500 Test 002 cpld_restart_c384_p7 PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 01:36:27 UTC 2021 -Elapsed time: 00h:51m:52s. Have a nice day! +Mon Oct 4 16:07:09 UTC 2021 +Elapsed time: 00h:50m:34s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index ab6f905495..890e4f6ade 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,20 +1,20 @@ -Fri Oct 1 04:25:26 GMT 2021 +Fri Oct 1 21:37:59 GMT 2021 Start Regression test -Compile 001 elapsed time 2491 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 228 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 2495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 2556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 259 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 200 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 2336 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 2357 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 280 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 010 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 2307 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_control_p7 +Compile 001 elapsed time 2216 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 221 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 2254 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 2362 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 242 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 215 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 2112 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 2140 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 285 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 010 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 2064 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -64,13 +64,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 320.410776 + 0: The total amount of wall time = 339.125365 Test 001 cpld_control_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_restart_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -120,13 +120,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 197.400393 + 0: The total amount of wall time = 210.900080 Test 002 cpld_restart_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_2threads_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -176,13 +176,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1045.074150 + 0: The total amount of wall time = 1055.417838 Test 003 cpld_2threads_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_wave_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_control_wave_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_wave_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_control_wave_p7 Checking test 004 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -235,13 +235,13 @@ Checking test 004 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 527.853650 + 0: The total amount of wall time = 538.410037 Test 004 cpld_control_wave_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_control_c192_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_control_c192_p7 Checking test 005 cpld_control_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -291,13 +291,13 @@ Checking test 005 cpld_control_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 1644.354876 + 0: The total amount of wall time = 1645.094792 Test 005 cpld_control_c192_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_restart_c192_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_restart_c192_p7 Checking test 006 cpld_restart_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -347,13 +347,13 @@ Checking test 006 cpld_restart_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - 0: The total amount of wall time = 1235.406657 + 0: The total amount of wall time = 1251.606034 Test 006 cpld_restart_c192_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_control_c384_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_control_c384_p7 Checking test 007 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -396,13 +396,13 @@ Checking test 007 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1457.863823 + 0: The total amount of wall time = 1487.786230 Test 007 cpld_control_c384_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_restart_c384_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_restart_c384_p7 Checking test 008 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -445,13 +445,13 @@ Checking test 008 cpld_restart_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 865.764152 + 0: The total amount of wall time = 878.632559 Test 008 cpld_restart_c384_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_bmark_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_bmark_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_bmark_p7 Checking test 009 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -496,13 +496,13 @@ Checking test 009 cpld_bmark_p7 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 = 1274.150004 + 0: The total amount of wall time = 1304.491562 Test 009 cpld_bmark_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_debug_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/cpld_debug_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_debug_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/cpld_debug_p7 Checking test 010 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -552,13 +552,13 @@ Checking test 010 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 863.306977 + 0: The total amount of wall time = 880.189748 Test 010 cpld_debug_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -605,13 +605,13 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.893096 + 0: The total amount of wall time = 184.885269 Test 011 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_decomp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -654,13 +654,13 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.397893 + 0: The total amount of wall time = 188.162916 Test 012 control_decomp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_2threads Checking test 013 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -703,13 +703,13 @@ Checking test 013 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 834.108843 + 0: The total amount of wall time = 787.250556 Test 013 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_restart Checking test 014 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -748,13 +748,13 @@ Checking test 014 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.580518 + 0: The total amount of wall time = 91.575041 Test 014 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_fhzero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_fhzero Checking test 015 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -797,13 +797,13 @@ Checking test 015 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.764271 + 0: The total amount of wall time = 176.560536 Test 015 control_fhzero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_CubedSphereGrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_CubedSphereGrid Checking test 016 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -830,13 +830,13 @@ Checking test 016 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 167.915600 + 0: The total amount of wall time = 180.934245 Test 016 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_wrtGauss_netcdf_parallel Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -847,13 +847,13 @@ Checking test 017 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 175.873466 + 0: The total amount of wall time = 184.369900 Test 017 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_c48 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_c48 Checking test 018 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -892,13 +892,13 @@ Checking test 018 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 534.915669 +0: The total amount of wall time = 532.897502 Test 018 control_c48 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_c192 Checking test 019 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -909,13 +909,13 @@ Checking test 019 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 676.541812 + 0: The total amount of wall time = 667.627117 Test 019 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_c384 Checking test 020 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -926,13 +926,13 @@ Checking test 020 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 923.615960 + 0: The total amount of wall time = 934.685081 Test 020 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_c384gdas +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_c384gdas Checking test 021 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -975,13 +975,13 @@ Checking test 021 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 816.304090 + 0: The total amount of wall time = 842.651604 Test 021 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_stochy Checking test 022 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -992,26 +992,26 @@ Checking test 022 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 116.331597 + 0: The total amount of wall time = 116.252915 Test 022 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_stochy_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_stochy_restart Checking test 023 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.157752 + 0: The total amount of wall time = 66.907179 Test 023 control_stochy_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_lndp Checking test 024 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1022,13 +1022,13 @@ Checking test 024 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.304010 + 0: The total amount of wall time = 111.724428 Test 024 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_p7 Checking test 025 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1075,13 +1075,13 @@ Checking test 025 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 214.070365 + 0: The total amount of wall time = 245.423637 Test 025 control_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_restart_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_restart_p7 Checking test 026 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1120,13 +1120,13 @@ Checking test 026 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.658886 + 0: The total amount of wall time = 140.357682 Test 026 control_restart_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_decomp_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_decomp_p7 Checking test 027 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1169,13 +1169,13 @@ Checking test 027 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 224.281717 + 0: The total amount of wall time = 249.790098 Test 027 control_decomp_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_2threads_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_2threads_p7 Checking test 028 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1218,13 +1218,13 @@ Checking test 028 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 834.567199 + 0: The total amount of wall time = 894.153413 Test 028 control_2threads_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_control Checking test 029 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1232,25 +1232,25 @@ Checking test 029 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 = 434.352227 + 0: The total amount of wall time = 449.354322 Test 029 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_restart Checking test 030 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 = 256.929212 + 0: The total amount of wall time = 244.716672 Test 030 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_quilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_quilt Checking test 031 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 031 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 425.724139 + 0: The total amount of wall time = 441.737001 Test 031 regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_quilt_hafs Checking test 032 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1276,27 +1276,27 @@ Checking test 032 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 425.402871 + 0: The total amount of wall time = 443.962042 Test 032 regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_quilt_netcdf_parallel Checking test 033 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 425.172148 + 0: The total amount of wall time = 432.869180 Test 033 regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_quilt_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_quilt_RRTMGP Checking test 034 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1307,13 +1307,13 @@ Checking test 034 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 539.949842 + 0: The total amount of wall time = 539.782062 Test 034 regional_quilt_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_gsd Checking test 035 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,13 +1402,13 @@ Checking test 035 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 316.366862 + 0: The total amount of wall time = 350.598780 Test 035 fv3_gsd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_rrfs_v1alpha +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_rrfs_v1alpha Checking test 036 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1473,13 +1473,13 @@ Checking test 036 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 120.621223 + 0: The total amount of wall time = 134.610535 Test 036 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rap -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_rap +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rap +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_rap Checking test 037 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1544,13 +1544,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 = 126.798033 + 0: The total amount of wall time = 137.606783 Test 037 fv3_rap PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_hrrr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_hrrr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_hrrr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_hrrr Checking test 038 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1615,13 +1615,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 = 126.889701 + 0: The total amount of wall time = 129.593549 Test 038 fv3_hrrr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_rrfs_v1beta +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_rrfs_v1beta Checking test 039 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1686,13 +1686,13 @@ Checking test 039 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 = 131.816393 + 0: The total amount of wall time = 138.808618 Test 039 fv3_rrfs_v1beta PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_rrtmgp Checking test 040 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1703,13 +1703,13 @@ Checking test 040 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 263.988248 + 0: The total amount of wall time = 274.874053 Test 040 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_csawmg Checking test 041 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1720,13 +1720,13 @@ Checking test 041 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 383.594462 + 0: The total amount of wall time = 384.842813 Test 041 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_csawmgt Checking test 042 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1737,13 +1737,13 @@ Checking test 042 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 470.113965 + 0: The total amount of wall time = 461.361748 Test 042 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_flake Checking test 043 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1754,13 +1754,13 @@ Checking test 043 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 322.452675 + 0: The total amount of wall time = 298.830187 Test 043 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_ras Checking test 044 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1771,13 +1771,13 @@ Checking test 044 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 259.508955 + 0: The total amount of wall time = 240.980725 Test 044 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_thompson Checking test 045 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1788,13 +1788,13 @@ Checking test 045 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 287.644812 + 0: The total amount of wall time = 288.549147 Test 045 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_thompson_no_aero Checking test 046 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1805,13 +1805,13 @@ Checking test 046 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 298.716295 + 0: The total amount of wall time = 272.077999 Test 046 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_HAFS_v0_hwrf_thompson Checking test 047 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1876,13 +1876,13 @@ Checking test 047 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 = 217.954680 + 0: The total amount of wall time = 196.387249 Test 047 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_esg_HAFS_v0_hwrf_thompson Checking test 048 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1897,39 +1897,39 @@ Checking test 048 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 = 364.054267 + 0: The total amount of wall time = 364.111963 Test 048 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_debug Checking test 049 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.672966 + 0: The total amount of wall time = 191.940931 Test 049 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_2threads_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_2threads_debug Checking test 050 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.403399 + 0: The total amount of wall time = 369.515689 Test 050 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_CubedSphereGrid_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_CubedSphereGrid_debug Checking test 051 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1956,169 +1956,169 @@ Checking test 051 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 212.052501 + 0: The total amount of wall time = 208.605875 Test 051 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_wrtGauss_netcdf_parallel_debug Checking test 052 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.786364 + 0: The total amount of wall time = 200.977879 Test 052 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_stochy_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_stochy_debug Checking test 053 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.886863 + 0: The total amount of wall time = 222.671017 Test 053 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_lndp_debug Checking test 054 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.614771 + 0: The total amount of wall time = 204.077686 Test 054 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_rrtmgp_debug Checking test 055 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 217.590964 + 0: The total amount of wall time = 221.019351 Test 055 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_csawmg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_csawmg_debug Checking test 056 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 316.024176 + 0: The total amount of wall time = 331.390598 Test 056 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_csawmgt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_csawmgt_debug Checking test 057 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 356.747117 + 0: The total amount of wall time = 385.756693 Test 057 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_ras_debug Checking test 058 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.727567 + 0: The total amount of wall time = 203.280173 Test 058 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_diag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_diag_debug Checking test 059 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.305173 + 0: The total amount of wall time = 206.250803 Test 059 control_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_debug_p7 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_debug_p7 Checking test 060 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.191271 + 0: The total amount of wall time = 319.274792 Test 060 control_debug_p7 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_thompson_debug Checking test 061 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.287963 + 0: The total amount of wall time = 228.346834 Test 061 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_thompson_no_aero_debug Checking test 062 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 218.084897 + 0: The total amount of wall time = 219.976027 Test 062 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_thompson_extdiag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_thompson_extdiag_debug Checking test 063 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 237.784251 + 0: The total amount of wall time = 237.888296 Test 063 control_thompson_extdiag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_control_debug Checking test 064 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2126,26 +2126,26 @@ Checking test 064 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 = 324.221748 + 0: The total amount of wall time = 332.542371 Test 064 regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/regional_quilt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/regional_quilt_debug Checking test 065 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 327.512639 + 0: The total amount of wall time = 328.539767 Test 065 regional_quilt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_gsd_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_gsd_debug Checking test 066 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2210,13 +2210,13 @@ Checking test 066 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 = 323.053042 + 0: The total amount of wall time = 325.706438 Test 066 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_gsd_diag_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_gsd_diag_debug Checking test 067 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2243,13 +2243,13 @@ Checking test 067 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 401.436778 + 0: The total amount of wall time = 441.029546 Test 067 fv3_gsd_diag_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_rrfs_v1beta_debug Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2314,13 +2314,13 @@ Checking test 068 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.358125 + 0: The total amount of wall time = 257.601608 Test 068 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_rrfs_v1alpha_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_rrfs_v1alpha_debug Checking test 069 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2385,13 +2385,13 @@ Checking test 069 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.502412 + 0: The total amount of wall time = 258.372570 Test 069 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_HAFS_v0_hwrf_thompson_debug Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2456,13 +2456,13 @@ Checking test 070 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 268.521465 + 0: The total amount of wall time = 310.032483 Test 070 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2477,51 +2477,51 @@ Checking test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 504.361887 + 0: The total amount of wall time = 509.746310 Test 071 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/hafs_regional_atm +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/hafs_regional_atm Checking test 072 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1113.233344 + 0: The total amount of wall time = 1126.900130 Test 072 hafs_regional_atm PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/hafs_regional_atm_ocn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/hafs_regional_atm_ocn Checking test 073 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 476.436911 + 0: The total amount of wall time = 504.812033 Test 073 hafs_regional_atm_ocn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/hafs_regional_docn +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/hafs_regional_docn Checking test 074 hafs_regional_docn results .... Comparing atmf006.nc .........OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 460.357674 + 0: The total amount of wall time = 465.980853 Test 074 hafs_regional_docn PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/hafs_regional_docn_oisst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/hafs_regional_docn_oisst Checking test 075 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2529,97 +2529,97 @@ Checking test 075 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 457.206005 + 0: The total amount of wall time = 462.208526 Test 075 hafs_regional_docn_oisst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/hafs_regional_datm_cdeps +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/hafs_regional_datm_cdeps Checking test 076 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1221.308348 + 0: The total amount of wall time = 1218.919823 Test 076 hafs_regional_datm_cdeps PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_control_cfsr Checking test 077 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 197.647209 + 0: The total amount of wall time = 194.931265 Test 077 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_restart_cfsr Checking test 078 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 119.197436 + 0: The total amount of wall time = 125.503561 Test 078 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_control_gefs Checking test 079 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.830571 + 0: The total amount of wall time = 191.976461 Test 079 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_stochy_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_stochy_gefs Checking test 080 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 203.619236 + 0: The total amount of wall time = 193.145853 Test 080 datm_cdeps_stochy_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_bulk_cfsr Checking test 081 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 195.678681 + 0: The total amount of wall time = 197.077650 Test 081 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_bulk_gefs Checking test 082 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 193.569050 + 0: The total amount of wall time = 193.543998 Test 082 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_mx025_cfsr Checking test 083 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2628,13 +2628,13 @@ Checking test 083 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 420.762458 + 0: The total amount of wall time = 425.051551 Test 083 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_mx025_gefs Checking test 084 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2643,35 +2643,35 @@ Checking test 084 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 411.110915 + 0: The total amount of wall time = 414.849263 Test 084 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_multiple_files_cfsr Checking test 085 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 197.681214 + 0: The total amount of wall time = 192.999714 Test 085 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/datm_cdeps_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/datm_cdeps_debug_cfsr Checking test 086 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 568.297085 + 0: The total amount of wall time = 569.596401 Test 086 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_42397/control_atmwav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_39300/control_atmwav Checking test 087 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2715,11 +2715,11 @@ Checking test 087 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 184.875778 + 0: The total amount of wall time = 177.833865 Test 087 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 10:25:04 GMT 2021 -Elapsed time: 05h:59m:38s. Have a nice day! +Fri Oct 1 23:46:28 GMT 2021 +Elapsed time: 02h:08m:30s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 34562b8d9f..7798e11c2c 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,20 +1,20 @@ -Fri Oct 1 05:35:20 CDT 2021 +Sat Oct 2 22:46:43 CDT 2021 Start Regression test -Compile 001 elapsed time 631 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 157 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 590 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 606 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 162 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 135 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 567 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 582 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 131 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 542 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_control_p7 +Compile 001 elapsed time 580 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 163 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 544 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 557 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 189 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 146 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 520 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 524 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 199 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 110 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 486 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -64,13 +64,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 308.183536 + 0: The total amount of wall time = 310.981348 Test 001 cpld_control_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_restart_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -120,13 +120,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 219.723486 + 0: The total amount of wall time = 363.942176 Test 002 cpld_restart_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_2threads_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -176,13 +176,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 329.556550 + 0: The total amount of wall time = 314.442940 Test 003 cpld_2threads_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_decomp_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -232,13 +232,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 295.583323 + 0: The total amount of wall time = 288.103779 Test 004 cpld_decomp_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_wave_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_control_wave_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_wave_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_control_wave_p7 Checking test 005 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -291,15 +291,125 @@ Checking test 005 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 469.822937 + 0: The total amount of wall time = 476.175684 Test 005 cpld_control_wave_p7 PASS -Test 006 cpld_control_c192_p7 FAIL +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_control_c192_p7 +Checking test 006 cpld_control_c192_p7 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-24-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK + + 0: The total amount of wall time = 1267.714130 + +Test 006 cpld_control_c192_p7 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c192_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_restart_c192_p7 +Checking test 007 cpld_restart_c192_p7 results .... + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-24-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_control_c384_p7 + 0: The total amount of wall time = 921.997032 + +Test 007 cpld_restart_c192_p7 PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_control_c384_p7 Checking test 008 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -342,13 +452,13 @@ Checking test 008 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1171.892707 + 0: The total amount of wall time = 1207.891678 Test 008 cpld_control_c384_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c384_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_restart_c384_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_control_c384_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_restart_c384_p7 Checking test 009 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -391,13 +501,13 @@ Checking test 009 cpld_restart_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 742.702957 + 0: The total amount of wall time = 826.726590 Test 009 cpld_restart_c384_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_bmark_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_bmark_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_bmark_p7 Checking test 010 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -442,13 +552,13 @@ Checking test 010 cpld_bmark_p7 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 = 1072.692630 + 0: The total amount of wall time = 1126.504574 Test 010 cpld_bmark_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_debug_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/cpld_debug_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/cpld_debug_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/cpld_debug_p7 Checking test 011 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -498,13 +608,13 @@ Checking test 011 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 741.627813 + 0: The total amount of wall time = 729.875698 Test 011 cpld_debug_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -551,13 +661,13 @@ Checking test 012 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 130.323772 + 0: The total amount of wall time = 128.341988 Test 012 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_decomp Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -600,13 +710,13 @@ Checking test 013 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.525750 + 0: The total amount of wall time = 143.389100 Test 013 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -649,13 +759,13 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.576543 + 0: The total amount of wall time = 148.657859 Test 014 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -694,13 +804,13 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 76.476035 + 0: The total amount of wall time = 75.008017 Test 015 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_fhzero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -743,13 +853,13 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 125.022682 + 0: The total amount of wall time = 125.522516 Test 016 control_fhzero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -776,13 +886,13 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 125.764808 + 0: The total amount of wall time = 125.354874 Test 017 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -793,13 +903,13 @@ Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 133.106384 + 0: The total amount of wall time = 133.842917 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_c48 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -838,13 +948,13 @@ Checking test 019 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 307.778398 +0: The total amount of wall time = 306.383857 Test 019 control_c48 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -855,13 +965,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 503.908630 + 0: The total amount of wall time = 516.128328 Test 020 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -872,13 +982,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 814.202982 + 0: The total amount of wall time = 948.404201 Test 021 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -921,13 +1031,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 732.779402 + 0: The total amount of wall time = 691.368601 Test 022 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -938,26 +1048,26 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.923823 + 0: The total amount of wall time = 86.315356 Test 023 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_stochy_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 55.721610 + 0: The total amount of wall time = 68.426595 Test 024 control_stochy_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -968,13 +1078,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.630689 + 0: The total amount of wall time = 84.143540 Test 025 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_p7 Checking test 026 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1021,13 +1131,13 @@ Checking test 026 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.370163 + 0: The total amount of wall time = 215.872950 Test 026 control_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_restart_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_restart_p7 Checking test 027 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1066,13 +1176,13 @@ Checking test 027 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.655039 + 0: The total amount of wall time = 168.712684 Test 027 control_restart_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_decomp_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_decomp_p7 Checking test 028 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1115,13 +1225,13 @@ Checking test 028 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.079575 + 0: The total amount of wall time = 227.069944 Test 028 control_decomp_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_2threads_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_2threads_p7 Checking test 029 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1164,13 +1274,13 @@ Checking test 029 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 244.589213 + 0: The total amount of wall time = 242.133069 Test 029 control_2threads_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_control Checking test 030 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1178,25 +1288,25 @@ Checking test 030 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 = 299.978520 + 0: The total amount of wall time = 295.360300 Test 030 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_restart Checking test 031 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 = 174.056936 + 0: The total amount of wall time = 173.672101 Test 031 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt Checking test 032 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1207,13 +1317,13 @@ Checking test 032 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 310.767754 + 0: The total amount of wall time = 311.357961 Test 032 regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt_2threads Checking test 033 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1224,13 +1334,13 @@ Checking test 033 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 225.390076 + 0: The total amount of wall time = 226.162020 Test 033 regional_quilt_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt_hafs Checking test 034 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1239,27 +1349,27 @@ Checking test 034 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 305.692295 + 0: The total amount of wall time = 312.145395 Test 034 regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt_netcdf_parallel Checking test 035 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 319.875131 + 0: The total amount of wall time = 317.298448 Test 035 regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt_RRTMGP Checking test 036 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1270,13 +1380,13 @@ Checking test 036 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 399.251042 + 0: The total amount of wall time = 399.339004 Test 036 regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1365,13 +1475,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 = 233.201717 + 0: The total amount of wall time = 229.723599 Test 037 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_rrfs_v1alpha Checking test 038 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1436,13 +1546,13 @@ Checking test 038 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.988196 + 0: The total amount of wall time = 102.504149 Test 038 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1507,13 +1617,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.486730 + 0: The total amount of wall time = 103.256308 Test 039 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1578,13 +1688,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.972468 + 0: The total amount of wall time = 103.487058 Test 040 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1649,13 +1759,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 = 99.490296 + 0: The total amount of wall time = 119.644291 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_rrtmgp Checking test 042 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1666,13 +1776,13 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.677892 + 0: The total amount of wall time = 209.897025 Test 042 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_csawmg Checking test 043 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1683,13 +1793,13 @@ Checking test 043 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 332.281909 + 0: The total amount of wall time = 325.483508 Test 043 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_csawmgt Checking test 044 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1700,13 +1810,13 @@ Checking test 044 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 381.426710 + 0: The total amount of wall time = 389.292020 Test 044 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_flake Checking test 045 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1717,13 +1827,13 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 223.296333 + 0: The total amount of wall time = 228.690711 Test 045 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_ras Checking test 046 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1734,13 +1844,13 @@ Checking test 046 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 395.621072 + 0: The total amount of wall time = 173.945602 Test 046 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_thompson Checking test 047 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1751,13 +1861,13 @@ Checking test 047 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.060537 + 0: The total amount of wall time = 211.339986 Test 047 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_thompson_no_aero Checking test 048 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1768,13 +1878,13 @@ Checking test 048 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.428074 + 0: The total amount of wall time = 204.855817 Test 048 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1839,13 +1949,13 @@ Checking test 049 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 = 152.179772 + 0: The total amount of wall time = 156.420958 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1860,39 +1970,39 @@ Checking test 050 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.557008 + 0: The total amount of wall time = 294.692862 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.069423 + 0: The total amount of wall time = 172.069148 Test 051 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_2threads_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 239.261269 + 0: The total amount of wall time = 233.721062 Test 052 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1919,169 +2029,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 184.005790 + 0: The total amount of wall time = 179.338696 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.417879 + 0: The total amount of wall time = 167.801745 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.332348 + 0: The total amount of wall time = 187.265599 Test 055 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.962888 + 0: The total amount of wall time = 171.987467 Test 056 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_rrtmgp_debug Checking test 057 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 182.276161 + 0: The total amount of wall time = 185.958711 Test 057 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_csawmg_debug Checking test 058 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.190844 + 0: The total amount of wall time = 299.550700 Test 058 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_csawmgt_debug Checking test 059 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 334.083957 + 0: The total amount of wall time = 330.814474 Test 059 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_ras_debug Checking test 060 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.015586 + 0: The total amount of wall time = 183.210230 Test 060 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_diag_debug Checking test 061 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.340936 + 0: The total amount of wall time = 181.728607 Test 061 control_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_debug_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_debug_p7 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_debug_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_debug_p7 Checking test 062 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.777345 + 0: The total amount of wall time = 248.328587 Test 062 control_debug_p7 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_thompson_debug Checking test 063 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 188.296718 + 0: The total amount of wall time = 193.803752 Test 063 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_thompson_no_aero_debug Checking test 064 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 186.903490 + 0: The total amount of wall time = 185.470206 Test 064 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_thompson_extdiag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_thompson_extdiag_debug Checking test 065 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.355113 + 0: The total amount of wall time = 206.903626 Test 065 control_thompson_extdiag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2089,26 +2199,26 @@ Checking test 066 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 = 253.063502 + 0: The total amount of wall time = 250.679855 Test 066 regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_regional_quilt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/regional_quilt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_regional_quilt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/regional_quilt_debug Checking test 067 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 265.563523 + 0: The total amount of wall time = 273.780254 Test 067 regional_quilt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2173,13 +2283,13 @@ Checking test 068 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 = 271.440103 + 0: The total amount of wall time = 266.007199 Test 068 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_gsd_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_gsd_diag_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_gsd_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_gsd_diag_debug Checking test 069 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2206,13 +2316,13 @@ Checking test 069 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 399.313058 + 0: The total amount of wall time = 356.399711 Test 069 fv3_gsd_diag_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_rrfs_v1beta_debug Checking test 070 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2387,13 @@ Checking test 070 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 = 219.246054 + 0: The total amount of wall time = 214.273524 Test 070 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_rrfs_v1alpha_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_rrfs_v1alpha_debug Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2458,13 @@ Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.771226 + 0: The total amount of wall time = 225.898646 Test 071 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2529,13 @@ Checking test 072 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 = 223.260072 + 0: The total amount of wall time = 220.515635 Test 072 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2440,37 +2550,37 @@ Checking test 073 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.757689 + 0: The total amount of wall time = 418.509495 Test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/hafs_regional_atm +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/hafs_regional_atm Checking test 074 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 293.854282 + 0: The total amount of wall time = 281.460341 Test 074 hafs_regional_atm PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/hafs_regional_atm_ocn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/hafs_regional_atm_ocn Checking test 075 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 394.848554 + 0: The total amount of wall time = 400.699789 Test 075 hafs_regional_atm_ocn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/hafs_regional_docn +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/hafs_regional_docn Checking test 076 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2478,13 +2588,13 @@ Checking test 076 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 367.455886 + 0: The total amount of wall time = 394.888121 Test 076 hafs_regional_docn PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/hafs_regional_docn_oisst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/hafs_regional_docn_oisst Checking test 077 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2492,97 +2602,97 @@ Checking test 077 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 378.101955 + 0: The total amount of wall time = 382.304579 Test 077 hafs_regional_docn_oisst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/hafs_regional_datm_cdeps +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/hafs_regional_datm_cdeps Checking test 078 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 925.472998 + 0: The total amount of wall time = 936.690113 Test 078 hafs_regional_datm_cdeps PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_control_cfsr Checking test 079 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 161.591991 + 0: The total amount of wall time = 148.642673 Test 079 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_restart_cfsr Checking test 080 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.553096 + 0: The total amount of wall time = 100.147823 Test 080 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_control_gefs Checking test 081 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 163.556605 + 0: The total amount of wall time = 145.080270 Test 081 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_stochy_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_stochy_gefs Checking test 082 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.103275 + 0: The total amount of wall time = 152.405520 Test 082 datm_cdeps_stochy_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_bulk_cfsr Checking test 083 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.782270 + 0: The total amount of wall time = 154.222618 Test 083 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_bulk_gefs Checking test 084 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.163971 + 0: The total amount of wall time = 146.700034 Test 084 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_mx025_cfsr Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2591,13 +2701,13 @@ Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 358.734188 + 0: The total amount of wall time = 354.729522 Test 085 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_mx025_gefs Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2606,35 +2716,35 @@ Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 364.833347 + 0: The total amount of wall time = 352.403377 Test 086 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_multiple_files_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_multiple_files_cfsr Checking test 087 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.337681 + 0: The total amount of wall time = 146.832933 Test 087 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/datm_cdeps_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/datm_cdeps_debug_cfsr Checking test 088 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 452.984828 + 0: The total amount of wall time = 449.947084 Test 088 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_atmwav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_atmwav Checking test 089 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2678,13 +2788,13 @@ Checking test 089 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 144.987782 + 0: The total amount of wall time = 147.020100 Test 089 control_atmwav PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_350928/control_c384gdas_wav +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/INTEL/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_125386/control_c384gdas_wav Checking test 090 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -2730,134 +2840,11 @@ Checking test 090 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 791.811314 + 0: The total amount of wall time = 804.156414 Test 090 control_c384gdas_wav PASS -FAILED TESTS: -Test cpld_control_c192_p7 006 failed failed -Test cpld_control_c192_p7 006 failed in run_test failed - -REGRESSION TEST FAILED -Fri Oct 1 08:47:06 CDT 2021 -Elapsed time: 03h:11m:47s. Have a nice day! -Fri Oct 1 08:47:44 CDT 2021 -Start Regression test - -Compile 001 elapsed time 626 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_12529/cpld_control_c192_p7 -Checking test 001 cpld_control_c192_p7 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-24-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - - 0: The total amount of wall time = 1241.098045 - -Test 001 cpld_control_c192_p7 PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/INTEL/cpld_control_c192_p7 -working dir = /work/noaa/stmp/dworthen/stmp/dworthen/FV3_RT/rt_12529/cpld_restart_c192_p7 -Checking test 002 cpld_restart_c192_p7 results .... - Comparing sfcf048.tile1.nc .........OK - Comparing sfcf048.tile2.nc .........OK - Comparing sfcf048.tile3.nc .........OK - Comparing sfcf048.tile4.nc .........OK - Comparing sfcf048.tile5.nc .........OK - Comparing sfcf048.tile6.nc .........OK - Comparing atmf048.tile1.nc .........OK - Comparing atmf048.tile2.nc .........OK - Comparing atmf048.tile3.nc .........OK - Comparing atmf048.tile4.nc .........OK - Comparing atmf048.tile5.nc .........OK - Comparing atmf048.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-24-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK - - 0: The total amount of wall time = 886.394350 - -Test 002 cpld_restart_c192_p7 PASS - REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 09:45:18 CDT 2021 -Elapsed time: 00h:57m:34s. Have a nice day! +Sun Oct 3 00:20:09 CDT 2021 +Elapsed time: 01h:33m:26s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 967df04a0d..62f2cb3db9 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,14 +1,14 @@ -Fri Oct 1 10:51:33 UTC 2021 +Fri Oct 1 20:16:05 UTC 2021 Start Regression test -Compile 001 elapsed time 982 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 1021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 547 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 502 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 965 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 941 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 952 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 570 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 938 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -55,13 +55,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 150.373781 +The total amount of wall time = 144.392921 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -104,13 +104,13 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 153.527982 +The total amount of wall time = 150.046456 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -149,13 +149,13 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.853889 +The total amount of wall time = 78.276115 Test 003 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_fhzero +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_fhzero Checking test 004 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -198,13 +198,13 @@ Checking test 004 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 148.449496 +The total amount of wall time = 138.579759 Test 004 control_fhzero PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_CubedSphereGrid Checking test 005 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -231,13 +231,13 @@ Checking test 005 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 141.679491 +The total amount of wall time = 139.911646 Test 005 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_wrtGauss_netcdf_parallel Checking test 006 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -248,13 +248,13 @@ Checking test 006 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 145.571908 +The total amount of wall time = 141.543838 Test 006 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c48 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_c48 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c48 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_c48 Checking test 007 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -293,13 +293,13 @@ Checking test 007 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 432.252668 +The total amount of wall time = 428.054910 Test 007 control_c48 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c192 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_c192 Checking test 008 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -310,13 +310,13 @@ Checking test 008 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 595.654521 +The total amount of wall time = 568.157699 Test 008 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_stochy Checking test 009 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -327,26 +327,26 @@ Checking test 009 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 101.657059 +The total amount of wall time = 105.907611 Test 009 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_stochy_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_stochy_restart Checking test 010 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 70.123537 +The total amount of wall time = 54.055053 Test 010 control_stochy_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_lndp +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_lndp Checking test 011 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -357,13 +357,13 @@ Checking test 011 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 99.283173 +The total amount of wall time = 100.386602 Test 011 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_p7 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_p7 Checking test 012 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -410,13 +410,13 @@ Checking test 012 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.973977 +The total amount of wall time = 242.209244 Test 012 control_p7 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_restart_p7 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_restart_p7 Checking test 013 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -455,13 +455,13 @@ Checking test 013 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 191.581996 +The total amount of wall time = 136.241812 Test 013 control_restart_p7 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_decomp_p7 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_decomp_p7 Checking test 014 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -504,13 +504,13 @@ Checking test 014 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.084959 +The total amount of wall time = 245.545942 Test 014 control_decomp_p7 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_control Checking test 015 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -518,25 +518,25 @@ Checking test 015 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 = 390.442489 +The total amount of wall time = 366.345094 Test 015 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_restart Checking test 016 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 252.078976 +The total amount of wall time = 219.349837 Test 016 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_quilt Checking test 017 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -547,13 +547,13 @@ Checking test 017 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 358.496863 +The total amount of wall time = 348.752038 Test 017 regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_quilt_hafs Checking test 018 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -562,13 +562,13 @@ Checking test 018 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 356.256975 +The total amount of wall time = 365.604094 Test 018 regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_quilt_netcdf_parallel Checking test 019 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -576,13 +576,13 @@ Checking test 019 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 351.088593 +The total amount of wall time = 362.907478 Test 019 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_quilt_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_quilt_RRTMGP Checking test 020 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -593,13 +593,13 @@ Checking test 020 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 454.467039 +The total amount of wall time = 456.202046 Test 020 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_gsd Checking test 021 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -688,13 +688,13 @@ Checking test 021 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 276.332654 +The total amount of wall time = 249.041330 Test 021 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_rrfs_v1alpha +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_rrfs_v1alpha Checking test 022 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -759,13 +759,13 @@ Checking test 022 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.770115 +The total amount of wall time = 105.209800 Test 022 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rap +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_rap Checking test 023 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -830,13 +830,13 @@ Checking test 023 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 126.137876 +The total amount of wall time = 105.855448 Test 023 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_hrrr +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_hrrr Checking test 024 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -901,13 +901,13 @@ Checking test 024 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 118.280426 +The total amount of wall time = 105.693940 Test 024 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_rrfs_v1beta Checking test 025 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -972,13 +972,13 @@ Checking test 025 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 124.423639 +The total amount of wall time = 105.004906 Test 025 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_rrtmgp +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_rrtmgp Checking test 026 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -989,13 +989,13 @@ Checking test 026 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 252.044779 +The total amount of wall time = 229.117312 Test 026 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmg +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_csawmg Checking test 027 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1006,13 +1006,13 @@ Checking test 027 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 408.172471 +The total amount of wall time = 337.400617 Test 027 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmgt +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_csawmgt Checking test 028 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1023,13 +1023,13 @@ Checking test 028 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 481.771726 +The total amount of wall time = 434.473767 Test 028 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_flake +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_flake Checking test 029 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1040,13 +1040,13 @@ Checking test 029 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 289.782030 +The total amount of wall time = 239.564499 Test 029 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_ras +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_ras Checking test 030 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 030 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 230.777836 +The total amount of wall time = 193.891555 Test 030 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_HAFS_v0_hwrf_thompson Checking test 031 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1128,13 +1128,13 @@ Checking test 031 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.498314 +The total amount of wall time = 165.909707 Test 031 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_esg_HAFS_v0_hwrf_thompson Checking test 032 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1149,26 +1149,26 @@ Checking test 032 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 = 327.716299 +The total amount of wall time = 329.302967 Test 032 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_debug Checking test 033 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.455547 +The total amount of wall time = 148.878209 Test 033 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_CubedSphereGrid_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_CubedSphereGrid_debug Checking test 034 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1195,169 +1195,169 @@ Checking test 034 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 150.265604 +The total amount of wall time = 150.691199 Test 034 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_wrtGauss_netcdf_parallel_debug Checking test 035 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.067149 +The total amount of wall time = 161.523409 Test 035 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_stochy_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_stochy_debug Checking test 036 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.668945 +The total amount of wall time = 165.788584 Test 036 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_lndp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_lndp_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_lndp_debug Checking test 037 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.935635 +The total amount of wall time = 149.543534 Test 037 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_rrtmgp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_rrtmgp_debug Checking test 038 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.174422 +The total amount of wall time = 173.995890 Test 038 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_csawmg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_csawmg_debug Checking test 039 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 285.172451 +The total amount of wall time = 255.033177 Test 039 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_csawmgt_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_csawmgt_debug Checking test 040 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.748196 +The total amount of wall time = 284.670782 Test 040 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_ras_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_ras_debug Checking test 041 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.612693 +The total amount of wall time = 158.952367 Test 041 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_diag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_diag_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_diag_debug Checking test 042 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 151.801195 +The total amount of wall time = 154.193756 Test 042 control_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_debug_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_debug_p7 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_debug_p7 +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_debug_p7 Checking test 043 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.080530 +The total amount of wall time = 220.331518 Test 043 control_debug_p7 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_thompson_debug Checking test 044 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.446502 +The total amount of wall time = 186.499572 Test 044 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_thompson_no_aero_debug Checking test 045 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.409198 +The total amount of wall time = 167.615091 Test 045 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/control_thompson_extdiag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/control_thompson_extdiag_debug Checking test 046 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.330822 +The total amount of wall time = 182.723942 Test 046 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_control_debug Checking test 047 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1365,26 +1365,26 @@ Checking test 047 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 = 257.456766 +The total amount of wall time = 265.129737 Test 047 regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/regional_quilt_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/regional_quilt_debug Checking test 048 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 250.042514 +The total amount of wall time = 262.905510 Test 048 regional_quilt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_gsd_debug Checking test 049 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1449,13 +1449,13 @@ Checking test 049 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 244.673710 +The total amount of wall time = 253.142636 Test 049 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_gsd_diag_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd_diag_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_gsd_diag_debug Checking test 050 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1482,13 +1482,13 @@ Checking test 050 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 307.446474 +The total amount of wall time = 314.351660 Test 050 fv3_gsd_diag_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_rrfs_v1beta_debug Checking test 051 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1553,13 +1553,13 @@ Checking test 051 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 = 193.121068 +The total amount of wall time = 207.736267 Test 051 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_rrfs_v1alpha_debug Checking test 052 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1624,13 +1624,13 @@ Checking test 052 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 193.192724 +The total amount of wall time = 196.798417 Test 052 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_HAFS_v0_hwrf_thompson_debug Checking test 053 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1695,13 +1695,13 @@ Checking test 053 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 = 200.061186 +The total amount of wall time = 198.338822 Test 053 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1716,35 +1716,35 @@ Checking test 054 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 = 364.284092 +The total amount of wall time = 374.577956 Test 054 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/hafs_regional_atm +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/hafs_regional_atm Checking test 055 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 497.762979 +The total amount of wall time = 494.756124 Test 055 hafs_regional_atm PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_10432/hafs_regional_atm_ocn +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Dom.Heinzeller/FV3_RT/rt_14207/hafs_regional_atm_ocn Checking test 056 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 645.126450 +The total amount of wall time = 515.113072 Test 056 hafs_regional_atm_ocn PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 11:23:21 UTC 2021 -Elapsed time: 00h:31m:49s. Have a nice day! +Fri Oct 1 20:45:53 UTC 2021 +Elapsed time: 00h:29m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 33ec18eaa2..1864af89f2 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,20 +1,20 @@ -Fri Oct 1 01:04:13 UTC 2021 +Fri Oct 1 20:16:08 UTC 2021 Start Regression test -Compile 001 elapsed time 1369 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 477 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 356 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 1199 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1247 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 793 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 305 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 011 elapsed time 963 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_control_p7 +Compile 001 elapsed time 1607 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 472 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp,FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 358 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha,FV3_GFS_v16_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 1157 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1212 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 652 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 304 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 011 elapsed time 921 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -64,13 +64,13 @@ Checking test 001 cpld_control_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 257.605582 +[0] The total amount of wall time = 258.591431 Test 001 cpld_control_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_restart_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_restart_p7 Checking test 002 cpld_restart_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -120,13 +120,13 @@ Checking test 002 cpld_restart_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 150.539893 +[0] The total amount of wall time = 148.239959 Test 002 cpld_restart_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_2threads_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -176,13 +176,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 232.729547 +[0] The total amount of wall time = 235.911605 Test 003 cpld_2threads_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_decomp_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -232,13 +232,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 248.748113 +[0] The total amount of wall time = 247.373287 Test 004 cpld_decomp_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_wave_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_control_wave_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_wave_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_control_wave_p7 Checking test 005 cpld_control_wave_p7 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -291,13 +291,13 @@ Checking test 005 cpld_control_wave_p7 results .... Comparing 20210322.180000.out_pnt.points .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 451.105199 +[0] The total amount of wall time = 453.315131 Test 005 cpld_control_wave_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_c192_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_control_c192_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_c192_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_control_c192_p7 Checking test 006 cpld_control_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -347,13 +347,13 @@ Checking test 006 cpld_control_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK -[0] The total amount of wall time = 1337.583108 +[0] The total amount of wall time = 1333.637986 Test 006 cpld_control_c192_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_c192_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_restart_c192_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_c192_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_restart_c192_p7 Checking test 007 cpld_restart_c192_p7 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -403,13 +403,13 @@ Checking test 007 cpld_restart_c192_p7 results .... Comparing RESTART/iced.2021-03-24-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-24-21600.nc .........OK -[0] The total amount of wall time = 893.155926 +[0] The total amount of wall time = 907.301986 Test 007 cpld_restart_c192_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_c384_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_control_c384_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_c384_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_control_c384_p7 Checking test 008 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -452,13 +452,13 @@ Checking test 008 cpld_control_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1142.334402 +[0] The total amount of wall time = 1134.771730 Test 008 cpld_control_c384_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_control_c384_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_restart_c384_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_control_c384_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_restart_c384_p7 Checking test 009 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -501,13 +501,13 @@ Checking test 009 cpld_restart_c384_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 622.900747 +[0] The total amount of wall time = 629.722316 Test 009 cpld_restart_c384_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_bmark_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_bmark_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_bmark_p7 Checking test 010 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -552,13 +552,13 @@ Checking test 010 cpld_bmark_p7 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 = 1067.898604 +[0] The total amount of wall time = 1047.471919 Test 010 cpld_bmark_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/cpld_debug_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/cpld_debug_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/cpld_debug_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/cpld_debug_p7 Checking test 011 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -608,13 +608,13 @@ Checking test 011 cpld_debug_p7 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 753.185969 +[0] The total amount of wall time = 752.767156 Test 011 cpld_debug_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -661,13 +661,13 @@ Checking test 012 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 140.045256 +[0] The total amount of wall time = 139.227356 Test 012 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_decomp Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -710,13 +710,13 @@ Checking test 013 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 146.536516 +[0] The total amount of wall time = 146.464684 Test 013 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -759,13 +759,13 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 129.831586 +[0] The total amount of wall time = 128.359188 Test 014 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -804,13 +804,13 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 73.766057 +[0] The total amount of wall time = 76.454982 Test 015 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_fhzero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -853,13 +853,13 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 132.489966 +[0] The total amount of wall time = 130.937221 Test 016 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_CubedSphereGrid +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -886,30 +886,30 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 137.213299 +[0] The total amount of wall time = 134.040626 Test 017 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_wrtGauss_netcdf_parallel Checking test 018 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 142.072250 +[0] The total amount of wall time = 140.356825 Test 018 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c48 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_c48 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c48 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_c48 Checking test 019 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -948,13 +948,13 @@ Checking test 019 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 437.048004 +[0] The total amount of wall time = 433.328344 Test 019 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c192 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -965,13 +965,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 546.285570 +[0] The total amount of wall time = 545.555046 Test 020 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c384 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -982,13 +982,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1021.230423 +[0] The total amount of wall time = 1019.506874 Test 021 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c384gdas -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_c384gdas +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c384gdas +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1031,13 +1031,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 887.498217 +[0] The total amount of wall time = 900.602333 Test 022 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1048,26 +1048,26 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 92.263196 +[0] The total amount of wall time = 92.097442 Test 023 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_stochy_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_stochy_restart Checking test 024 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 50.346099 +[0] The total amount of wall time = 50.271203 Test 024 control_stochy_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_lndp +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1078,13 +1078,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 84.186220 +[0] The total amount of wall time = 84.207299 Test 025 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_p7 Checking test 026 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1131,13 +1131,13 @@ Checking test 026 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 182.151762 +[0] The total amount of wall time = 175.155184 Test 026 control_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_restart_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_restart_p7 Checking test 027 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 027 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 104.514476 +[0] The total amount of wall time = 104.572442 Test 027 control_restart_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_decomp_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_decomp_p7 Checking test 028 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 187.728665 +[0] The total amount of wall time = 180.998896 Test 028 control_decomp_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_2threads_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_2threads_p7 Checking test 029 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1274,13 +1274,13 @@ Checking test 029 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 170.970690 +[0] The total amount of wall time = 159.096211 Test 029 control_2threads_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_control Checking test 030 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1288,25 +1288,25 @@ Checking test 030 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 = 349.407779 +[0] The total amount of wall time = 350.406736 Test 030 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_restart Checking test 031 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 = 189.582427 +[0] The total amount of wall time = 187.547212 Test 031 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt Checking test 032 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1317,13 +1317,13 @@ Checking test 032 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 346.287310 +[0] The total amount of wall time = 343.720051 Test 032 regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt_2threads Checking test 033 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1334,13 +1334,13 @@ Checking test 033 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 190.710579 +[0] The total amount of wall time = 191.203801 Test 033 regional_quilt_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt_hafs Checking test 034 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1349,27 +1349,27 @@ Checking test 034 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 344.915705 +[0] The total amount of wall time = 340.194831 Test 034 regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt_netcdf_parallel Checking test 035 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc .........OK -[0] The total amount of wall time = 346.938648 +[0] The total amount of wall time = 345.322897 Test 035 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt_RRTMGP Checking test 036 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1380,13 +1380,13 @@ Checking test 036 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 467.673494 +[0] The total amount of wall time = 466.799248 Test 036 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_gsd Checking test 037 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1475,13 +1475,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 = 255.999846 +[0] The total amount of wall time = 255.440775 Test 037 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_rrfs_v1alpha +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_rrfs_v1alpha Checking test 038 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1546,13 +1546,13 @@ Checking test 038 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 102.057055 +[0] The total amount of wall time = 101.622175 Test 038 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rap -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rap +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_rap Checking test 039 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1617,13 +1617,13 @@ Checking test 039 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.214114 +[0] The total amount of wall time = 101.787290 Test 039 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_hrrr Checking test 040 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1688,13 +1688,13 @@ Checking test 040 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.670633 +[0] The total amount of wall time = 99.821913 Test 040 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_rrfs_v1beta Checking test 041 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1759,13 +1759,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 = 101.350205 +[0] The total amount of wall time = 102.513777 Test 041 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_rrtmgp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_rrtmgp Checking test 042 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1776,13 +1776,13 @@ Checking test 042 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 232.503093 +[0] The total amount of wall time = 231.867581 Test 042 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmg +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_csawmg Checking test 043 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1793,13 +1793,13 @@ Checking test 043 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 301.595664 +[0] The total amount of wall time = 300.601039 Test 043 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmgt +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_csawmgt Checking test 044 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1810,13 +1810,13 @@ Checking test 044 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 370.486709 +[0] The total amount of wall time = 369.073393 Test 044 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_flake +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_flake Checking test 045 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,13 +1827,13 @@ Checking test 045 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 245.920543 +[0] The total amount of wall time = 242.820439 Test 045 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_ras +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_ras Checking test 046 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1844,13 +1844,13 @@ Checking test 046 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 191.342223 +[0] The total amount of wall time = 190.214292 Test 046 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_thompson Checking test 047 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1861,13 +1861,13 @@ Checking test 047 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 237.303241 +[0] The total amount of wall time = 237.575597 Test 047 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_thompson_no_aero Checking test 048 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1878,13 +1878,13 @@ Checking test 048 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 228.916059 +[0] The total amount of wall time = 227.994938 Test 048 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1949,13 @@ Checking test 049 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 = 171.909889 +[0] The total amount of wall time = 171.678291 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1970,39 +1970,39 @@ Checking test 050 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 = 317.421736 +[0] The total amount of wall time = 322.515365 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 165.057696 +[0] The total amount of wall time = 164.413849 Test 051 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_2threads_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 152.636439 +[0] The total amount of wall time = 152.453201 Test 052 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_CubedSphereGrid_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2029,169 +2029,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 179.102565 +[0] The total amount of wall time = 178.469769 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 168.688991 +[0] The total amount of wall time = 167.732794 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_stochy_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 188.726941 +[0] The total amount of wall time = 188.452175 Test 055 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_lndp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.638666 +[0] The total amount of wall time = 169.204644 Test 056 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_rrtmgp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_rrtmgp_debug Checking test 057 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 188.218757 +[0] The total amount of wall time = 187.915727 Test 057 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_csawmg_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_csawmg_debug Checking test 058 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 280.346786 +[0] The total amount of wall time = 278.662267 Test 058 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_csawmgt_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_csawmgt_debug Checking test 059 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 317.835010 +[0] The total amount of wall time = 315.055291 Test 059 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_ras_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_ras_debug Checking test 060 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.300254 +[0] The total amount of wall time = 170.541193 Test 060 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_diag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_diag_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_diag_debug Checking test 061 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 174.773642 +[0] The total amount of wall time = 173.771772 Test 061 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_debug_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_debug_p7 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_debug_p7 +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_debug_p7 Checking test 062 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 236.187066 +[0] The total amount of wall time = 234.980665 Test 062 control_debug_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_thompson_debug Checking test 063 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 193.384362 +[0] The total amount of wall time = 192.552909 Test 063 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_thompson_no_aero_debug Checking test 064 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 187.102197 +[0] The total amount of wall time = 186.033744 Test 064 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_thompson_extdiag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_thompson_extdiag_debug Checking test 065 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 202.667433 +[0] The total amount of wall time = 202.070700 Test 065 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2199,26 +2199,26 @@ Checking test 066 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 = 275.739825 +[0] The total amount of wall time = 275.724648 Test 066 regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_regional_quilt_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/regional_quilt_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_regional_quilt_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/regional_quilt_debug Checking test 067 regional_quilt_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -[0] The total amount of wall time = 280.640122 +[0] The total amount of wall time = 280.833276 Test 067 regional_quilt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_gsd_debug Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2283,13 +2283,13 @@ Checking test 068 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 = 280.583618 +[0] The total amount of wall time = 280.528234 Test 068 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_gsd_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_gsd_diag_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_gsd_diag_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_gsd_diag_debug Checking test 069 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2316,13 +2316,13 @@ Checking test 069 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 326.791726 +[0] The total amount of wall time = 316.161130 Test 069 fv3_gsd_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_rrfs_v1beta_debug Checking test 070 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2387,13 +2387,13 @@ Checking test 070 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 = 222.749135 +[0] The total amount of wall time = 222.072967 Test 070 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_rrfs_v1alpha_debug Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2458,13 +2458,13 @@ Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 222.717320 +[0] The total amount of wall time = 221.838253 Test 071 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2529,13 +2529,13 @@ Checking test 072 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 = 232.977538 +[0] The total amount of wall time = 233.647976 Test 072 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2550,37 +2550,37 @@ Checking test 073 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 = 428.331901 +[0] The total amount of wall time = 431.753824 Test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/hafs_regional_atm +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/hafs_regional_atm Checking test 074 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 633.503340 +[0] The total amount of wall time = 634.188622 Test 074 hafs_regional_atm PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/hafs_regional_atm_ocn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/hafs_regional_atm_ocn Checking test 075 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 626.925396 +[0] The total amount of wall time = 625.341794 Test 075 hafs_regional_atm_ocn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/hafs_regional_docn +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/hafs_regional_docn Checking test 076 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2588,111 +2588,111 @@ Checking test 076 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 625.204829 +[0] The total amount of wall time = 622.843259 Test 076 hafs_regional_docn PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/hafs_regional_docn_oisst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/hafs_regional_docn_oisst Checking test 077 hafs_regional_docn_oisst results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 625.383744 +[0] The total amount of wall time = 620.599520 Test 077 hafs_regional_docn_oisst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/hafs_regional_datm_cdeps +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/hafs_regional_datm_cdeps Checking test 078 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -[0] The total amount of wall time = 1085.883670 +[0] The total amount of wall time = 1083.877504 Test 078 hafs_regional_datm_cdeps PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_control_cfsr Checking test 079 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 168.776585 +[0] The total amount of wall time = 170.967603 Test 079 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_restart_cfsr Checking test 080 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 116.058902 +[0] The total amount of wall time = 129.155455 Test 080 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_control_gefs Checking test 081 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 163.572400 +[0] The total amount of wall time = 164.544618 Test 081 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_stochy_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_stochy_gefs Checking test 082 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 165.833160 +[0] The total amount of wall time = 165.553199 Test 082 datm_cdeps_stochy_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_bulk_cfsr Checking test 083 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.214944 +[0] The total amount of wall time = 171.344306 Test 083 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_bulk_gefs Checking test 084 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 162.742338 +[0] The total amount of wall time = 164.772703 Test 084 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_mx025_cfsr Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2701,13 +2701,13 @@ Checking test 085 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 339.875331 +[0] The total amount of wall time = 351.481138 Test 085 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_mx025_gefs Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2716,35 +2716,35 @@ Checking test 086 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 336.243165 +[0] The total amount of wall time = 345.018822 Test 086 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_multiple_files_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_multiple_files_cfsr Checking test 087 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 169.540327 +[0] The total amount of wall time = 171.123411 Test 087 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/datm_cdeps_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/datm_cdeps_debug_cfsr Checking test 088 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 489.025501 +[0] The total amount of wall time = 490.116204 Test 088 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_atmwav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_atmwav +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_atmwav Checking test 089 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2788,13 +2788,13 @@ Checking test 089 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 146.665177 +[0] The total amount of wall time = 148.302430 Test 089 control_atmwav PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210930/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_52356/control_c384gdas_wav +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211004/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Dom.Heinzeller/FV3_RT/rt_867/control_c384gdas_wav Checking test 090 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -2840,11 +2840,11 @@ Checking test 090 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 1011.557469 +[0] The total amount of wall time = 1031.808670 Test 090 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Oct 1 02:27:00 UTC 2021 -Elapsed time: 01h:22m:48s. Have a nice day! +Fri Oct 1 21:42:17 UTC 2021 +Elapsed time: 01h:26m:10s. Have a nice day! diff --git a/tests/UnitTests_hera.gnu.log b/tests/UnitTests_hera.gnu.log deleted file mode 100644 index 6e20934231..0000000000 --- a/tests/UnitTests_hera.gnu.log +++ /dev/null @@ -1,464 +0,0 @@ - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_bit_base -Checking test bit_base fv3_ccpp_control results .... -Moving baseline bit_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test bit_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dbg_base -Checking test dbg_base fv3_ccpp_control results .... -Moving baseline dbg_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test dbg_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_dcp -Checking test dcp fv3_ccpp_control 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.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 ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test dcp fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_mpi -Checking test mpi fv3_ccpp_control 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.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 ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test mpi fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_rst -Checking test rst fv3_ccpp_control 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 ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test rst fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/GNU/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_std_base -Checking test std_base fv3_ccpp_control results .... -Moving baseline std_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test std_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_47314/fv3_ccpp_control_thr -Checking test thr fv3_ccpp_control 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.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 ............SKIP for gnu compilers - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test thr fv3_ccpp_control PASS - -UNIT TEST WAS SUCCESSFUL -Mon Dec 28 21:38:18 UTC 2020 -Elapsed time: 00h:16m:49s. Have a nice day! diff --git a/tests/UnitTests_hera.intel.log b/tests/UnitTests_hera.intel.log deleted file mode 100644 index 173f385d06..0000000000 --- a/tests/UnitTests_hera.intel.log +++ /dev/null @@ -1,464 +0,0 @@ - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_bit_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_bit_base -Checking test bit_base fv3_ccpp_control results .... -Moving baseline bit_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test bit_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_dbg_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dbg_base -Checking test dbg_base fv3_ccpp_control results .... -Moving baseline dbg_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test dbg_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_dcp -Checking test dcp fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test dcp fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_mpi -Checking test mpi fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test mpi fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_rst -Checking test rst fv3_ccpp_control 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 -Test rst fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201118/INTEL/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_std_base -Checking test std_base fv3_ccpp_control results .... -Moving baseline std_base fv3_ccpp_control files .... - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test std_base fv3_ccpp_control PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/Dom.Heinzeller/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_UT/ut_302786/fv3_ccpp_control_thr -Checking test thr fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test thr fv3_ccpp_control PASS - -UNIT TEST WAS SUCCESSFUL -Mon Dec 28 21:16:09 UTC 2020 -Elapsed time: 00h:14m:46s. Have a nice day! diff --git a/tests/UnitTests_orion.intel.log b/tests/UnitTests_orion.intel.log deleted file mode 100644 index 6a5a492851..0000000000 --- a/tests/UnitTests_orion.intel.log +++ /dev/null @@ -1,470 +0,0 @@ - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_bit_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_bit_base -Checking test bit_base fv3_ccpp_control results .... -Moving baseline bit_base fv3_ccpp_control files .... - mkdir -p /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_bit_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test bit_base fv3_ccpp_control PASS - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_dbg_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_dbg_base -Checking test dbg_base fv3_ccpp_control results .... -Moving baseline dbg_base fv3_ccpp_control files .... - mkdir -p /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_dbg_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test dbg_base fv3_ccpp_control PASS - - -baseline dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_dcp -Checking test dcp fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test dcp fv3_ccpp_control PASS - - -baseline dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_mpi -Checking test mpi fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test mpi fv3_ccpp_control PASS - - -baseline dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_rst -Checking test rst fv3_ccpp_control results .... - Comparing phyf024.tile1.nc ............NOT OK - Comparing phyf024.tile2.nc ............NOT OK - Comparing phyf024.tile3.nc ............NOT OK - Comparing phyf024.tile4.nc ............NOT OK - Comparing phyf024.tile5.nc ............NOT OK - Comparing phyf024.tile6.nc ............NOT OK - Comparing dynf024.tile1.nc ............NOT OK - Comparing dynf024.tile2.nc ............NOT OK - Comparing dynf024.tile3.nc ............NOT OK - Comparing dynf024.tile4.nc ............NOT OK - Comparing dynf024.tile5.nc ............NOT OK - Comparing dynf024.tile6.nc ............NOT OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............NOT OK - Comparing RESTART/phy_data.tile1.nc ............NOT OK - Comparing RESTART/phy_data.tile2.nc ............NOT OK - Comparing RESTART/phy_data.tile3.nc ............NOT OK - Comparing RESTART/phy_data.tile4.nc ............NOT OK - Comparing RESTART/phy_data.tile5.nc ............NOT OK - Comparing RESTART/phy_data.tile6.nc ............NOT OK - Comparing RESTART/sfc_data.tile1.nc ............NOT OK - Comparing RESTART/sfc_data.tile2.nc ............NOT OK - Comparing RESTART/sfc_data.tile3.nc ............NOT OK - Comparing RESTART/sfc_data.tile4.nc ............NOT OK - Comparing RESTART/sfc_data.tile5.nc ............NOT OK - Comparing RESTART/sfc_data.tile6.nc ............NOT OK -Test rst fv3_ccpp_control FAIL - - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/INTEL/fv3_control_std_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_std_base -Checking test std_base fv3_ccpp_control results .... -Moving baseline std_base fv3_ccpp_control files .... - mkdir -p /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_std_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test std_base fv3_ccpp_control PASS - - -baseline dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /work/noaa/stmp/jminsuk/stmp/jminsuk/FV3_UT/ut_100015/fv3_ccpp_control_thr -Checking test thr fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test thr fv3_ccpp_control PASS - -FAILED TESTS: -Test rst fv3_ccpp_control failed -Test rst fv3_ccpp_control failed -UNIT TEST FAILED -Tue Sep 8 17:10:09 CDT 2020 -Elapsed time: 00h:13m:51s. Have a nice day! diff --git a/tests/UnitTests_wcoss_dell_p3.log b/tests/UnitTests_wcoss_dell_p3.log deleted file mode 100644 index ac1a360f23..0000000000 --- a/tests/UnitTests_wcoss_dell_p3.log +++ /dev/null @@ -1,470 +0,0 @@ - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/fv3_control_bit_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_bit_base -Checking test bit_base fv3_ccpp_control results .... -Moving baseline bit_base fv3_ccpp_control files .... - mkdir -p /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_bit_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test bit_base fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/fv3_control_dbg_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_dbg_base -Checking test dbg_base fv3_ccpp_control results .... -Moving baseline dbg_base fv3_ccpp_control files .... - mkdir -p /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_dbg_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test dbg_base fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_dcp -Checking test dcp fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test dcp fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_mpi -Checking test mpi fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test mpi fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_rst -Checking test rst fv3_ccpp_control results .... - Comparing phyf024.tile1.nc ............NOT OK - Comparing phyf024.tile2.nc ............NOT OK - Comparing phyf024.tile3.nc ............NOT OK - Comparing phyf024.tile4.nc ............NOT OK - Comparing phyf024.tile5.nc ............NOT OK - Comparing phyf024.tile6.nc ............NOT OK - Comparing dynf024.tile1.nc ............NOT OK - Comparing dynf024.tile2.nc ............NOT OK - Comparing dynf024.tile3.nc ............NOT OK - Comparing dynf024.tile4.nc ............NOT OK - Comparing dynf024.tile5.nc ............NOT OK - Comparing dynf024.tile6.nc ............NOT OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc ............NOT OK - Comparing RESTART/fv_core.res.tile2.nc ............NOT OK - Comparing RESTART/fv_core.res.tile3.nc ............NOT OK - Comparing RESTART/fv_core.res.tile4.nc ............NOT OK - Comparing RESTART/fv_core.res.tile5.nc ............NOT OK - Comparing RESTART/fv_core.res.tile6.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc ............NOT OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile1.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile2.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile3.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile4.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile5.nc ............NOT OK - Comparing RESTART/fv_tracer.res.tile6.nc ............NOT OK - Comparing RESTART/phy_data.tile1.nc ............NOT OK - Comparing RESTART/phy_data.tile2.nc ............NOT OK - Comparing RESTART/phy_data.tile3.nc ............NOT OK - Comparing RESTART/phy_data.tile4.nc ............NOT OK - Comparing RESTART/phy_data.tile5.nc ............NOT OK - Comparing RESTART/phy_data.tile6.nc ............NOT OK - Comparing RESTART/sfc_data.tile1.nc ............NOT OK - Comparing RESTART/sfc_data.tile2.nc ............NOT OK - Comparing RESTART/sfc_data.tile3.nc ............NOT OK - Comparing RESTART/sfc_data.tile4.nc ............NOT OK - Comparing RESTART/sfc_data.tile5.nc ............NOT OK - Comparing RESTART/sfc_data.tile6.nc ............NOT OK -Test rst fv3_ccpp_control FAIL - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20200713/fv3_control_std_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_std_base -Checking test std_base fv3_ccpp_control results .... -Moving baseline std_base fv3_ccpp_control files .... - mkdir -p /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base/RESTART - Moving atmos_4xdaily.tile1.nc .........OK - Moving atmos_4xdaily.tile2.nc .........OK - Moving atmos_4xdaily.tile3.nc .........OK - Moving atmos_4xdaily.tile4.nc .........OK - Moving atmos_4xdaily.tile5.nc .........OK - Moving atmos_4xdaily.tile6.nc .........OK - Moving phyf000.tile1.nc .........OK - Moving phyf000.tile2.nc .........OK - Moving phyf000.tile3.nc .........OK - Moving phyf000.tile4.nc .........OK - Moving phyf000.tile5.nc .........OK - Moving phyf000.tile6.nc .........OK - Moving phyf024.tile1.nc .........OK - Moving phyf024.tile2.nc .........OK - Moving phyf024.tile3.nc .........OK - Moving phyf024.tile4.nc .........OK - Moving phyf024.tile5.nc .........OK - Moving phyf024.tile6.nc .........OK - Moving dynf000.tile1.nc .........OK - Moving dynf000.tile2.nc .........OK - Moving dynf000.tile3.nc .........OK - Moving dynf000.tile4.nc .........OK - Moving dynf000.tile5.nc .........OK - Moving dynf000.tile6.nc .........OK - Moving dynf024.tile1.nc .........OK - Moving dynf024.tile2.nc .........OK - Moving dynf024.tile3.nc .........OK - Moving dynf024.tile4.nc .........OK - Moving dynf024.tile5.nc .........OK - Moving dynf024.tile6.nc .........OK - Moving RESTART/coupler.res .........OK - Moving RESTART/fv_core.res.nc .........OK - Moving RESTART/fv_core.res.tile1.nc .........OK - Moving RESTART/fv_core.res.tile2.nc .........OK - Moving RESTART/fv_core.res.tile3.nc .........OK - Moving RESTART/fv_core.res.tile4.nc .........OK - Moving RESTART/fv_core.res.tile5.nc .........OK - Moving RESTART/fv_core.res.tile6.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/fv_tracer.res.tile1.nc .........OK - Moving RESTART/fv_tracer.res.tile2.nc .........OK - Moving RESTART/fv_tracer.res.tile3.nc .........OK - Moving RESTART/fv_tracer.res.tile4.nc .........OK - Moving RESTART/fv_tracer.res.tile5.nc .........OK - Moving RESTART/fv_tracer.res.tile6.nc .........OK - Moving RESTART/phy_data.tile1.nc .........OK - Moving RESTART/phy_data.tile2.nc .........OK - Moving RESTART/phy_data.tile3.nc .........OK - Moving RESTART/phy_data.tile4.nc .........OK - Moving RESTART/phy_data.tile5.nc .........OK - Moving RESTART/phy_data.tile6.nc .........OK - Moving RESTART/sfc_data.tile1.nc .........OK - Moving RESTART/sfc_data.tile2.nc .........OK - Moving RESTART/sfc_data.tile3.nc .........OK - Moving RESTART/sfc_data.tile4.nc .........OK - Moving RESTART/sfc_data.tile5.nc .........OK - Moving RESTART/sfc_data.tile6.nc .........OK -Test std_base fv3_ccpp_control PASS - - -baseline dir = /gpfs/dell2/stmp/Minsuk.Ji/FV3_UT/UNIT_TEST/fv3_control_std_base -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_UT/ut_21236/fv3_ccpp_control_thr -Checking test thr fv3_ccpp_control 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.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/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -Test thr fv3_ccpp_control PASS - -FAILED TESTS: -Test rst fv3_ccpp_control failed -Test rst fv3_ccpp_control failed -UNIT TEST FAILED -Tue Sep 8 21:39:25 UTC 2020 -Elapsed time: 00h:32m:00s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 3534560562..80be6c842e 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -15,5 +15,5 @@ ENV RT_COMPILER=gnu ENV RT_MACHINE=linux.gnu WORKDIR $HOME/ufs-weather-model/tests -RUN ./utest -n $test_name -c $build_case -z && tar -cvzf fv3.tar.gz fv3_*.exe modules.fv3_* -CMD ./utest -n $test_name -c $test_case -x +RUN ./opnReqTest -n $test_name -c $build_case -z && tar -cvzf fv3.tar.gz fv3_*.exe modules.fv3_* +CMD ./opnReqTest -n $test_name -c $test_case -x diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index 05f0bed08e..b4bd89ff45 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -14,7 +14,7 @@ check_memory_usage() { usage_and_exit() { echo - echo "Note: main purpose of this script is to interface between CI automation and utest script" + echo "Note: main purpose of this script is to interface between CI automation and opnReqTest script" echo "and therefore, direct invocation via CLI may result in unexpected behavior" echo echo "Usage: $0 -b | -r " @@ -75,14 +75,14 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then docker volume rm -f DataVolume >/dev/null && - docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210528 + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210930 docker create -u builder -e "CI_TEST=true" -e "USER=builder" \ -e "RT_MACHINE=linux.gnu" -e "RT_COMPILER=gnu" \ -w "/home/builder/ufs-weather-model/tests" \ - -v DataVolume:/home/builder/data/NEMSfv3gfs/input-data-20210528 \ + -v DataVolume:/home/builder/data/NEMSfv3gfs \ --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.7b \ - /bin/bash -c "./utest -n ${TEST_NAME} -c ${TEST_CASE} -x" + /bin/bash -c "./opnReqTest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE docker cp . my-container:/home/builder/ufs-weather-model diff --git a/tests/ci/ci.test b/tests/ci/ci.test index 9d8b220dc1..a8e0f9ea9c 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -2,5 +2,5 @@ control thr mpi dcp rst bit dbg regional_control thr dcp -cpld_control +cpld_control_p7 rst dbg diff --git a/tests/fv3_conf/control_run.IN b/tests/fv3_conf/control_run.IN index c64619b8cb..08089b8967 100644 --- a/tests/fv3_conf/control_run.IN +++ b/tests/fv3_conf/control_run.IN @@ -12,7 +12,7 @@ elif [ $NPX = 769 ]; then fi echo "inputdir=$inputdir,NPX=$NPX" -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} SUFFIX=${RT_SUFFIX} if [ $WARM_START = .false. ]; then mkdir INPUT RESTART @@ -20,7 +20,7 @@ if [ $WARM_START = .false. ]; then else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == true ]]; then + if [[ ${OPNREQ_TEST} == true ]]; then SUFFIX=${BL_SUFFIX} fi diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 04a86ac18f..484b71b0b8 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -59,7 +59,7 @@ if [[ $CPLWAV == .true. ]]; then cp @[INPUTDATA_ROOT_WW3]/mod_def.* . fi -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} SUFFIX=${RT_SUFFIX} # No restart if [ $WARM_START = .false. ]; then @@ -76,22 +76,17 @@ if [ $WARM_START = .false. ]; then fi #Restart else - if [[ ${UNIT_TEST} == true ]]; then + if [[ ${OPNREQ_TEST} == true ]]; then SUFFIX=${BL_SUFFIX} fi # Restart files + cp -r ../${DEP_RUN}${SUFFIX}/INPUT/* ./INPUT cp -r ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.* ./INPUT - rm -f INPUT/fv_core.res.* - rm -f INPUT/fv_srf_wnd.res.* - rm -f INPUT/fv_tracer.res.* - rm -f INPUT/phy_data.* - rm -f INPUT/sfc_data.* - for RFILE in ../${DEP_RUN}${SUFFIX}/RESTART/${RESTART_FILE_PREFIX}.*; do + for RFILE in INPUT/${RESTART_FILE_PREFIX}.*; do [ -e $RFILE ] || exit 1 RFILE_OLD=$(basename $RFILE) - RFILE_NEW=${RFILE_OLD//${RESTART_FILE_PREFIX}./} - cp $RFILE INPUT/${RFILE_NEW} + mv -f $RFILE INPUT/"${RFILE_OLD//${RESTART_FILE_PREFIX}./}" done #if not mx025, then mom6 restart is a single file diff --git a/tests/fv3_conf/csawmg_run.IN b/tests/fv3_conf/csawmg_run.IN index 9014fc4c36..2dedad2ec9 100644 --- a/tests/fv3_conf/csawmg_run.IN +++ b/tests/fv3_conf/csawmg_run.IN @@ -1,13 +1,13 @@ rm -fr INPUT RESTART -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} if [ $WARM_START = .false. ]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT diff --git a/tests/fv3_conf/fv3_run.IN b/tests/fv3_conf/fv3_run.IN index 0fcf4faead..923a314163 100644 --- a/tests/fv3_conf/fv3_run.IN +++ b/tests/fv3_conf/fv3_run.IN @@ -10,14 +10,14 @@ elif [ $NPX = 769 ]; then fi echo "inputdir=$inputdir,NPX=$NPX" -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} if [ $WARM_START = .false. ]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/INPUT . mkdir RESTART else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT else cp -r @[INPUTDATA_ROOT]/${inputdir}/RESTART/* ./INPUT diff --git a/tests/fv3_conf/gfdlmp_run.IN b/tests/fv3_conf/gfdlmp_run.IN index 98a754c881..2a965f10c8 100644 --- a/tests/fv3_conf/gfdlmp_run.IN +++ b/tests/fv3_conf/gfdlmp_run.IN @@ -1,13 +1,13 @@ rm -fr INPUT RESTART -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} if [ $WARM_START = .false. ]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/INPUT . mkdir RESTART else mkdir INPUT RESTART - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT else cp -r @[INPUTDATA_ROOT]/FV3_input_data/RESTART/* ./INPUT diff --git a/tests/utest b/tests/opnReqTest similarity index 81% rename from tests/utest rename to tests/opnReqTest index 7a0e0a6ffa..d5a5f9790e 100755 --- a/tests/utest +++ b/tests/opnReqTest @@ -32,11 +32,11 @@ usage() { echo echo " Examples" echo - echo " 'utest -n fv3_control' tests all for fv3_control" - echo " 'utest -n fv3_control -c rst' tests restart for fv3_control" - echo " 'utest -n fv3_gfdlmp -c mpi,thr' tests mpi and threading for fv3_gfdlmp" - echo " 'utest -n fv3_gfdlmp -c bit' tests bit for fv3_gfdlmp" - echo " 'utest -n fv3_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_satmedmf" + echo " 'opnReqTest -n fv3_control' tests all for fv3_control" + echo " 'opnReqTest -n fv3_control -c rst' tests restart for fv3_control" + echo " 'opnReqTest -n fv3_gfdlmp -c mpi,thr' tests mpi and threading for fv3_gfdlmp" + echo " 'opnReqTest -n fv3_gfdlmp -c bit' tests bit for fv3_gfdlmp" + echo " 'opnReqTest -n fv3_satmedmf -c dcp,dbg,rst' tests decomposition, debug, restart for fv3_satmedmf" echo #set -x } @@ -52,25 +52,36 @@ cleanup() { exit $1 } -build_utests() { - [[ -f $build_file ]] || error "$build_file does not exist" +find_build() { + local compile_line='' + local run_line='' + while read -r line || [ "$line" ]; do + line="${line#"${line%%[![:space:]]*}"}" + [[ ${#line} == 0 ]] && continue + [[ $line == \#* ]] && continue + + if [[ $line =~ COMPILE ]] ; then + compile_opt=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + elif [[ $line =~ RUN ]]; then + tmp_test_name=$(echo $line | cut -d'|' -f2 | sed -e 's/^ *//' -e 's/ *$//') + if [[ $TEST_NAME == $tmp_test_name && $compile_opt != '' ]]; then + model_found=true + base_opt=$compile_opt + break + fi + fi + done <'rt.conf' +} +build_opnReqTests() { rm -f fv3_*.exe modules.fv3_* model_found=false base_opt= - while IFS="|" read model compile_opt; do - model=$(echo $model | sed -e 's/^ *//' -e 's/ *$//') - compile_opt=$(echo $compile_opt | sed -e 's/^ *//' -e 's/ *$//') - if [[ $model == $TEST_NAME ]]; then - base_opt=$compile_opt - model_found=true - break - fi - done <$build_file + find_build if [[ $model_found == false ]]; then - error "build options for $TEST_NAME not found. please edit utest.bld" + error "build options for $TEST_NAME not found. please take a look at rt.conf" fi for name in $compile_case; do @@ -119,7 +130,7 @@ build_utests() { done } -run_utests() { +run_opnReqTests() { JOB_NR=0 for rc in $run_case; do # load default variables and override as necessary @@ -150,57 +161,57 @@ run_utests() { std_base) CREATE_BASELINE=true BL_SUFFIX=_std_base - source $PATHRT/utests/std.sh + source $PATHRT/opnReqTests/std.sh ;; std) CREATE_BASELINE=false BL_SUFFIX=_std_base - source $PATHRT/utests/std.sh + source $PATHRT/opnReqTests/std.sh ;; thr) CREATE_BASELINE=false BL_SUFFIX=_std_base - source $PATHRT/utests/thr.sh + source $PATHRT/opnReqTests/thr.sh ;; mpi) CREATE_BASELINE=false BL_SUFFIX=_std_base - source $PATHRT/utests/mpi.sh + source $PATHRT/opnReqTests/mpi.sh ;; dcp) CREATE_BASELINE=false BL_SUFFIX=_std_base - source $PATHRT/utests/dcp.sh + source $PATHRT/opnReqTests/dcp.sh ;; rst) # this is not going to work for regional model CREATE_BASELINE=false BL_SUFFIX=_std_base - source $PATHRT/utests/rst.sh + source $PATHRT/opnReqTests/rst.sh ;; bit_base) CREATE_BASELINE=true BL_SUFFIX=_bit_base comp_nm=bit - source $PATHRT/utests/bit.sh + source $PATHRT/opnReqTests/bit.sh ;; bit) CREATE_BASELINE=false BL_SUFFIX=_bit_base comp_nm=bit - source $PATHRT/utests/bit.sh + source $PATHRT/opnReqTests/bit.sh ;; dbg_base) CREATE_BASELINE=true BL_SUFFIX=_dbg_base comp_nm=dbg - source $PATHRT/utests/dbg.sh + source $PATHRT/opnReqTests/dbg.sh WLCLK=60 ;; dbg) CREATE_BASELINE=false BL_SUFFIX=_dbg_base comp_nm=dbg - source $PATHRT/utests/dbg.sh + source $PATHRT/opnReqTests/dbg.sh WLCLK=60 ;; esac @@ -211,6 +222,7 @@ run_utests() { export RTPWD=${RTPWD} export INPUTDATA_ROOT=${INPUTDATA_ROOT} export INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT_WW3} + export INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC} export PATHRT=${PATHRT} export PATHTR=${PATHTR} export NEW_BASELINE=${NEW_BASELINE} @@ -251,17 +263,17 @@ run_utests() { done } -trap 'echo utest killed; cleanup $?' KILL -trap 'echo utest interrupted; cleanup $?' INT -trap 'echo utest quit; cleanup $?' QUIT -trap 'echo utest terminated; cleanup $?' TERM -trap 'echo utest error on line $LINENO; cleanup $?' ERR +trap 'echo opnReqTest killed; cleanup $?' KILL +trap 'echo opnReqTest interrupted; cleanup $?' INT +trap 'echo opnReqTest quit; cleanup $?' QUIT +trap 'echo opnReqTest terminated; cleanup $?' TERM +trap 'echo opnReqTest error on line $LINENO; cleanup $?' ERR trap ' ret=$? if [ "$ret" -ne 0 ]; then echo >&2 "Died with error code $ret" else - echo >&2 "utest finished" + echo >&2 "opnReqTest finished" fi cleanup $ret' EXIT @@ -270,12 +282,12 @@ trap ' ######################################################################## readonly program=$(basename $0) -# PATHRT - Path to unit tests directory +# PATHRT - Path to operation requirement tests directory readonly PATHRT=$(cd $(dirname $0) && pwd -P) # PATHTR - Path to trunk directory readonly PATHTR=$(cd ${PATHRT}/.. && pwd) -readonly lockdir=${PATHRT}/lock_ut -export UNIT_TEST=true +readonly lockdir=${PATHRT}/lock_opnReqTest +export OPNREQ_TEST=true export CI_TEST=${CI_TEST:-false} [[ $# -eq 0 ]] && usage_and_exit 1 @@ -287,14 +299,14 @@ RT_MACHINE=${RT_MACHINE:-} source detect_machine.sh cd $PATHRT -# make sure only one instance of utest is running +# make sure only one instance of opnReqTest is running if mkdir $lockdir 2>/dev/null; then echo $(hostname) $$ > ${lockdir}/PID else - error "Only one instance of utest can be running at a time" + error "Only one instance of opnReqTest can be running at a time" fi -# utility functions in rt_utils need to be able to see variables in utest +# utility functions in rt_utils need to be able to see variables in opnReqTest source rt_utils.sh source $PATHTR/NEMS/src/conf/module-setup.sh.inc @@ -434,7 +446,7 @@ done # some safety guards for input arguments if [[ -z $TEST_NAME ]]; then - error "$program: test name is required. try 'utest -h' for usage" + error "$program: test name is required. try 'opnReqTest -h' for usage" fi if [[ $skip_compile == true && $skip_run == true ]]; then error "$program: cannot skip both compile and run" @@ -494,17 +506,17 @@ if [[ $run_case =~ std_base && ! $run_case =~ ^std_base ]]; then fi # log directory -export LOG_DIR=${PATHRT}/log_ut_$MACHINE_ID +export LOG_DIR=${PATHRT}/log_opnReqTest_$MACHINE_ID rm -rf ${LOG_DIR} mkdir ${LOG_DIR} # directory where all simulations are run -RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}}/FV3_UT/ut_$$ +RUNDIR_ROOT=${RUNDIR_ROOT:-${PTMP}/${USER}}/FV3_OPNREQ_TEST/opnReqTest_$$ mkdir -p ${RUNDIR_ROOT} if [[ $ECFLOW == true ]]; then - ECFLOW_RUN=${PATHRT}/ecflow_ut_run - ECFLOW_SUITE=unittest + ECFLOW_RUN=${PATHRT}/ecflow_opnReqTest_run + ECFLOW_SUITE=opnreqtest rm -rf ${ECFLOW_RUN} mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} @@ -530,16 +542,13 @@ if [[ $ECFLOW == true ]]; then fi fi -unittest_log=${PATHRT}/UnitTests_$MACHINE_ID.log -REGRESSIONTEST_LOG=$unittest_log +opnreqtest_log=${PATHRT}/OpnReqTests_$MACHINE_ID.log +REGRESSIONTEST_LOG=$opnreqtest_log ######################################################################## #### COMPILE #### ######################################################################## -# build_file specifies compilation options -build_file='utest.bld' - # if skipping compile, check if all required executables exist. if not, # exit with a non-zero number equal to the number of missing executables num_of_missing_exe=0 @@ -560,7 +569,7 @@ if [[ $skip_compile == true ]]; then fi else echo "cases to compile: $compile_case" - build_utests + build_opnReqTests fi # if skipping run, stop after build. print out status information and @@ -586,18 +595,19 @@ fi ######################################################################## mkdir -p ${STMP}/${USER} -NEW_BASELINE=${STMP}/${USER}/FV3_UT/UNIT_TEST +NEW_BASELINE=${STMP}/${USER}/FV3_OPNREQ_TEST/OPNREQ_TEST RTPWD=${NEW_BASELINE} -INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210528} -INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210503/ +INPUTDATA_ROOT=${INPUTDATA_ROOT:-$DISKNM/NEMSfv3gfs/input-data-20210930} +INPUTDATA_ROOT_WW3=${INPUTDATA_ROOT}/WW3_input_data_20210908/ +INPUTDATA_ROOT_BMIC=${INPUTDATA_ROOT_BMIC:-$DISKNM/NEMSfv3gfs/BM_IC-20210717} rm -rf $NEW_BASELINE mkdir -p $NEW_BASELINE -rm -f fail_unit_test ${unittest_log} +rm -f fail_opnreq_test ${opnreqtest_log} echo "cases to run: $run_case" -run_utests +run_opnReqTests if [[ $ECFLOW == true ]]; then echo "endsuite" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def @@ -605,32 +615,32 @@ if [[ $ECFLOW == true ]]; then fi ######################################################################## -#### UNIT TEST STATUS #### +#### OPERATION REQUIREMENT TEST STATUS #### ######################################################################## set +e -cat ${LOG_DIR}/ut_*.log | tee -a ${unittest_log} +cat ${LOG_DIR}/opnReqTest_*.log | tee -a ${opnreqtest_log} -if [[ -e fail_unit_test ]]; then - echo "FAILED TESTS: " | tee -a ${unittest_log} +if [[ -e fail_opnreq_test ]]; then + echo "FAILED TESTS: " | tee -a ${opnreqtest_log} while read -r failed_test_name; do - echo "Test ${failed_test_name} failed " | tee -a ${unittest_log} - done < fail_unit_test + echo "Test ${failed_test_name} failed " | tee -a ${opnreqtest_log} + done < fail_opnreq_test - echo "UNIT TEST FAILED" | tee -a ${unittest_log} - date >>${unittest_log} + echo "OPERATION REQUIREMENT TEST FAILED" | tee -a ${opnreqtest_log} + date >>${opnreqtest_log} hrs=$(( $SECONDS%86400/3600 )); mins=$(( $SECONDS%3600/60 )); secs=$(( $SECONDS%60 )) elapsed_time=$(printf '%02dh:%02dm:%02ds\n' $hrs $mins $secs) - echo "Elapsed time: ${elapsed_time}. Have a nice day!" | tee -a ${unittest_log} + echo "Elapsed time: ${elapsed_time}. Have a nice day!" | tee -a ${opnreqtest_log} exit 1 else [[ ${keep_rundir} == false ]] && rm -rf ${RUNDIR_ROOT} - echo "UNIT TEST WAS SUCCESSFUL" | tee -a ${unittest_log} - date >>${unittest_log} + echo "OPERATION REQUIREMENT TEST WAS SUCCESSFUL" | tee -a ${opnreqtest_log} + date >>${opnreqtest_log} hrs=$(( $SECONDS%86400/3600 )); mins=$(( $SECONDS%3600/60 )); secs=$(( $SECONDS%60 )) elapsed_time=$(printf '%02dh:%02dm:%02ds\n' $hrs $mins $secs) - echo "Elapsed time: ${elapsed_time}. Have a nice day!" | tee -a ${unittest_log} + echo "Elapsed time: ${elapsed_time}. Have a nice day!" | tee -a ${opnreqtest_log} exit 0 fi diff --git a/tests/opnReqTests/bit.sh b/tests/opnReqTests/bit.sh new file mode 100644 index 0000000000..137553b33d --- /dev/null +++ b/tests/opnReqTests/bit.sh @@ -0,0 +1,3 @@ +set -eu +source $PATHRT/opnReqTests/std.sh +source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/utests/cmp_proc_bind.sh b/tests/opnReqTests/cmp_proc_bind.sh similarity index 100% rename from tests/utests/cmp_proc_bind.sh rename to tests/opnReqTests/cmp_proc_bind.sh diff --git a/tests/utests/dbg.sh b/tests/opnReqTests/dbg.sh similarity index 71% rename from tests/utests/dbg.sh rename to tests/opnReqTests/dbg.sh index dfc494edc3..3e612adbad 100644 --- a/tests/utests/dbg.sh +++ b/tests/opnReqTests/dbg.sh @@ -1,9 +1,10 @@ set -eu -source $PATHRT/utests/std.sh +source $PATHRT/opnReqTests/std.sh if [[ $application == 'global' ]]; then - LIST_FILES="sfcf000.nc sfcf001.nc atmf000.nc atmf001.nc" FHMAX=1 + OUTPUT_FH="0 1" + LIST_FILES="sfcf000.nc sfcf001.nc atmf000.nc atmf001.nc" elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for debug" exit 1 @@ -15,12 +16,12 @@ elif [[ $application == 'cpld' ]]; then RESTART_N=${FHMAX} LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/sfcf024/sfcf006/g" \ | sed -E "s/atmf024/atmf006/g" \ - | sed -E "s/2016-10-04-00000/2016-10-03-21600/g" \ + | sed -E "s/2021-03-23-21600/2021-03-22-43200/g" \ | sed -e "s/^ *//" -e "s/ *$//") fi -source $PATHRT/utests/wrt_env.sh +source $PATHRT/opnReqTests/wrt_env.sh -cat <>${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env +cat <>${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env export WLCLK=${WLCLK} EOF diff --git a/tests/utests/dcp.sh b/tests/opnReqTests/dcp.sh similarity index 76% rename from tests/utests/dcp.sh rename to tests/opnReqTests/dcp.sh index ad5a2df21e..a1eb22139d 100644 --- a/tests/utests/dcp.sh +++ b/tests/opnReqTests/dcp.sh @@ -1,5 +1,5 @@ set -eu -source $PATHRT/utests/std.sh +source $PATHRT/opnReqTests/std.sh if [[ $application == 'global' ]]; then temp=$INPES @@ -26,10 +26,11 @@ elif [[ $application == 'cpld' ]]; then ice_petlist_bounds="34 39" TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) else - INPES=6 - JNPES=4 + temp=$INPES + INPES=$JNPES + JNPES=$temp fi fi -(test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh -source $PATHRT/utests/wrt_env.sh +(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh +source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/utests/mpi.sh b/tests/opnReqTests/mpi.sh similarity index 77% rename from tests/utests/mpi.sh rename to tests/opnReqTests/mpi.sh index b03acb05ee..5b979a8b87 100644 --- a/tests/utests/mpi.sh +++ b/tests/opnReqTests/mpi.sh @@ -1,5 +1,5 @@ set -eu -source $PATHRT/utests/std.sh +source $PATHRT/opnReqTests/std.sh if [[ $application == 'global' ]]; then if [ $CI_TEST == 'true' ]; then @@ -20,5 +20,5 @@ elif [[ $application == 'cpld' ]]; then exit 1 fi -(test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh -source $PATHRT/utests/wrt_env.sh +(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh +source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/utests/rst.sh b/tests/opnReqTests/rst.sh similarity index 70% rename from tests/utests/rst.sh rename to tests/opnReqTests/rst.sh index 34392f3c6a..bf3d909cdc 100644 --- a/tests/utests/rst.sh +++ b/tests/opnReqTests/rst.sh @@ -1,23 +1,32 @@ set -eu -source $PATHRT/utests/std.sh +source $PATHRT/opnReqTests/std.sh -# Set up date and time of restart files for restart run -FHROT=12 -RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" DEP_RUN=${TEST_NAME} + if [[ $application == 'global' ]]; then + FHROT=12 OUTPUT_FH="3 -1" + RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for restart" exit 1 elif [[ $application == 'cpld' ]]; then + #if [[ $TEST_NAME == 'cpld_control' ]]; then + # FHROT=12 + #elif [[ $TEST_NAME == 'cpld_bmark_v16' ]]; then + # FHROT=3 + #fi + FHROT=$(( FHMAX/2 )) + CICERUNTYPE='continue' RUNTYPE='continue' USE_RESTART_TIME='.true.' MOM6_RESTART_SETTING="r" - RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT} )))" - RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( ${FHROT}*3600 )))" - RESTART_N=$((FHMAX-$FHROT)) + RESTART_N=$(( FHMAX - FHROT )) + RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" + RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( SHOUR + FHROT )))" + RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (SHOUR + FHROT)* 3600 )))" + NSTF_NAME=2,0,0,0,0 fi WARM_START=.T. @@ -33,10 +42,10 @@ LIST_FILES=$(echo -n $LIST_FILES | sed -E "s/phyf00(00|21)\.(tile.\.nc|nemsio|nc | sed -E "s/GFSFLX.GrbF(00|21) ?//g" | sed -E "s/GFSPRS.GrbF(00|21) ?//g" \ | sed -E "s/atmos_4xdaily\.tile[1-6]\.nc ?//g" | sed -e "s/^ *//" -e "s/ *$//") -(test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh -source $PATHRT/utests/wrt_env.sh +(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh +source $PATHRT/opnReqTests/wrt_env.sh -cat <>${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env +cat <>${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env export FHROT=${FHROT} export RESTART_FILE_PREFIX=${RESTART_FILE_PREFIX} export NSTF_NAME=${NSTF_NAME} @@ -44,6 +53,7 @@ export CICERUNTYPE=${CICERUNTYPE:-} export RUNTYPE=${RUNTYPE:-} export USE_RESTART_TIME=${USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} +export RESTART_N=${RESTART_N:-} export RESTART_FILE_SUFFIX_HRS=${RESTART_FILE_SUFFIX_HRS:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} export DEP_RUN=${DEP_RUN:-} @@ -53,5 +63,4 @@ export EXTERNAL_IC=${EXTERNAL_IC} export MAKE_NH=${MAKE_NH} export MOUNTAIN=${MOUNTAIN} export NA_INIT=${NA_INIT} -export OUTPUT_FH="${OUTPUT_FH:-}" EOF diff --git a/tests/utests/std.sh b/tests/opnReqTests/std.sh similarity index 80% rename from tests/utests/std.sh rename to tests/opnReqTests/std.sh index a082f0fc16..502294fa90 100644 --- a/tests/utests/std.sh +++ b/tests/opnReqTests/std.sh @@ -25,10 +25,12 @@ elif [[ $application == 'cpld' ]]; then ice_petlist_bounds="40 45" TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) fi + RESTART_N=$(( FHMAX/2 )) + RESTART_INTERVAL="${RESTART_N} -1" fi NODES=$(((TASKS+TPN-1)/TPN)) -(test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh +(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh if [[ $RT_SUFFIX =~ std ]]; then - source $PATHRT/utests/wrt_env.sh + source $PATHRT/opnReqTests/wrt_env.sh fi diff --git a/tests/utests/thr.sh b/tests/opnReqTests/thr.sh similarity index 73% rename from tests/utests/thr.sh rename to tests/opnReqTests/thr.sh index d507c65112..027a6c772f 100644 --- a/tests/utests/thr.sh +++ b/tests/opnReqTests/thr.sh @@ -1,5 +1,5 @@ set -eu -source $PATHRT/utests/std.sh +source $PATHRT/opnReqTests/std.sh THRD=2 if [[ $application == 'global' ]]; then @@ -18,11 +18,11 @@ elif [[ $application == 'cpld' ]]; then atm_petlist_bounds="0 77" ocn_petlist_bounds="78 107" ice_petlist_bounds="108 119" - TASKS=$((INPES*JNPES*6 + WRTIE_GROUP*WRTTASK_PER_GROUP + 30 + 12)) + TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 30 + 12)) TPN=$((TPN/THRD)) NODES=$(((TASKS+TPN-1)/TPN)) fi fi -(test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh -source $PATHRT/utests/wrt_env.sh +(test $CI_TEST == 'true') && source $PATHRT/opnReqTests/cmp_proc_bind.sh +source $PATHRT/opnReqTests/wrt_env.sh diff --git a/tests/utests/wrt_env.sh b/tests/opnReqTests/wrt_env.sh similarity index 87% rename from tests/utests/wrt_env.sh rename to tests/opnReqTests/wrt_env.sh index a8db012607..d56f2cb574 100644 --- a/tests/utests/wrt_env.sh +++ b/tests/opnReqTests/wrt_env.sh @@ -1,11 +1,11 @@ -cat <${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env -export UNIT_TEST=${UNIT_TEST} +cat <${RUNDIR_ROOT}/opnreq_test${RT_SUFFIX}.env +export OPNREQ_TEST=${OPNREQ_TEST} export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export FHMAX=${FHMAX} export DAYS=${DAYS} -export RESTART_INTERVAL="${RESTART_INTERVAL:-}" export RESTART_N=${RESTART_N:-} +export RESTART_INTERVAL="${RESTART_INTERVAL:-}" export INPES=${INPES} export JNPES=${JNPES} export WRITE_GROUP=${WRITE_GROUP} @@ -25,4 +25,5 @@ export NFHOUT=${NFHOUT} export NFHMAX_HF=${NFHMAX_HF} export NFHOUT_HF=${NFHOUT_HF} export LIST_FILES="${LIST_FILES}" +export OUTPUT_FH="${OUTPUT_FH}" EOF diff --git a/tests/rt.sh b/tests/rt.sh index a5d5939de5..cfd012adef 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -444,7 +444,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210930 +BL_DATE=20211004 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]] || [[ $MACHINE_ID = s4.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index 588c0d4d3e..d0e035685a 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -5,7 +5,7 @@ if [[ "$0" = "${BASH_SOURCE[0]}" ]]; then exit 1 fi -UNIT_TEST=${UNIT_TEST:-false} +OPNREQ_TEST=${OPNREQ_TEST:-false} qsub_id=0 slurm_id=0 @@ -201,13 +201,13 @@ submit_and_wait() { done if [[ $test_status = 'FAIL' ]]; then - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then echo "${TEST_NAME} ${TEST_NR} failed" >> $PATHRT/fail_test echo "Test ${TEST_NR} ${TEST_NAME} FAIL" >> ${REGRESSIONTEST_LOG} echo;echo;echo >> ${REGRESSIONTEST_LOG} echo "Test ${TEST_NR} ${TEST_NAME} FAIL" else - echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_opnreq_test fi if [[ $ROCOTO == true || $ECFLOW == true ]]; then @@ -337,10 +337,10 @@ check_results() { echo if [[ $test_status = 'FAIL' ]]; then - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then echo "${TEST_NAME} ${TEST_NR} failed in check_result" >> $PATHRT/fail_test else - echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_opnreq_test fi if [[ $ROCOTO = true || $ECFLOW == true ]]; then @@ -521,7 +521,7 @@ EOF echo " label job_status ''" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def echo " inlimit max_jobs" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def if [[ $DEP_RUN != '' ]]; then - if [[ ${UNIT_TEST} == false ]]; then + if [[ ${OPNREQ_TEST} == false ]]; then echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN}${RT_SUFFIX} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def else echo " trigger compile_${COMPILE_NR} == complete and ${DEP_RUN} == complete" >> ${ECFLOW_RUN}/${ECFLOW_SUITE}.def diff --git a/tests/run_test.sh b/tests/run_test.sh index b2dc511609..eb60880182 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -15,8 +15,8 @@ cleanup() { } write_fail_test() { - if [[ ${UNIT_TEST} == true ]]; then - echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_unit_test + if [[ ${OPNREQ_TEST} == true ]]; then + echo ${TEST_NR} $TEST_NAME >> $PATHRT/fail_opnreq_test else echo "${TEST_NAME} ${TEST_NR} failed in run_test" >> $PATHRT/fail_test fi @@ -39,7 +39,7 @@ cd ${PATHRT} [[ -e ${RUNDIR_ROOT}/run_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/run_test_${TEST_NR}.env source default_vars.sh source tests/$TEST_NAME -[[ -e ${RUNDIR_ROOT}/unit_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/unit_test_${TEST_NR}.env +[[ -e ${RUNDIR_ROOT}/opnreq_test_${TEST_NR}.env ]] && source ${RUNDIR_ROOT}/opnreq_test_${TEST_NR}.env # Save original CNTL_DIR name as INPUT_DIR for regression # tests that try to copy input data from CNTL_DIR @@ -52,11 +52,11 @@ export JBNME=$(basename $RUNDIR_ROOT)_${TEST_NR} echo -n "${TEST_NAME}, $( date +%s )," > ${LOG_DIR}/job_${JOB_NR}_timestamp.txt -UNIT_TEST=${UNIT_TEST:-false} -if [[ ${UNIT_TEST} == false ]]; then +OPNREQ_TEST=${OPNREQ_TEST:-false} +if [[ ${OPNREQ_TEST} == false ]]; then REGRESSIONTEST_LOG=${LOG_DIR}/rt_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log else - REGRESSIONTEST_LOG=${LOG_DIR}/ut_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log + REGRESSIONTEST_LOG=${LOG_DIR}/opnReqTest_${TEST_NR}_${TEST_NAME}${RT_SUFFIX}.log fi export REGRESSIONTEST_LOG diff --git a/tests/utest.bld b/tests/utest.bld deleted file mode 100644 index e9920399ac..0000000000 --- a/tests/utest.bld +++ /dev/null @@ -1,9 +0,0 @@ -control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_wrtGauss_netcdf_parallel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_stochy | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_ca | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_lheatstrg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_csawmg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg -control_flake | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_flake -regional_control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn -D32BIT=ON -cpld_control | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst diff --git a/tests/utests/bit.sh b/tests/utests/bit.sh deleted file mode 100644 index 2d4dc9e0e3..0000000000 --- a/tests/utests/bit.sh +++ /dev/null @@ -1,3 +0,0 @@ -set -eu -source $PATHRT/utests/std.sh -source $PATHRT/utests/wrt_env.sh