diff --git a/.github/workflows/aux.yml b/.github/workflows/aux.yml index f9880fd138..c3871899a6 100644 --- a/.github/workflows/aux.yml +++ b/.github/workflows/aux.yml @@ -9,7 +9,7 @@ env: base_url: $GITHUB_API_URL/repos/$GITHUB_REPOSITORY/actions/runs AUTH: ${{ secrets.GITHUB_TOKEN }} aws_instance_id: ${{ secrets.AWS_INSTANCE_ID }} - no_instances: 6 + no_instances: 10 jobs: diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index e40bc304d9..d5428cfe55 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit e40bc304d91c4df6333e7164e859f1830646794f +Subproject commit d5428cfe55b5510ae21ce24725157371312dbf73 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index bf2a924d8a..1ee3a47b23 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -64,13 +64,9 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_rof_mod.F90 CMEPS/mediator/med_phases_post_wav_mod.F90) -list(APPEND _mediator_defs ESMF_VERSION_MAJOR=${ESMF_VERSION_MAJOR} - ESMF_VERSION_MINOR=${ESMF_VERSION_MINOR}) - ### Create target library and set PUBLIC interfaces on the library add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files}) set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_compile_definitions(cmeps PUBLIC "${_mediator_defs}") target_include_directories(cmeps PUBLIC $ $) target_link_libraries(cmeps PUBLIC esmf diff --git a/FV3 b/FV3 index ad7bddc3fb..20883edcb5 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ad7bddc3fbe0b25914fb28439337603ca5d0f3bf +Subproject commit 20883edcb5f80cbcf1ea89f721d3c58a837cc760 diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index a970e24030..b5ade23ab6 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -57,13 +57,12 @@ set up specifically for issues related to build dependencies. Downloading the Weather Model Code ================================== -To clone the ufs-weather-model repository for this v2.0.0 release, execute the following commands: +To clone the develop branch of the ufs-weather-model repository, execute the following commands: .. code-block:: console git clone https://github.com/ufs-community/ufs-weather-model.git ufs-weather-model cd ufs-weather-model - git checkout ufs-v2.0.0 git submodule update --init --recursive Compiling the model will take place within the `ufs-weather-model` directory you just created. @@ -72,59 +71,18 @@ Compiling the model will take place within the `ufs-weather-model` directory you Building the Weather Model ========================== -------------------------------------------------------------------------- -Setting environment variables for NCEPLIBS, NCEPLIBS-external and CMake -------------------------------------------------------------------------- -You will need to make sure that the WM has the paths to the libraries that it requires. In order to do -that, these environment variables need to be set, as shown in :numref:`Table %s ` and -:numref:`Table %s ` for the bash shell. +---------------------------- +Loading the required modules +---------------------------- -.. _ReqLibEnvVar: - -.. table:: *Bundled libraries (NCEPLIBS) required for the Weather Model* - - +------------------+-----------------------------------------------------------------+ - | **NCEP Library** | **Environment Variables** | - +==================+=================================================================+ - | nemsio | export NEMSIO_INC= | - +------------------+-----------------------------------------------------------------+ - | | export NEMSIO_LIB=/libnemsio.a | - +------------------+-----------------------------------------------------------------+ - | bacio | export BACIO_LIB4=/libbacio.a | - +------------------+-----------------------------------------------------------------+ - | splib | export SP_LIBd=/libsp_d.a | - +------------------+-----------------------------------------------------------------+ - | w3emc | export W3EMC_LIBd=/libw3emc_d.a | - +------------------+-----------------------------------------------------------------+ - | w3nco | export W3NCO_LIBd=/libw3nco_d.a | - +------------------+-----------------------------------------------------------------+ - -| - -.. _ReqLibEnvVar2: - -.. table:: *Third-party libraries (NCEPLIBS-external) required for the Weather Model* - - +------------------+----------------------------------------------------+ - | **Library** | **Environment Variables** | - +==================+====================================================+ - | NetCDF | export NETCDF= | - +------------------+----------------------------------------------------+ - | ESMF | export ESMFMKFILE=/esmf.mk | - +------------------+----------------------------------------------------+ - -The following are a few different ways to set the required environment variables to the correct values. -If you are running on one of the `pre-configured platforms -`_, you can set them using -modulefiles. Modulefiles for all supported platforms are located in ``modulefiles//fv3``. To -load the modules from the `ufs-weather-model` directory on hera: +Modulefiles for `pre-configured platforms `_ +are located in ``modulefiles/ufs_.``. For example, to load the modules from the `ufs-weather-model` +directory on hera: .. code-block:: console - cd modulefiles/hera.intel - module use $(pwd) - module load fv3 - cd ../.. + module use modulefiles + module load ufs_hera.intel Note that loading this module file will also set the CMake environment variables shown in :numref:`Table %s `. @@ -148,25 +106,57 @@ Note that loading this module file will also set the CMake environment variables If you are not running on one of the pre-configured platforms, you will need to set the environment variables in a different way. -If you used one of the platform- and compiler-specific ``README`` files in the ``doc/`` directory of NCEPLIBS-external -to build the prerequisite libraries, there is a script in the ``NCEPLIBS-ufs-v2.0.0/bin`` directory called -``setenv_nceplibs.sh`` that will set the NCEPLIBS-external variables for you. +------------------------------------------------------------- +Setting the CMAKE_FLAGS and CCPP_SUITES environment variables +------------------------------------------------------------- -Of course, you can also set the values of these variables yourself if you know where the paths are on your system. +You need to use the ``CMAKE_FLAGS`` environment variable to specify which application to build. +In order to have one or more CCPP physics suites available at runtime, you also need to select those suites at +build time by setting the ``CCPP_SUITES`` environment variable. Multiple suites can be set. Following +examples are for the bash shell. --------------------------------------------- -Setting the CCPP_SUITES environment variable --------------------------------------------- +For the ufs-weather-model ATM app (standalone ATM): -In order to have one or more CCPP physics suites available at runtime, you need to select those suites at -build time by setting the ``CCPP_SUITES`` environment variable. Multiple suites can be set, as shown below -in an example for the bash shell: +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATM" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model ATM app (standalone ATM) in 32 bit: .. code-block:: console - export CCPP_SUITES="FV3_GFS_v15p2,FV3_GFS_v16beta" + export CMAKE_FLAGS="-DAPP=ATM -D32BIT=ON" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model ATMW app (standalone ATM with wave): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=ATMW" + export CCPP_SUITES="FV3_GFS_v16" + +For the ufs-weather-model S2S app (atm/ice/ocean): + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2S" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" + +For the ufs-weather-model S2S app (atm/ice/ocean) with debugging flags turned on, with verbose build messages: + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2S -DDEBUG=ON" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" + export BUILD_VERBOSE=1 + +For the ufs-weather-model S2SW app (atm/ice/ocean/wave): + +.. code-block:: console -If ``CCPP_SUITES`` is not set, the default is set to ``‘FV3_GFS_v15p2’`` in ``build.sh``. + export CMAKE_FLAGS="-DAPP=S2SW" + export CCPP_SUITES="FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp" ------------------ Building the model @@ -187,7 +177,9 @@ The WM can be built by running the following command from the `ufs-weather-model ./build.sh -Once ``build.sh`` is finished, you should see the executable, named ``ufs_weather_model``, in the top-level directory. +Once ``build.sh`` is finished, you should see the executable, named ``ufs_model``, in the `ufs-weather-model/build/` directory. +If it is desired to build in a different directory, specify the ``BUILD_DIR`` environment variable: e.g. ``export BUILD_DIR=test_cpld`` +will build in the `ufs-weather-model/test_cpld` directory instead. Expert help is available through a `user support forum `_ set up specifically for issues related to the Weather Model. @@ -195,5 +187,235 @@ set up specifically for issues related to the Weather Model. ================= Running the model ================= -The `UFS Weather Model wiki `_ includes a simple -test case that illustrates how the model can be run. + +.. _UsingRegressionTest: + +-------------------------------- +Using the regression test script +-------------------------------- +The regression test script ``rt.sh`` in the tests/ directory can be +used to run a number of preconfigured test cases. It is the top-level script +that calls lower-level scripts to build, set up environments and run tests. +On `Tier-1 platforms `_, it can +be as simple as editing the ``rt.conf`` file and subsequently executing + +.. code-block:: console + + ./rt.sh -l rt.conf + +Following discussions are general, but the user may not be able to successfully +execute the script as is unless s/he is on one of the Tier-1 platforms. + +Each line in the PSV (Pipe-separated values) file ``rt.conf`` is used to either +build or run. The ``COMPILE`` line specifies the application to build (e.g. +``APP=S2S``), CCPP suite to use (e.g. ``SUITES=FV3_GFS_2017_coupled``), and +additional build options (e.g. ``DEBUG=Y``) as necessary. The ``RUN`` line +specifies the name of a test to run. The test name should match the name of one +of the test files in the tests/tests/ directory or, if the user is adding a new +test, the name of the new test file. The order of lines in ``rt.conf`` matters +since ``rt.sh`` processes them sequentially; a ``RUN`` line should be proceeded +by a ``COMPILE`` line that builds the model used in the test. The following example +``rt.conf`` file builds the standalone ATM model in 32 bit and then runs the +``control`` test: + +.. code-block:: console + + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON | | fv3 + RUN | control | | fv3 + +The third column of ``rt.conf`` relates to the platform; if left blank, the test +runs on all Tier-1 platforms. The fourth column deals with baseline creation (more +on this later) and ``fv3`` means the test will be included during baseline creation. +The ``rt.conf`` file includes a large number of tests. If the user wants to run +only a specific test, s/he can either comment out (using the ``#`` prefix) the +tests to be skipped, or create a new file, e.g. ``my_rt.conf``, then execute +``./rt.sh -l my_rt.conf``. + +The regression test generates a number of log files. The summary log file +``RegressionTests_..log`` in the tests/ directory compares +the results of the test against the baseline specific to a given platform and +reports the outcome (hence, the 'regression' test): 'Missing file' results when +the expected files from the simulation are not found, and typically occurs +when the simulation did not run to completion; 'OK' means that the simulation +results are bit-for-bit identical to those of the baseline; 'NOT OK' when +the results are not bit-for-bit identical; and 'Missing baseline' when there +is no baseline data to compare against. + +More detailed log files are found in the tests/log_./ directory. +In particular, the user may find useful the run directory path provided as the +value of ``RUNDIR`` variable in the ``run_`` file. ``$RUNDIR`` is a +self-contained (i.e. sandboxed) directory with the executable file, initial +conditions, model configuration files, environment setup scripts and a batch job +submission script. The user can run the test by cd'ing into ``$RUNDIR`` and +invoking the command + +.. code-block:: console + + sbatch job_card + +This can be particularly useful for debugging and testing code changes. Note that +``$RUNDIR`` is automatically deleted at the end of a successful regression test; +specifying the ``-k`` option retains the ``$RUNDIR``, e.g. ``./rt.sh -l rt.conf -k``. + +Found inside the ``$RUNDIR`` directory are a number of model configuration files: +``input.nml``, ``model_configure``, ``nems.configure``, and other application +dependent files, e.g. ``ice_in`` for Subseasonal-to-Seasonal application. +These model configuration files are +generated by ``rt.sh`` from the template files in the tests/parm/ directory. +Specific values used to fill in the template files depend on the test being run, and +are set in two stages: default values are specified in ``tests/default_vars.sh`` and +the default values are overriden if necessary by those specified in a test file +``tests/tests/``. For example, the variable ``DT_ATMOS``, which is +substituted into the template file ``model_configure.IN`` to generate +``model_configure``, is initially assigned 1800 in the function ``export_fv3`` of the +script ``default_vars.sh``, but the test file ``tests/tests/control`` overrides by +reassigning 720 to the variable. + +Also found inside the ``$RUNDIR`` directory are the files ``fv3_run`` and +``job_card``, which are generated from the template files in the tests/fv3_conf/ +directory. The latter is a platform-specific batch job submission script, while +the former prepares the initial conditions by copying relevant data from the +input data directory of a given platform to the ``$RUNDIR`` directory. +:numref:`Table %s ` summarizes the subdirectories discussed above. + +.. _RTSubDirs: + +.. table:: *Regression test subdirectories* + + +-----------------+--------------------------------------------------------------------------------------+ + | **Name** | **Description** | + +=================+======================================================================================+ + | tests/ | Regression test root directory. Contains rt-related scripts and the summary log file | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/tests/ | Contains specific test files | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/parm/ | Contains templates for model configuration files | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/fv3_conf/ | Contains templates for setting up initial conditions and a batch job | + +-----------------+--------------------------------------------------------------------------------------+ + | tests/log_*/ | Contains fine-grained log files | + +-----------------+--------------------------------------------------------------------------------------+ + +There are a number of command line options available to the ``rt.sh`` script. +The user can execute ``./rt.sh`` to see information on these options. A couple +of them are discussed here. When running a large number (10's or 100's) of +tests, the ``-e`` option to use the ecFlow workflow manager can significantly +decrease the testing time by queuing the jobs according to dependencies and +running them concurrently. The ``-n`` option can be used to run a single test; +for example, ``./rt.sh -n control`` will build the ATM model and run the +``control`` test. The ``-c`` option is used to create baseline. New +baslines are needed when code changes lead to result changes, and therefore +deviate from existing baselines on a bit-for-bit basis. + +When a developer needs to create a new test for his/her implementation, the +first step would be to identify a test in the tests/tests/ directory that can +be used as a basis and to examine the variables defined in the test file. As +mentioned above, some of the variables may be overrides for those defined in +``default_vars.sh``; others may be new variables that are needed specifically +for the test. Default variables and their values are defined in the ``export_fv3`` +function of the ``default_vars.sh`` script for ATM application, ``export_cpl`` +function for S2S application and ``export_datm`` function for GODAS application. +Also, the names of template files for model configuration and initial conditions +can be identified via variables ``INPUT_NML``, ``NEMS_CONFIGURE`` and ``FV3_RUN``; +for example, by trying ``grep -n INPUT_NML *`` inside the tests/ and tests/tests/ +directories. + +.. _UsingUnitTest: + +-------------------------- +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. +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 +'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: + +.. table:: *Implementation requirements* + + +----------+------------------------------------------------------------------------+ + | **Case** | **Description** | + +==========+========================================================================+ + | thr | Varying the number of threads produces the same results | + +----------+------------------------------------------------------------------------+ + | mpi | Varying the number of MPI tasks reproduces | + +----------+------------------------------------------------------------------------+ + | dcp | Varying the decomposition (i.e. tile layout of FV3) reproduces | + +----------+------------------------------------------------------------------------+ + | rst | Restarting reproduces | + +----------+------------------------------------------------------------------------+ + | bit | Model can be compiled in double/single precision and run to completion | + +----------+------------------------------------------------------------------------+ + | dbg | Model can be compiled and run to completion in debug mode | + +----------+------------------------------------------------------------------------+ + +The unit 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. + +On `Tier-1 platforms `_, tests can +be run by first modifying the PSV file ``utest.bld`` to specify the build options +and then invoking + +.. code-block:: console + + ./utest -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`` +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 + +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 +``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 +workflow manager, and ``-k`` to keep the ``$RUNDIR``. In the following, +comparisons are made between the regression and unit tests on how they handle +different reproducibility tests. + +As discussed in :numref:`Section %s `, the variables and +values used to configure model parameters and to set up initial conditions in the +``$RUNDIR`` directory are set up in two stages: first, ``tests/default_vars.sh`` +define default values; then a specific test file in the tests/tests/ subdirectory +either overrides the default values or creates new variables if required by the test. +The regression test treats the different test cases shown in +:numref:`Table %s ` as different tests. Therefore, each +test case requires a test file in the tests/tests/ subdirectory; examples are +``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 +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/ +directory. diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index ee2005e619..c767c973b7 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,17 @@ -Tue Jul 6 12:35:50 MDT 2021 +Thu Jul 8 10:45:54 MDT 2021 Start Regression test -Compile 001 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 321 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 001 elapsed time 327 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 322 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 294 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 367 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 440 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 008 elapsed time 231 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-20210706/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control +Compile 004 elapsed time 363 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 434 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 231 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 008 elapsed time 227 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-20210708/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,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 = 290.529663 +0:The total amount of wall time = 292.208013 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,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.955903 +0:The total amount of wall time = 137.938254 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 173.847392 +0:The total amount of wall time = 176.684020 Test 003 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 349.487808 +0:The total amount of wall time = 480.211747 Test 004 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 354.923567 +0:The total amount of wall time = 358.829616 Test 005 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 363.207061 +0:The total amount of wall time = 372.615402 Test 006 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.963558 +0:The total amount of wall time = 498.694926 Test 007 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 305.018485 +0:The total amount of wall time = 312.520434 Test 008 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 286.301957 +0:The total amount of wall time = 283.455202 Test 009 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 353.728089 +0:The total amount of wall time = 357.898129 Test 010 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 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 = 170.109601 +0:The total amount of wall time = 170.148762 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.760229 +0:The total amount of wall time = 170.904590 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 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 = 258.847625 +0:The total amount of wall time = 259.436964 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 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 = 446.311585 +0:The total amount of wall time = 446.199378 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_debug Checking test 015 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 = 83.529121 +0:The total amount of wall time = 83.540277 Test 015 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 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 = 134.842504 +0:The total amount of wall time = 135.064170 Test 016 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 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 = 111.720937 +0:The total amount of wall time = 111.787191 Test 017 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 112.150393 +0:The total amount of wall time = 111.904752 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,79 +787,92 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 117.939222 +0:The total amount of wall time = 117.522126 Test 019 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_thompson_debug Checking test 020 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 = 102.485383 +0:The total amount of wall time = 102.017943 Test 020 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_thompson_no_aero_debug Checking test 021 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 = 99.002400 +0:The total amount of wall time = 99.010045 Test 021 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_rrtmgp_debug -Checking test 022 control_rrtmgp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_thompson_extdiag_debug +Checking test 022 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 = 91.883983 +0:The total amount of wall time = 115.529434 -Test 022 control_rrtmgp_debug PASS +Test 022 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ugwpv1_debug -Checking test 023 control_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_rrtmgp_debug +Checking test 023 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 = 89.860752 +0:The total amount of wall time = 92.013585 -Test 023 control_ugwpv1_debug PASS +Test 023 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ras_debug -Checking test 024 control_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_ugwpv1_debug +Checking test 024 control_ugwpv1_debug 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.415407 +0:The total amount of wall time = 89.308257 -Test 024 control_ras_debug PASS +Test 024 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/control_ras_debug +Checking test 025 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.415740 + +Test 025 control_ras_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -923,14 +936,14 @@ Checking test 025 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 = 113.321813 +0:The total amount of wall time = 112.493175 -Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -944,14 +957,14 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 217.853859 +0:The total amount of wall time = 216.967887 -Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/cpld_control -Checking test 027 cpld_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/cpld_control +Checking test 028 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1000,14 +1013,14 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 119.187661 +0:The total amount of wall time = 121.861802 -Test 027 cpld_control PASS +Test 028 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/cpld_debug -Checking test 028 cpld_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/GNU/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_51423/cpld_debug +Checking test 029 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1056,11 +1069,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 150.330488 +0:The total amount of wall time = 150.505365 -Test 028 cpld_debug PASS +Test 029 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 13:00:47 MDT 2021 -Elapsed time: 00h:24m:57s. Have a nice day! +Thu Jul 8 12:20:53 MDT 2021 +Elapsed time: 01h:35m:00s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 9b9efef907..f84d840f19 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,6 @@ -Tue Jul 6 11:47:15 MDT 2021 -Start Regression test -Compile 001 elapsed time 982 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1037 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 354 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 854 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 252 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 388 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 191 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 389 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 193 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 709 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +50,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 96.646810 +0:The total amount of wall time = 98.103495 Test 001 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +106,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 55.298212 +0:The total amount of wall time = 54.072370 Test 002 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +162,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 91.775317 +0:The total amount of wall time = 95.849839 Test 003 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +218,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 91.746387 +0:The total amount of wall time = 96.035278 Test 004 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +274,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 408.903203 +0:The total amount of wall time = 404.801714 Test 005 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +330,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 291.346043 +0:The total amount of wall time = 290.937303 Test 006 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +389,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 867.023736 +0:The total amount of wall time = 861.695397 Test 007 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +448,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 449.111156 +0:The total amount of wall time = 445.862364 Test 008 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,62 +497,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 842.933319 +0:The total amount of wall time = 856.258128 Test 009 cpld_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_bmark_v16 -Checking test 010 cpld_restart_bmark_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -0:The total amount of wall time = 456.729787 - -Test 010 cpld_restart_bmark_v16 PASS - - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_v16_nsst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16_nsst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +546,13 @@ Checking test 011 cpld_bmark_v16_nsst 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 = 811.141139 +0:The total amount of wall time = 853.778674 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +597,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 934.843337 +0:The total amount of wall time = 935.539824 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_wave_v16_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +648,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp 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 = 931.339787 +0:The total amount of wall time = 938.776112 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_wave +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +707,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -0:The total amount of wall time = 124.394873 +0:The total amount of wall time = 125.463324 Test 014 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +763,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 295.901331 +0:The total amount of wall time = 296.390675 Test 015 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +812,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.438170 +0:The total amount of wall time = 166.929206 Test 016 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +861,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 167.537203 +0:The total amount of wall time = 169.183966 Test 017 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +910,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 348.521521 +0:The total amount of wall time = 349.838129 Test 018 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +955,13 @@ Checking test 019 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.245569 +0:The total amount of wall time = 73.994600 Test 019 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_CubedSphereGrid +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +988,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 138.714387 +0:The total amount of wall time = 140.746196 Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1074,13 +1005,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 185.126714 +0:The total amount of wall time = 185.570446 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1022,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 577.442181 +0:The total amount of wall time = 579.251779 Test 022 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1039,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1040.271392 +0:The total amount of wall time = 1069.115549 Test 023 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c384gdas +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1088,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 905.433796 +0:The total amount of wall time = 899.218790 Test 024 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1105,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.975550 +0:The total amount of wall time = 113.074441 Test 025 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1122,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 109.815445 +0:The total amount of wall time = 111.106359 Test 026 control_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1139,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.414028 +0:The total amount of wall time = 114.527817 Test 027 control_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1156,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 164.979798 +0:The total amount of wall time = 167.651940 Test 028 control_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_merra2 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1173,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 195.200564 +0:The total amount of wall time = 202.099738 Test 029 control_merra2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1190,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 248.794848 +0:The total amount of wall time = 276.014193 Test 030 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1207,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 268.442588 +0:The total amount of wall time = 270.201578 Test 031 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1224,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 224.251449 +0:The total amount of wall time = 223.601268 Test 032 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1241,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 198.473293 +0:The total amount of wall time = 199.000421 Test 033 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1258,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 253.722050 +0:The total amount of wall time = 253.153908 Test 034 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1275,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 243.838593 +0:The total amount of wall time = 242.642773 Test 035 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1292,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 200.359228 +0:The total amount of wall time = 201.991154 Test 036 control_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1375,25 +1306,25 @@ Checking test 037 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 = 348.962456 +0:The total amount of wall time = 349.118515 Test 037 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_restart Checking test 038 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 = 190.421215 +0:The total amount of wall time = 190.848086 Test 038 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,13 +1335,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 347.207076 +0:The total amount of wall time = 347.897113 Test 039 regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1421,13 +1352,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 928.145524 +0:The total amount of wall time = 929.656178 Test 040 regional_quilt_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1436,27 +1367,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 347.623896 +0:The total amount of wall time = 346.610504 Test 041 regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_quilt_netcdf_parallel Checking test 042 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 347.503049 +0:The total amount of wall time = 347.993229 Test 042 regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1467,13 +1398,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 531.185287 +0:The total amount of wall time = 530.130885 Test 043 regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,13 +1493,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 196.261995 +0:The total amount of wall time = 195.836003 Test 044 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1564,13 @@ Checking test 045 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 = 99.464409 +0:The total amount of wall time = 97.460604 Test 045 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rap +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1635,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.320397 +0:The total amount of wall time = 99.497692 Test 046 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_hrrr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,13 +1706,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 97.186456 +0:The total amount of wall time = 97.369113 Test 047 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1846,13 +1777,13 @@ Checking test 048 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 = 97.446812 +0:The total amount of wall time = 98.213216 Test 048 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 @@ -1917,13 +1848,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 = 197.724231 +0:The total amount of wall time = 198.012091 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 @@ -1938,39 +1869,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 = 320.722410 +0:The total amount of wall time = 341.188930 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 = 156.273499 +0:The total amount of wall time = 157.140724 Test 051 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_2threads_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 = 273.311596 +0:The total amount of wall time = 272.867651 Test 052 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_CubedSphereGrid_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1997,184 +1928,197 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 170.133525 +0:The total amount of wall time = 170.676980 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.997231 +0:The total amount of wall time = 162.600817 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_stochy_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 = 178.548356 +0:The total amount of wall time = 178.804467 Test 055 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lndp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 = 160.228664 +0:The total amount of wall time = 160.237578 Test 056 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lheatstrg_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug 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.349951 +0:The total amount of wall time = 156.446568 Test 057 control_lheatstrg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_merra2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_merra2_debug Checking test 058 control_merra2_debug 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.424401 +0:The total amount of wall time = 207.377167 Test 058 control_merra2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_rrtmgp_debug Checking test 059 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 = 176.313726 +0:The total amount of wall time = 183.424606 Test 059 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_csawmg_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_csawmg_debug Checking test 060 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 = 244.216892 +0:The total amount of wall time = 245.664474 Test 060 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_csawmgt_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_csawmgt_debug Checking test 061 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 = 281.901918 +0:The total amount of wall time = 283.388721 Test 061 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug 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.192379 +0:The total amount of wall time = 169.239862 Test 062 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_ras_debug Checking test 063 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 = 158.728233 +0:The total amount of wall time = 162.107404 Test 063 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_thompson_debug Checking test 064 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 = 183.182511 +0:The total amount of wall time = 182.653736 Test 064 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_thompson_no_aero_debug Checking test 065 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 = 176.707407 +0:The total amount of wall time = 180.369037 Test 065 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_control_debug -Checking test 066 regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_thompson_extdiag_debug +Checking test 066 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 = 193.595092 + +Test 066 control_thompson_extdiag_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/regional_control_debug +Checking test 067 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 255.493585 +0:The total amount of wall time = 256.021226 -Test 066 regional_control_debug PASS +Test 067 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd_debug -Checking test 067 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_gsd_debug +Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2238,14 +2182,14 @@ 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 = 216.843986 +0:The total amount of wall time = 217.286385 -Test 067 fv3_gsd_debug PASS +Test 068 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd_diag3d_debug -Checking test 068 fv3_gsd_diag3d_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_gsd_diag3d_debug +Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2309,14 +2253,14 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 265.610914 +0:The total amount of wall time = 266.013268 -Test 068 fv3_gsd_diag3d_debug PASS +Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1beta_debug -Checking test 069 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_rrfs_v1beta_debug +Checking test 070 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2380,14 +2324,14 @@ 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 = 210.266386 +0:The total amount of wall time = 209.441108 -Test 069 fv3_rrfs_v1beta_debug PASS +Test 070 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1alpha_debug -Checking test 070 fv3_rrfs_v1alpha_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/fv3_rrfs_v1alpha_debug +Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2451,14 +2395,14 @@ 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 = 209.529445 +0:The total amount of wall time = 210.520515 -Test 070 fv3_rrfs_v1alpha_debug PASS +Test 071 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2522,14 +2466,14 @@ 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 = 220.381839 +0:The total amount of wall time = 219.255880 -Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 072 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/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 Comparing phyf001.nc .........OK @@ -2543,74 +2487,74 @@ 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 = 398.727132 +0:The total amount of wall time = 398.197987 -Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_control_cfsr -Checking test 073 datm_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_control_cfsr +Checking test 074 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 101.935732 +0:The total amount of wall time = 102.433254 -Test 073 datm_control_cfsr PASS +Test 074 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_restart_cfsr -Checking test 074 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_restart_cfsr +Checking test 075 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 64.899839 +0:The total amount of wall time = 64.982584 -Test 074 datm_restart_cfsr PASS +Test 075 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_control_gefs -Checking test 075 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_control_gefs +Checking test 076 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 95.770104 +0:The total amount of wall time = 96.450415 -Test 075 datm_control_gefs PASS +Test 076 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_bulk_cfsr -Checking test 076 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_bulk_cfsr +Checking test 077 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 99.060373 +0:The total amount of wall time = 98.593396 -Test 076 datm_bulk_cfsr PASS +Test 077 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_bulk_gefs -Checking test 077 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_bulk_gefs +Checking test 078 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 95.619978 +0:The total amount of wall time = 96.334449 -Test 077 datm_bulk_gefs PASS +Test 078 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_mx025_cfsr -Checking test 078 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_mx025_cfsr +Checking test 079 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2618,14 +2562,14 @@ Checking test 078 datm_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 = 351.531453 +0:The total amount of wall time = 349.280223 -Test 078 datm_mx025_cfsr PASS +Test 079 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_mx025_gefs -Checking test 079 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_mx025_gefs +Checking test 080 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2633,86 +2577,86 @@ Checking test 079 datm_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 = 349.582372 +0:The total amount of wall time = 348.392221 -Test 079 datm_mx025_gefs PASS +Test 080 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_debug_cfsr -Checking test 080 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_debug_cfsr +Checking test 081 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 274.541940 +0:The total amount of wall time = 274.946692 -Test 080 datm_debug_cfsr PASS +Test 081 datm_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_control_cfsr -Checking test 081 datm_cdeps_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_control_cfsr +Checking test 082 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 = 166.449775 +0:The total amount of wall time = 166.713522 -Test 081 datm_cdeps_control_cfsr PASS +Test 082 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_restart_cfsr -Checking test 082 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_restart_cfsr +Checking test 083 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 = 103.673323 +0:The total amount of wall time = 101.764741 -Test 082 datm_cdeps_restart_cfsr PASS +Test 083 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_control_gefs -Checking test 083 datm_cdeps_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_control_gefs +Checking test 084 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 = 159.815007 +0:The total amount of wall time = 159.378717 -Test 083 datm_cdeps_control_gefs PASS +Test 084 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_bulk_cfsr -Checking test 084 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_bulk_cfsr +Checking test 085 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 = 166.906776 +0:The total amount of wall time = 167.514151 -Test 084 datm_cdeps_bulk_cfsr PASS +Test 085 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_bulk_gefs -Checking test 085 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_bulk_gefs +Checking test 086 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 = 160.314467 +0:The total amount of wall time = 158.473497 -Test 085 datm_cdeps_bulk_gefs PASS +Test 086 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_mx025_cfsr -Checking test 086 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_mx025_cfsr +Checking test 087 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2720,14 +2664,14 @@ Checking test 086 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 = 352.522850 +0:The total amount of wall time = 354.867337 -Test 086 datm_cdeps_mx025_cfsr PASS +Test 087 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_mx025_gefs -Checking test 087 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_mx025_gefs +Checking test 088 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2735,36 +2679,36 @@ Checking test 087 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 = 351.586603 +0:The total amount of wall time = 345.368859 -Test 087 datm_cdeps_mx025_gefs PASS +Test 088 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_multiple_files_cfsr -Checking test 088 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_multiple_files_cfsr +Checking test 089 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 = 166.343994 +0:The total amount of wall time = 166.093345 -Test 088 datm_cdeps_multiple_files_cfsr PASS +Test 089 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_debug_cfsr -Checking test 089 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/datm_cdeps_debug_cfsr +Checking test 090 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 = 454.638553 +0:The total amount of wall time = 453.648808 -Test 089 datm_cdeps_debug_cfsr PASS +Test 090 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_atmwav -Checking test 090 control_atmwav results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27722/control_atmwav +Checking test 091 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2806,11 +2750,113 @@ Checking test 090 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 373.235775 +0:The total amount of wall time = 373.203548 + +Test 091 control_atmwav PASS + +Thu Jul 8 10:16:39 MDT 2021 +Start Regression test + +Compile 001 elapsed time 979 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43545/cpld_bmark_v16 +Checking test 001 cpld_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +0:The total amount of wall time = 852.862263 + +Test 001 cpld_bmark_v16 PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/worthen/FV3_RT/rt_43545/cpld_restart_bmark_v16 +Checking test 002 cpld_restart_bmark_v16 results .... + Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK + +0:The total amount of wall time = 474.468703 -Test 090 control_atmwav PASS +Test 002 cpld_restart_bmark_v16 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 12:41:42 MDT 2021 -Elapsed time: 00h:54m:28s. Have a nice day! +Thu Jul 8 13:37:40 MDT 2021 +Elapsed time: 03h:21m:02s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b37f5f5943..ee36f341ba 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,26 @@ -Tue Jul 6 20:18:35 EDT 2021 +Thu Jul 8 10:33:57 EDT 2021 Start Regression test -Compile 001 elapsed time 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 806 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 304 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 719 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 686 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 257 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 257 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 314 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 214 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 331 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control +Compile 001 elapsed time 791 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 832 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 330 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 706 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 742 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 290 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 288 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 270 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 333 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 216 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 335 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 224 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 719 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 92.902901 +The total amount of wall time = 92.225990 Test 001 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 82.603186 +The total amount of wall time = 52.297227 Test 002 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 94.829121 +The total amount of wall time = 93.918904 Test 003 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 89.296794 +The total amount of wall time = 94.306976 Test 004 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 402.836136 +The total amount of wall time = 405.163238 Test 005 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 289.287107 +The total amount of wall time = 336.727640 Test 006 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 819.461472 +The total amount of wall time = 849.722179 Test 007 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 429.131060 +The total amount of wall time = 455.559843 Test 008 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 829.027652 +The total amount of wall time = 873.245419 Test 009 cpld_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_bmark_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 427.304468 +The total amount of wall time = 486.360363 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_v16_nsst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16_nsst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 826.830621 +The total amount of wall time = 840.348471 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_wave_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 927.785566 +The total amount of wall time = 927.382140 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_wave_v16_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 958.022630 +The total amount of wall time = 916.870826 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_wave +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 139.970380 +The total amount of wall time = 109.938389 Test 014 cpld_control_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 269.356258 +The total amount of wall time = 270.209397 Test 015 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 165.871249 +The total amount of wall time = 165.831415 Test 016 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 168.694263 +The total amount of wall time = 172.041231 Test 017 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.596043 +The total amount of wall time = 200.878339 Test 018 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.884364 +The total amount of wall time = 70.537890 Test 019 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 130.659394 +The total amount of wall time = 125.459197 Test 020 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 310.438628 +The total amount of wall time = 415.140507 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.551776 +The total amount of wall time = 525.399324 Test 022 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 144.396901 +The total amount of wall time = 119.481367 Test 023 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 117.315686 +The total amount of wall time = 124.160606 Test 024 control_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 120.126557 +The total amount of wall time = 122.468750 Test 025 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1159,13 +1159,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 183.098396 +The total amount of wall time = 167.062002 Test 026 control_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_merra2 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 223.789317 +The total amount of wall time = 239.033124 Test 027 control_merra2 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,13 +1193,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 226.465915 +The total amount of wall time = 220.739114 Test 028 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1210,13 +1210,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 325.333626 +The total amount of wall time = 312.309699 Test 029 control_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,13 +1227,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 384.491486 +The total amount of wall time = 424.562045 Test 030 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 256.037333 +The total amount of wall time = 249.241976 Test 031 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 198.937744 +The total amount of wall time = 198.854022 Test 032 control_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,13 +1278,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 222.954860 +The total amount of wall time = 189.169286 Test 033 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.454341 +The total amount of wall time = 246.959406 Test 034 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,13 +1312,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 234.072492 +The total amount of wall time = 237.394703 Test 035 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 191.652605 +The total amount of wall time = 190.549010 Test 036 control_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1343,25 +1343,25 @@ Checking test 037 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 = 329.417590 +The total amount of wall time = 349.572363 Test 037 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 184.377427 +The total amount of wall time = 178.363170 Test 038 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 331.592076 +The total amount of wall time = 328.988084 Test 039 regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 284.363096 +The total amount of wall time = 300.554832 Test 040 regional_quilt_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,27 +1404,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 329.918643 +The total amount of wall time = 328.336940 Test 041 regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_quilt_netcdf_parallel Checking test 042 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 338.866015 +The total amount of wall time = 447.426798 Test 042 regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1435,13 +1435,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 464.173020 +The total amount of wall time = 464.057391 Test 043 regional_quilt_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.368204 +The total amount of wall time = 185.219395 Test 044 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1alpha +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1601,13 +1601,13 @@ Checking test 045 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 95.410109 +The total amount of wall time = 93.270194 Test 045 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1672,13 +1672,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 94.880968 +The total amount of wall time = 93.453099 Test 046 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,13 +1743,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.168232 +The total amount of wall time = 91.085796 Test 047 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,13 +1814,13 @@ Checking test 048 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.709085 +The total amount of wall time = 92.897964 Test 048 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 @@ -1885,13 +1885,13 @@ Checking test 049 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 = 192.608688 +The total amount of wall time = 190.550768 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 @@ -1906,39 +1906,39 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 324.795126 +The total amount of wall time = 319.036248 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.056559 +The total amount of wall time = 147.772625 Test 051 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_2threads_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 261.174615 +The total amount of wall time = 262.076097 Test 052 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1965,184 +1965,197 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 155.336661 +The total amount of wall time = 157.451841 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 -The total amount of wall time = 162.345047 +The total amount of wall time = 163.740925 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.736824 +The total amount of wall time = 170.722419 Test 055 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 -The total amount of wall time = 149.874028 +The total amount of wall time = 153.087056 Test 056 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lheatstrg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.007126 +The total amount of wall time = 145.973438 Test 057 control_lheatstrg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_merra2_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_merra2_debug Checking test 058 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 203.408331 +The total amount of wall time = 270.490674 Test 058 control_merra2_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_rrtmgp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_rrtmgp_debug Checking test 059 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 = 164.653491 +The total amount of wall time = 168.123338 Test 059 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_csawmg_debug Checking test 060 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 = 242.118486 +The total amount of wall time = 306.690657 Test 060 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_csawmgt_debug Checking test 061 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 = 266.267783 +The total amount of wall time = 343.309921 Test 061 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.069210 +The total amount of wall time = 160.558449 Test 062 control_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_ras_debug Checking test 063 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 = 147.540186 +The total amount of wall time = 148.256554 Test 063 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_thompson_debug Checking test 064 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 = 172.803385 +The total amount of wall time = 179.292190 Test 064 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_thompson_no_aero_debug Checking test 065 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.547300 +The total amount of wall time = 173.687422 Test 065 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_control_debug -Checking test 066 regional_control_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug_extdiag +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_thompson_extdiag_debug +Checking test 066 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 = 184.140761 + +Test 066 control_thompson_extdiag_debug PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/regional_control_debug +Checking test 067 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 286.872202 +The total amount of wall time = 259.265979 -Test 066 regional_control_debug PASS +Test 067 regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd_debug -Checking test 067 fv3_gsd_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_gsd_debug +Checking test 068 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2206,14 +2219,14 @@ Checking test 067 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.281971 +The total amount of wall time = 205.005181 -Test 067 fv3_gsd_debug PASS +Test 068 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd_diag3d_debug -Checking test 068 fv3_gsd_diag3d_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_gsd_diag3d_debug +Checking test 069 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2277,14 +2290,14 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 237.983948 +The total amount of wall time = 244.735539 -Test 068 fv3_gsd_diag3d_debug PASS +Test 069 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1beta_debug -Checking test 069 fv3_rrfs_v1beta_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_rrfs_v1beta_debug +Checking test 070 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2348,14 +2361,14 @@ Checking test 069 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 = 197.402985 +The total amount of wall time = 200.064075 -Test 069 fv3_rrfs_v1beta_debug PASS +Test 070 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1alpha_debug -Checking test 070 fv3_rrfs_v1alpha_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/fv3_rrfs_v1alpha_debug +Checking test 071 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2419,14 +2432,14 @@ Checking test 070 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 = 197.068281 +The total amount of wall time = 203.145120 -Test 070 fv3_rrfs_v1alpha_debug PASS +Test 071 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 Comparing atmos_4xdaily.tile3.nc .........OK @@ -2490,14 +2503,14 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 221.824244 +The total amount of wall time = 211.966323 -Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 072 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/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 Comparing phyf001.nc .........OK @@ -2511,74 +2524,74 @@ Checking test 072 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 = 378.114033 +The total amount of wall time = 384.546184 -Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 073 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_control_cfsr -Checking test 073 datm_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_control_cfsr +Checking test 074 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 106.007782 +The total amount of wall time = 99.705358 -Test 073 datm_control_cfsr PASS +Test 074 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_restart_cfsr -Checking test 074 datm_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_restart_cfsr +Checking test 075 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 90.889672 +The total amount of wall time = 86.506263 -Test 074 datm_restart_cfsr PASS +Test 075 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_control_gefs -Checking test 075 datm_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_control_gefs +Checking test 076 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 123.061562 +The total amount of wall time = 126.263899 -Test 075 datm_control_gefs PASS +Test 076 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_bulk_cfsr -Checking test 076 datm_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_bulk_cfsr +Checking test 077 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 129.574976 +The total amount of wall time = 94.548327 -Test 076 datm_bulk_cfsr PASS +Test 077 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_bulk_gefs -Checking test 077 datm_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_bulk_gefs +Checking test 078 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 124.547629 +The total amount of wall time = 122.455213 -Test 077 datm_bulk_gefs PASS +Test 078 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_mx025_gefs -Checking test 078 datm_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_mx025_gefs +Checking test 079 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2586,86 +2599,86 @@ Checking test 078 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 382.824662 +The total amount of wall time = 380.497280 -Test 078 datm_mx025_gefs PASS +Test 079 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_debug_cfsr -Checking test 079 datm_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_debug_cfsr +Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 255.614904 +The total amount of wall time = 221.322291 -Test 079 datm_debug_cfsr PASS +Test 080 datm_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_control_cfsr -Checking test 080 datm_cdeps_control_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_control_cfsr +Checking test 081 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 152.725757 +The total amount of wall time = 151.859316 -Test 080 datm_cdeps_control_cfsr PASS +Test 081 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_restart_cfsr -Checking test 081 datm_cdeps_restart_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_restart_cfsr +Checking test 082 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 88.706103 +The total amount of wall time = 87.582193 -Test 081 datm_cdeps_restart_cfsr PASS +Test 082 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_control_gefs -Checking test 082 datm_cdeps_control_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_control_gefs +Checking test 083 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 181.652641 +The total amount of wall time = 152.241652 -Test 082 datm_cdeps_control_gefs PASS +Test 083 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_bulk_cfsr -Checking test 083 datm_cdeps_bulk_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_bulk_cfsr +Checking test 084 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 151.996590 +The total amount of wall time = 151.270086 -Test 083 datm_cdeps_bulk_cfsr PASS +Test 084 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_bulk_gefs -Checking test 084 datm_cdeps_bulk_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_bulk_gefs +Checking test 085 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 145.666962 +The total amount of wall time = 146.859335 -Test 084 datm_cdeps_bulk_gefs PASS +Test 085 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_mx025_cfsr -Checking test 085 datm_cdeps_mx025_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_mx025_cfsr +Checking test 086 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2673,14 +2686,14 @@ 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 -The total amount of wall time = 356.944878 +The total amount of wall time = 355.204992 -Test 085 datm_cdeps_mx025_cfsr PASS +Test 086 datm_cdeps_mx025_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_mx025_gefs -Checking test 086 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_mx025_gefs +Checking test 087 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2688,36 +2701,36 @@ 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 -The total amount of wall time = 387.810348 +The total amount of wall time = 340.907755 -Test 086 datm_cdeps_mx025_gefs PASS +Test 087 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_multiple_files_cfsr -Checking test 087 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_multiple_files_cfsr +Checking test 088 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 150.615565 +The total amount of wall time = 154.081259 -Test 087 datm_cdeps_multiple_files_cfsr PASS +Test 088 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_debug_cfsr -Checking test 088 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/datm_cdeps_debug_cfsr +Checking test 089 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 361.688500 +The total amount of wall time = 360.610543 -Test 088 datm_cdeps_debug_cfsr PASS +Test 089 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_atmwav -Checking test 089 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_23267/control_atmwav +Checking test 090 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2759,11 +2772,11 @@ Checking test 089 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 373.753534 +The total amount of wall time = 351.058044 -Test 089 control_atmwav PASS +Test 090 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 21:27:37 EDT 2021 -Elapsed time: 01h:09m:03s. Have a nice day! +Thu Jul 8 11:53:02 EDT 2021 +Elapsed time: 01h:19m:06s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index a1bbac7fa4..75e4204888 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,17 +1,17 @@ -Tue Jul 6 17:32:43 UTC 2021 +Thu Jul 8 16:40:15 UTC 2021 Start Regression test Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 175 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 174 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 162 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 93 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 197 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 111 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 008 elapsed time 94 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control +Compile 002 elapsed time 177 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 171 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 163 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 87 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 202 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 110 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 008 elapsed time 92 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,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 = 825.558834 + 0: The total amount of wall time = 829.317155 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,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 = 403.420102 + 0: The total amount of wall time = 399.129890 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 654.632666 + 0: The total amount of wall time = 651.694820 Test 003 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1420.966866 + 0: The total amount of wall time = 1411.029917 Test 004 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 862.990139 + 0: The total amount of wall time = 869.804515 Test 005 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1020.295869 + 0: The total amount of wall time = 1001.287930 Test 006 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 992.222416 + 0: The total amount of wall time = 972.965509 Test 007 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 959.089264 + 0: The total amount of wall time = 971.143540 Test 008 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 828.327600 + 0: The total amount of wall time = 829.992254 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 824.819481 + 0: The total amount of wall time = 802.553587 Test 010 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 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 = 400.137584 + 0: The total amount of wall time = 379.432465 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 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 = 382.573364 + 0: The total amount of wall time = 388.485690 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 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 = 637.196424 + 0: The total amount of wall time = 609.731368 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 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 = 439.477006 + 0: The total amount of wall time = 451.759623 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_debug Checking test 015 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 = 100.627350 + 0: The total amount of wall time = 101.693173 Test 015 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 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 = 120.252963 + 0: The total amount of wall time = 129.522091 Test 016 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 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 = 122.638242 + 0: The total amount of wall time = 131.524401 Test 017 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.735986 + 0: The total amount of wall time = 118.710401 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,79 +787,92 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 129.358538 + 0: The total amount of wall time = 331.398727 Test 019 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_thompson_debug Checking test 020 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 = 115.794855 + 0: The total amount of wall time = 128.288163 Test 020 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_thompson_no_aero_debug Checking test 021 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 = 111.799540 + 0: The total amount of wall time = 132.523516 Test 021 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_rrtmgp_debug -Checking test 022 control_rrtmgp_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_thompson_extdiag_debug +Checking test 022 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 = 109.558826 + 0: The total amount of wall time = 134.397189 -Test 022 control_rrtmgp_debug PASS +Test 022 control_thompson_extdiag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ugwpv1_debug -Checking test 023 control_ugwpv1_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_rrtmgp_debug +Checking test 023 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 = 110.306199 + 0: The total amount of wall time = 112.110964 -Test 023 control_ugwpv1_debug PASS +Test 023 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ras_debug -Checking test 024 control_ras_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_ugwpv1_debug +Checking test 024 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.576109 + 0: The total amount of wall time = 110.517191 -Test 024 control_ras_debug PASS +Test 024 control_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/control_ras_debug +Checking test 025 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 = 105.092382 + +Test 025 control_ras_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 026 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -923,14 +936,14 @@ Checking test 025 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 = 136.812895 + 0: The total amount of wall time = 133.854056 -Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 026 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -944,14 +957,14 @@ Checking test 026 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 = 234.325745 + 0: The total amount of wall time = 237.613627 -Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 027 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/cpld_control -Checking test 027 cpld_control results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/cpld_control +Checking test 028 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK Comparing sfcf024.tile3.nc .........OK @@ -1000,14 +1013,14 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 646.190925 + 0: The total amount of wall time = 661.593051 -Test 027 cpld_control PASS +Test 028 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/cpld_debug -Checking test 028 cpld_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/GNU/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_14429/cpld_debug +Checking test 029 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK Comparing sfcf006.tile3.nc .........OK @@ -1056,11 +1069,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 370.828802 + 0: The total amount of wall time = 378.863336 -Test 028 cpld_debug PASS +Test 029 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 20:13:44 UTC 2021 -Elapsed time: 02h:41m:01s. Have a nice day! +Thu Jul 8 17:13:06 UTC 2021 +Elapsed time: 00h:32m:51s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 61ec569ccd..54834758a2 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,27 +1,27 @@ -Tue Jul 6 17:46:21 UTC 2021 +Thu Jul 8 14:43:08 UTC 2021 Start Regression test -Compile 001 elapsed time 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 692 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 228 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 1205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 664 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 533 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 559 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 141 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 162 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 98 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 98 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 541 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control +Compile 001 elapsed time 871 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 667 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 254 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 757 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 927 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 855 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1048 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 605 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 486 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 375 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 298 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 251 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 495 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 115 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 165 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 178 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 529 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 538 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -71,13 +71,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.249232 + 0: The total amount of wall time = 103.101801 Test 001 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -127,13 +127,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 52.254250 + 0: The total amount of wall time = 59.307211 Test 002 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -183,13 +183,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.639701 + 0: The total amount of wall time = 100.354185 Test 003 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -239,13 +239,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.802845 + 0: The total amount of wall time = 111.913053 Test 004 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -295,13 +295,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 369.612707 + 0: The total amount of wall time = 393.415251 Test 005 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -351,13 +351,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 265.097730 + 0: The total amount of wall time = 262.536624 Test 006 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -410,13 +410,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 761.656631 + 0: The total amount of wall time = 761.795996 Test 007 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -469,13 +469,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 399.757704 + 0: The total amount of wall time = 439.407084 Test 008 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -518,13 +518,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 739.140314 + 0: The total amount of wall time = 763.919536 Test 009 cpld_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_bmark_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -567,13 +567,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 400.086037 + 0: The total amount of wall time = 461.427670 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_v16_nsst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -616,13 +616,13 @@ Checking test 011 cpld_bmark_v16_nsst 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 = 719.307393 + 0: The total amount of wall time = 760.533674 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -667,13 +667,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 735.241509 + 0: The total amount of wall time = 785.394822 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_wave_v16_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -718,13 +718,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp 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 = 751.517299 + 0: The total amount of wall time = 782.968956 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -777,13 +777,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 106.068111 + 0: The total amount of wall time = 109.761144 Test 014 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -833,13 +833,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 279.562387 + 0: The total amount of wall time = 489.820834 Test 015 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -882,13 +882,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.896099 + 0: The total amount of wall time = 153.590694 Test 016 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -931,13 +931,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 156.252734 + 0: The total amount of wall time = 164.619878 Test 017 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -980,13 +980,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.806610 + 0: The total amount of wall time = 175.533854 Test 018 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1025,13 +1025,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 61.728268 + 0: The total amount of wall time = 62.925929 Test 019 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1058,13 +1058,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 113.076012 + 0: The total amount of wall time = 123.270648 Test 020 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1075,13 +1075,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.770376 + 0: The total amount of wall time = 180.770699 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1092,13 +1092,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.747202 + 0: The total amount of wall time = 463.620190 Test 022 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1109,13 +1109,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 758.988476 + 0: The total amount of wall time = 943.718798 Test 023 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1158,13 +1158,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 629.076090 + 0: The total amount of wall time = 637.267455 Test 024 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1175,13 +1175,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 107.537281 + 0: The total amount of wall time = 115.540399 Test 025 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1192,13 +1192,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 105.064505 + 0: The total amount of wall time = 123.374594 Test 026 control_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,13 +1209,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.001369 + 0: The total amount of wall time = 116.482628 Test 027 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1226,13 +1226,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 148.931584 + 0: The total amount of wall time = 167.458489 Test 028 control_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_merra2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1243,13 +1243,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.444776 + 0: The total amount of wall time = 191.986720 Test 029 control_merra2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1260,13 +1260,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 199.735284 + 0: The total amount of wall time = 197.620515 Test 030 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1277,13 +1277,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 267.012478 + 0: The total amount of wall time = 276.507011 Test 031 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1294,13 +1294,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 326.178573 + 0: The total amount of wall time = 333.601494 Test 032 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1311,13 +1311,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.790473 + 0: The total amount of wall time = 219.157350 Test 033 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1328,13 +1328,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.016531 + 0: The total amount of wall time = 202.393518 Test 034 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1345,13 +1345,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 174.816288 + 0: The total amount of wall time = 192.512385 Test 035 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,13 +1362,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.191860 + 0: The total amount of wall time = 213.442290 Test 036 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.059937 + 0: The total amount of wall time = 213.975235 Test 037 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,13 +1396,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.011139 + 0: The total amount of wall time = 174.295758 Test 038 control_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1410,25 +1410,25 @@ Checking test 039 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 = 285.866900 + 0: The total amount of wall time = 291.213061 Test 039 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_restart Checking test 040 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 = 159.599707 + 0: The total amount of wall time = 186.966046 Test 040 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1439,13 +1439,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 289.250749 + 0: The total amount of wall time = 307.121631 Test 041 regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1456,13 +1456,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 210.080589 + 0: The total amount of wall time = 234.872174 Test 042 regional_quilt_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,27 +1471,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 288.430441 + 0: The total amount of wall time = 306.346525 Test 043 regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 292.273253 + 0: The total amount of wall time = 305.956938 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1502,13 +1502,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 381.567181 + 0: The total amount of wall time = 399.137557 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,13 +1597,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.405091 + 0: The total amount of wall time = 200.895948 Test 046 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,13 +1668,13 @@ Checking test 047 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 = 91.022385 + 0: The total amount of wall time = 295.500734 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,13 +1739,13 @@ Checking test 048 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.498033 + 0: The total amount of wall time = 104.275044 Test 048 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1810,13 +1810,13 @@ Checking test 049 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.612915 + 0: The total amount of wall time = 104.335160 Test 049 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1881,13 +1881,13 @@ Checking test 050 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.957369 + 0: The total amount of wall time = 107.819713 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,13 @@ Checking test 051 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.703217 + 0: The total amount of wall time = 152.963844 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1973,39 +1973,39 @@ Checking test 052 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 = 292.006416 + 0: The total amount of wall time = 284.831837 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_debug Checking test 053 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.276087 + 0: The total amount of wall time = 143.300709 Test 053 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_2threads_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_2threads_debug Checking test 054 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 = 214.144502 + 0: The total amount of wall time = 214.979900 Test 054 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2032,184 +2032,197 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 156.545040 + 0: The total amount of wall time = 154.529295 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_wrtGauss_netcdf_parallel_debug Checking test 056 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.187810 + 0: The total amount of wall time = 142.937125 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_stochy_debug Checking test 057 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 = 169.111304 + 0: The total amount of wall time = 160.911230 Test 057 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_lndp_debug Checking test 058 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.332627 + 0: The total amount of wall time = 148.410977 Test 058 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lheatstrg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.336994 + 0: The total amount of wall time = 145.103406 Test 059 control_lheatstrg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_merra2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_merra2_debug Checking test 060 control_merra2_debug 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.878629 + 0: The total amount of wall time = 178.319880 Test 060 control_merra2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_rrtmgp_debug Checking test 061 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 = 162.202080 + 0: The total amount of wall time = 160.853412 Test 061 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_csawmg_debug Checking test 062 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 = 212.037516 + 0: The total amount of wall time = 218.610288 Test 062 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_csawmgt_debug Checking test 063 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 = 245.823677 + 0: The total amount of wall time = 242.533660 Test 063 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 155.207114 + 0: The total amount of wall time = 154.251810 Test 064 control_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_ras_debug Checking test 065 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 = 142.436005 + 0: The total amount of wall time = 142.457356 Test 065 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_thompson_debug Checking test 066 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 = 171.625983 + 0: The total amount of wall time = 174.790359 Test 066 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_thompson_no_aero_debug Checking test 067 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 = 162.582311 + 0: The total amount of wall time = 160.791821 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_control_debug -Checking test 068 regional_control_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug_extdiag +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_thompson_extdiag_debug +Checking test 068 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 = 177.881301 + +Test 068 control_thompson_extdiag_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/regional_control_debug +Checking test 069 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 226.208815 + 0: The total amount of wall time = 227.611206 -Test 068 regional_control_debug PASS +Test 069 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd_debug -Checking test 069 fv3_gsd_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_gsd_debug +Checking test 070 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2273,14 +2286,14 @@ Checking test 069 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 = 195.097747 + 0: The total amount of wall time = 199.048042 -Test 069 fv3_gsd_debug PASS +Test 070 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd_diag3d_debug -Checking test 070 fv3_gsd_diag3d_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_gsd_diag3d_debug +Checking test 071 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2344,14 +2357,14 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.347412 + 0: The total amount of wall time = 401.742044 -Test 070 fv3_gsd_diag3d_debug PASS +Test 071 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1beta_debug -Checking test 071 fv3_rrfs_v1beta_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_rrfs_v1beta_debug +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2415,14 +2428,14 @@ Checking test 071 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 = 190.209874 + 0: The total amount of wall time = 192.251510 -Test 071 fv3_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1alpha_debug -Checking test 072 fv3_rrfs_v1alpha_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_rrfs_v1alpha_debug +Checking test 073 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2486,14 +2499,14 @@ Checking test 072 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 = 194.862487 + 0: The total amount of wall time = 197.175939 -Test 072 fv3_rrfs_v1alpha_debug PASS +Test 073 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 074 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2557,14 +2570,14 @@ Checking test 073 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 = 203.101964 + 0: The total amount of wall time = 210.625789 -Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2578,74 +2591,74 @@ Checking test 074 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.062119 + 0: The total amount of wall time = 393.131164 -Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_control_cfsr -Checking test 075 datm_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_control_cfsr +Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 109.322474 + 0: The total amount of wall time = 97.365453 -Test 075 datm_control_cfsr PASS +Test 076 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_restart_cfsr -Checking test 076 datm_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_restart_cfsr +Checking test 077 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 63.702667 + 0: The total amount of wall time = 64.552824 -Test 076 datm_restart_cfsr PASS +Test 077 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_control_gefs -Checking test 077 datm_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_control_gefs +Checking test 078 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 105.078267 + 0: The total amount of wall time = 91.399504 -Test 077 datm_control_gefs PASS +Test 078 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_bulk_cfsr -Checking test 078 datm_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_bulk_cfsr +Checking test 079 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 106.151483 + 0: The total amount of wall time = 94.129612 -Test 078 datm_bulk_cfsr PASS +Test 079 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_bulk_gefs -Checking test 079 datm_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_bulk_gefs +Checking test 080 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 90.553620 + 0: The total amount of wall time = 91.805956 -Test 079 datm_bulk_gefs PASS +Test 080 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_mx025_cfsr -Checking test 080 datm_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_mx025_cfsr +Checking test 081 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2653,14 +2666,14 @@ Checking test 080 datm_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 = 319.259136 + 0: The total amount of wall time = 328.452199 -Test 080 datm_mx025_cfsr PASS +Test 081 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_mx025_gefs -Checking test 081 datm_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_mx025_gefs +Checking test 082 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2668,86 +2681,86 @@ Checking test 081 datm_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.709935 + 0: The total amount of wall time = 312.921059 -Test 081 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_debug_cfsr -Checking test 082 datm_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_debug_cfsr +Checking test 083 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 270.793288 + 0: The total amount of wall time = 265.457904 -Test 082 datm_debug_cfsr PASS +Test 083 datm_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_control_cfsr -Checking test 083 datm_cdeps_control_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_control_cfsr +Checking test 084 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.895292 + 0: The total amount of wall time = 147.734756 -Test 083 datm_cdeps_control_cfsr PASS +Test 084 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_restart_cfsr -Checking test 084 datm_cdeps_restart_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_restart_cfsr +Checking test 085 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 = 94.652092 + 0: The total amount of wall time = 95.571934 -Test 084 datm_cdeps_restart_cfsr PASS +Test 085 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_control_gefs -Checking test 085 datm_cdeps_control_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_control_gefs +Checking test 086 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 = 145.829138 + 0: The total amount of wall time = 145.335473 -Test 085 datm_cdeps_control_gefs PASS +Test 086 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_bulk_cfsr -Checking test 086 datm_cdeps_bulk_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_bulk_cfsr +Checking test 087 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 = 152.573039 + 0: The total amount of wall time = 154.308037 -Test 086 datm_cdeps_bulk_cfsr PASS +Test 087 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_bulk_gefs -Checking test 087 datm_cdeps_bulk_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_bulk_gefs +Checking test 088 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 = 157.986787 + 0: The total amount of wall time = 146.965693 -Test 087 datm_cdeps_bulk_gefs PASS +Test 088 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_mx025_cfsr -Checking test 088 datm_cdeps_mx025_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_mx025_cfsr +Checking test 089 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2755,14 +2768,14 @@ Checking test 088 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 = 315.949695 + 0: The total amount of wall time = 317.808831 -Test 088 datm_cdeps_mx025_cfsr PASS +Test 089 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_mx025_gefs -Checking test 089 datm_cdeps_mx025_gefs results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_mx025_gefs +Checking test 090 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2770,36 +2783,36 @@ Checking test 089 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 = 304.505160 + 0: The total amount of wall time = 312.470917 -Test 089 datm_cdeps_mx025_gefs PASS +Test 090 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_multiple_files_cfsr -Checking test 090 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_multiple_files_cfsr +Checking test 091 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 = 150.201491 + 0: The total amount of wall time = 153.505188 -Test 090 datm_cdeps_multiple_files_cfsr PASS +Test 091 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_debug_cfsr -Checking test 091 datm_cdeps_debug_cfsr results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/datm_cdeps_debug_cfsr +Checking test 092 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 = 438.857083 + 0: The total amount of wall time = 448.473891 -Test 091 datm_cdeps_debug_cfsr PASS +Test 092 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_atmwav -Checking test 092 control_atmwav results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_atmwav +Checking test 093 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2841,14 +2854,14 @@ Checking test 092 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 329.367421 + 0: The total amount of wall time = 335.225526 -Test 092 control_atmwav PASS +Test 093 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_atm_aerosols -Checking test 093 control_atm_aerosols results .... +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_300367/control_atm_aerosols +Checking test 094 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2894,11 +2907,11 @@ Checking test 093 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 = 294.618718 + 0: The total amount of wall time = 299.578896 -Test 093 control_atm_aerosols PASS +Test 094 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 21:16:13 UTC 2021 -Elapsed time: 03h:29m:52s. Have a nice day! +Thu Jul 8 15:50:37 UTC 2021 +Elapsed time: 01h:07m:30s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e57230f1f9..1888b9ec7e 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,26 @@ -Tue Jul 6 20:31:42 GMT 2021 +Thu Jul 8 18:44:57 GMT 2021 Start Regression test -Compile 001 elapsed time 2419 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2453 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 254 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 2246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 2345 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 2263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 007 elapsed time 2266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 2286 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 226 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 265 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 144 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 016 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 2286 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control +Compile 001 elapsed time 2431 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2474 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 255 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 2241 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 2352 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 2243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 2316 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 2328 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 323 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 269 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 222 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 266 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 138 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 312 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 016 elapsed time 143 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 2285 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 154.849375 +The total amount of wall time = 134.475127 Test 001 cpld_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 76.450327 +The total amount of wall time = 75.264914 Test 002 cpld_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_ca Checking test 003 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 133.522498 +The total amount of wall time = 125.174286 Test 003 cpld_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_control_c192 Checking test 004 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 551.867309 +The total amount of wall time = 574.225263 Test 004 cpld_control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_restart_c192 Checking test 005 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 416.394647 +The total amount of wall time = 402.505921 Test 005 cpld_restart_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_control_c384 Checking test 006 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 006 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 648.395652 +The total amount of wall time = 647.432170 Test 006 cpld_control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_restart_c384 Checking test 007 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -412,13 +412,13 @@ Checking test 007 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 416.766686 +The total amount of wall time = 384.462152 Test 007 cpld_restart_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_bmark_v16 Checking test 008 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -461,13 +461,13 @@ Checking test 008 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1055.106917 +The total amount of wall time = 1011.126299 Test 008 cpld_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_bmark_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_restart_bmark_v16 Checking test 009 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -510,13 +510,13 @@ Checking test 009 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 572.396733 +The total amount of wall time = 607.621189 Test 009 cpld_restart_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_v16_nsst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16_nsst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_bmark_v16_nsst Checking test 010 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -559,13 +559,13 @@ Checking test 010 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1058.859892 +The total amount of wall time = 1038.722691 Test 010 cpld_bmark_v16_nsst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_wave_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_bmark_wave_v16 Checking test 011 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -610,13 +610,13 @@ Checking test 011 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1230.042726 +The total amount of wall time = 1272.121627 Test 011 cpld_bmark_wave_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_wave_v16_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_bmark_wave_v16_noahmp Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -661,13 +661,13 @@ Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1218.039918 +The total amount of wall time = 1257.631115 Test 012 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_wave +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_control_wave Checking test 013 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,13 +720,13 @@ Checking test 013 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 1058.238399 +The total amount of wall time = 1075.628053 Test 013 cpld_control_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/cpld_debug Checking test 014 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 376.111432 +The total amount of wall time = 370.902566 Test 014 cpld_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -825,13 +825,13 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 215.755055 +The total amount of wall time = 319.201709 Test 015 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -874,13 +874,13 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 791.951378 +The total amount of wall time = 814.644783 Test 016 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -919,13 +919,13 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 89.728954 +The total amount of wall time = 86.111218 Test 017 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_CubedSphereGrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -952,13 +952,13 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 175.158626 +The total amount of wall time = 170.462263 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -969,13 +969,13 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 279.688083 +The total amount of wall time = 249.679440 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -986,13 +986,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 648.406780 +The total amount of wall time = 636.705587 Test 020 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1003,13 +1003,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 900.839597 +The total amount of wall time = 888.552660 Test 021 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c384gdas +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 782.321887 +The total amount of wall time = 783.507944 Test 022 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 164.290937 +The total amount of wall time = 150.085776 Test 023 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1086,13 +1086,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 150.605034 +The total amount of wall time = 241.990112 Test 024 control_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1103,13 +1103,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 160.804292 +The total amount of wall time = 153.753176 Test 025 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lheatstrg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1120,13 +1120,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 209.911532 +The total amount of wall time = 209.972376 Test 026 control_lheatstrg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_merra2 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.019499 +The total amount of wall time = 478.364991 Test 027 control_merra2 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1154,13 +1154,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 272.421456 +The total amount of wall time = 436.670839 Test 028 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1171,13 +1171,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 368.575477 +The total amount of wall time = 377.253219 Test 029 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,13 +1188,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 435.220129 +The total amount of wall time = 438.994219 Test 030 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1205,13 +1205,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 297.154636 +The total amount of wall time = 503.452942 Test 031 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ugwpv1 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1222,13 +1222,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 264.951627 +The total amount of wall time = 458.594604 Test 032 control_ugwpv1 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1239,13 +1239,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 267.133492 +The total amount of wall time = 448.764211 Test 033 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1256,13 +1256,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 285.693072 +The total amount of wall time = 539.954281 Test 034 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,13 +1273,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 275.370069 +The total amount of wall time = 443.705230 Test 035 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,13 +1290,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 249.693322 +The total amount of wall time = 446.757662 Test 036 control_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1304,25 +1304,25 @@ Checking test 037 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 = 426.544541 +The total amount of wall time = 733.234859 Test 037 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 241.234354 +The total amount of wall time = 254.360804 Test 038 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1333,13 +1333,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 416.579092 +The total amount of wall time = 412.928346 Test 039 regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_quilt_hafs Checking test 040 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1348,27 +1348,27 @@ Checking test 040 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 410.421455 +The total amount of wall time = 407.608350 Test 040 regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_quilt_netcdf_parallel Checking test 041 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 419.481466 +The total amount of wall time = 411.394371 Test 041 regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_quilt_RRTMGP Checking test 042 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 042 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 536.909566 +The total amount of wall time = 549.603628 Test 042 regional_quilt_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_gsd Checking test 043 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1474,13 +1474,13 @@ Checking test 043 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 275.226056 +The total amount of wall time = 239.503732 Test 043 fv3_gsd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1alpha +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_rrfs_v1alpha Checking test 044 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1545,13 +1545,13 @@ Checking test 044 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.101041 +The total amount of wall time = 123.720357 Test 044 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_HAFS_v0_hwrf_thompson Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,13 +1616,13 @@ Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 197.709212 +The total amount of wall time = 194.738202 Test 045 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_esg_HAFS_v0_hwrf_thompson Checking test 046 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1637,39 +1637,39 @@ Checking test 046 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 = 373.669513 +The total amount of wall time = 366.358258 Test 046 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_debug Checking test 047 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 = 191.636774 +The total amount of wall time = 193.584629 Test 047 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_2threads_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_2threads_debug Checking test 048 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 366.450628 +The total amount of wall time = 366.432430 Test 048 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_CubedSphereGrid_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_CubedSphereGrid_debug Checking test 049 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1696,184 +1696,197 @@ Checking test 049 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 211.941308 +The total amount of wall time = 214.453328 Test 049 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_wrtGauss_netcdf_parallel_debug Checking test 050 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 200.786586 +The total amount of wall time = 200.544751 Test 050 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_stochy_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_stochy_debug Checking test 051 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 = 223.533238 +The total amount of wall time = 222.113903 Test 051 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_lndp_debug Checking test 052 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 = 207.903218 +The total amount of wall time = 200.589374 Test 052 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lheatstrg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_lheatstrg_debug Checking test 053 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.315023 +The total amount of wall time = 202.698417 Test 053 control_lheatstrg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_merra2_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_merra2_debug Checking test 054 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 237.849971 +The total amount of wall time = 252.578050 Test 054 control_merra2_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 216.079769 +The total amount of wall time = 224.942304 Test 055 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 292.441415 +The total amount of wall time = 288.896947 Test 056 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmgt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 332.848125 +The total amount of wall time = 337.371034 Test 057 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ugwpv1_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_ugwpv1_debug Checking test 058 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 208.958137 +The total amount of wall time = 213.576130 Test 058 control_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 196.462790 +The total amount of wall time = 198.931822 Test 059 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 231.574410 +The total amount of wall time = 235.265321 Test 060 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 220.600131 +The total amount of wall time = 226.426957 Test 061 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_control_debug -Checking test 062 regional_control_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug_extdiag +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 + +The total amount of wall time = 244.401389 + +Test 062 control_thompson_extdiag_debug PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/regional_control_debug +Checking test 063 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 328.586462 +The total amount of wall time = 321.515202 -Test 062 regional_control_debug PASS +Test 063 regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd_debug -Checking test 063 fv3_gsd_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_gsd_debug +Checking test 064 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1937,14 +1950,14 @@ Checking test 063 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 272.415525 +The total amount of wall time = 274.565434 -Test 063 fv3_gsd_debug PASS +Test 064 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd_diag3d_debug -Checking test 064 fv3_gsd_diag3d_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_gsd_diag3d_debug +Checking test 065 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2008,14 +2021,14 @@ Checking test 064 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 399.908030 +The total amount of wall time = 423.174337 -Test 064 fv3_gsd_diag3d_debug PASS +Test 065 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1beta_debug -Checking test 065 fv3_rrfs_v1beta_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_rrfs_v1beta_debug +Checking test 066 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2079,14 +2092,14 @@ Checking test 065 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 = 264.015904 +The total amount of wall time = 258.383209 -Test 065 fv3_rrfs_v1beta_debug PASS +Test 066 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1alpha_debug -Checking test 066 fv3_rrfs_v1alpha_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_rrfs_v1alpha_debug +Checking test 067 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2150,14 +2163,14 @@ Checking test 066 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 = 260.420650 +The total amount of wall time = 258.220055 -Test 066 fv3_rrfs_v1alpha_debug PASS +Test 067 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 068 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2221,14 +2234,14 @@ Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 269.889157 +The total amount of wall time = 281.096896 -Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 068 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2242,74 +2255,74 @@ Checking test 068 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 = 510.204592 +The total amount of wall time = 509.305895 -Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 069 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_control_cfsr -Checking test 069 datm_control_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_control_cfsr +Checking test 070 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 133.505420 +The total amount of wall time = 155.580233 -Test 069 datm_control_cfsr PASS +Test 070 datm_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_restart_cfsr -Checking test 070 datm_restart_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_restart_cfsr +Checking test 071 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 84.724722 +The total amount of wall time = 103.270057 -Test 070 datm_restart_cfsr PASS +Test 071 datm_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_control_gefs -Checking test 071 datm_control_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_control_gefs +Checking test 072 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 125.174611 +The total amount of wall time = 136.713024 -Test 071 datm_control_gefs PASS +Test 072 datm_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_bulk_cfsr -Checking test 072 datm_bulk_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_bulk_cfsr +Checking test 073 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 126.381396 +The total amount of wall time = 149.916040 -Test 072 datm_bulk_cfsr PASS +Test 073 datm_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_bulk_gefs -Checking test 073 datm_bulk_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_bulk_gefs +Checking test 074 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 125.434891 +The total amount of wall time = 131.992833 -Test 073 datm_bulk_gefs PASS +Test 074 datm_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_mx025_cfsr -Checking test 074 datm_mx025_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_mx025_cfsr +Checking test 075 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2317,14 +2330,14 @@ Checking test 074 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 427.951361 +The total amount of wall time = 449.791426 -Test 074 datm_mx025_cfsr PASS +Test 075 datm_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_mx025_gefs -Checking test 075 datm_mx025_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_mx025_gefs +Checking test 076 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2332,86 +2345,86 @@ Checking test 075 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 419.580295 +The total amount of wall time = 435.956946 -Test 075 datm_mx025_gefs PASS +Test 076 datm_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_debug_cfsr -Checking test 076 datm_debug_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/datm_debug_cfsr +Checking test 077 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 349.532224 +The total amount of wall time = 355.210397 -Test 076 datm_debug_cfsr PASS +Test 077 datm_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_control_cfsr -Checking test 077 datm_cdeps_control_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 197.987951 +The total amount of wall time = 209.729819 -Test 077 datm_cdeps_control_cfsr PASS +Test 078 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_restart_cfsr -Checking test 078 datm_cdeps_restart_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 127.681243 +The total amount of wall time = 150.862669 -Test 078 datm_cdeps_restart_cfsr PASS +Test 079 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_control_gefs -Checking test 079 datm_cdeps_control_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 200.481021 +The total amount of wall time = 205.715844 -Test 079 datm_cdeps_control_gefs PASS +Test 080 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_bulk_cfsr -Checking test 080 datm_cdeps_bulk_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 199.005467 +The total amount of wall time = 227.925867 -Test 080 datm_cdeps_bulk_cfsr PASS +Test 081 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_bulk_gefs -Checking test 081 datm_cdeps_bulk_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 193.968537 +The total amount of wall time = 223.462220 -Test 081 datm_cdeps_bulk_gefs PASS +Test 082 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_mx025_cfsr -Checking test 082 datm_cdeps_mx025_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 Comparing RESTART/MOM.res_2.nc .........OK @@ -2419,14 +2432,14 @@ 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 -The total amount of wall time = 420.424513 +The total amount of wall time = 429.553499 -Test 082 datm_cdeps_mx025_cfsr PASS +Test 083 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_mx025_gefs -Checking test 083 datm_cdeps_mx025_gefs results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 Comparing RESTART/MOM.res_2.nc .........OK @@ -2434,36 +2447,36 @@ 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 -The total amount of wall time = 420.580691 +The total amount of wall time = 445.252281 -Test 083 datm_cdeps_mx025_gefs PASS +Test 084 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_multiple_files_cfsr -Checking test 084 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 203.147564 +The total amount of wall time = 208.792028 -Test 084 datm_cdeps_multiple_files_cfsr PASS +Test 085 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_debug_cfsr -Checking test 085 datm_cdeps_debug_cfsr results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/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 -The total amount of wall time = 572.375215 +The total amount of wall time = 576.288355 -Test 085 datm_cdeps_debug_cfsr PASS +Test 086 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_atmwav -Checking test 086 control_atmwav results .... +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_223739/control_atmwav +Checking test 087 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2505,11 +2518,11 @@ Checking test 086 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 446.822360 +The total amount of wall time = 436.820631 -Test 086 control_atmwav PASS +Test 087 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jul 7 00:43:03 GMT 2021 -Elapsed time: 04h:11m:21s. Have a nice day! +Fri Jul 9 00:23:23 GMT 2021 +Elapsed time: 05h:38m:26s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 5943080f99..d563a08750 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,26 @@ -Tue Jul 6 13:34:19 CDT 2021 +Thu Jul 8 09:36:37 CDT 2021 Start Regression test -Compile 001 elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 850 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 397 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 589 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 157 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 145 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 238 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 142 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 237 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control +Compile 001 elapsed time 673 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 990 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 170 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 548 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 625 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 670 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1007 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 217 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 142 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 242 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 117 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 193 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 119 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 540 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 103.332941 + 0: The total amount of wall time = 98.607519 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 65.165575 + 0: The total amount of wall time = 72.419277 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 97.877128 + 0: The total amount of wall time = 94.005967 Test 003 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 103.601924 + 0: The total amount of wall time = 102.209446 Test 004 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 423.395980 + 0: The total amount of wall time = 394.479501 Test 005 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 293.556083 + 0: The total amount of wall time = 274.933374 Test 006 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 782.550158 + 0: The total amount of wall time = 772.246166 Test 007 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 442.746065 + 0: The total amount of wall time = 425.659870 Test 008 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 764.244373 + 0: The total amount of wall time = 773.568064 Test 009 cpld_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 430.884126 + 0: The total amount of wall time = 429.258008 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_v16_nsst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst 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 = 775.947626 + 0: The total amount of wall time = 793.491162 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 816.744509 + 0: The total amount of wall time = 847.442722 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_wave_v16_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp 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 = 798.308705 + 0: The total amount of wall time = 840.837309 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 138.960301 + 0: The total amount of wall time = 184.731697 Test 014 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 319.546598 + 0: The total amount of wall time = 324.817006 Test 015 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.326959 + 0: The total amount of wall time = 160.239144 Test 016 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 162.843554 + 0: The total amount of wall time = 181.195950 Test 017 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 163.910336 + 0: The total amount of wall time = 172.679624 Test 018 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 68.944657 + 0: The total amount of wall time = 69.369817 Test 019 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.693539 + 0: The total amount of wall time = 156.644433 Test 020 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.517982 + 0: The total amount of wall time = 195.804075 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 468.359444 + 0: The total amount of wall time = 464.824412 Test 022 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 737.238864 + 0: The total amount of wall time = 747.188845 Test 023 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 638.079447 + 0: The total amount of wall time = 640.932480 Test 024 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.155953 + 0: The total amount of wall time = 123.429733 Test 025 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.302241 + 0: The total amount of wall time = 122.995144 Test 026 control_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.367369 + 0: The total amount of wall time = 120.023790 Test 027 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 160.142655 + 0: The total amount of wall time = 166.451239 Test 028 control_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_merra2 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.851219 + 0: The total amount of wall time = 240.328018 Test 029 control_merra2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.549662 + 0: The total amount of wall time = 210.052113 Test 030 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 347.366293 + 0: The total amount of wall time = 322.543440 Test 031 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 367.816237 + 0: The total amount of wall time = 378.579609 Test 032 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 230.354557 + 0: The total amount of wall time = 234.658946 Test 033 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.548481 + 0: The total amount of wall time = 211.164862 Test 034 control_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.336756 + 0: The total amount of wall time = 186.373137 Test 035 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.808820 + 0: The total amount of wall time = 210.047711 Test 036 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,13 +1378,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.104568 + 0: The total amount of wall time = 204.402593 Test 037 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,13 +1395,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.940732 + 0: The total amount of wall time = 180.737233 Test 038 control_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1409,25 +1409,25 @@ Checking test 039 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 = 290.674261 + 0: The total amount of wall time = 297.897411 Test 039 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_restart Checking test 040 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 = 158.190849 + 0: The total amount of wall time = 161.551290 Test 040 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1438,13 +1438,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 313.328013 + 0: The total amount of wall time = 316.390162 Test 041 regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1455,13 +1455,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 219.284950 + 0: The total amount of wall time = 224.648680 Test 042 regional_quilt_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1470,13 +1470,13 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.424684 + 0: The total amount of wall time = 301.625961 Test 043 regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK @@ -1484,13 +1484,13 @@ Checking test 044 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 309.417051 + 0: The total amount of wall time = 352.345035 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1501,13 +1501,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 394.616576 + 0: The total amount of wall time = 415.178275 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,13 +1596,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.566459 + 0: The total amount of wall time = 210.082860 Test 046 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1667,13 +1667,13 @@ Checking test 047 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.465711 + 0: The total amount of wall time = 139.212841 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,13 @@ Checking test 048 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.914603 + 0: The total amount of wall time = 138.508931 Test 048 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1809,13 +1809,13 @@ Checking test 049 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 97.165562 + 0: The total amount of wall time = 133.269652 Test 049 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,13 +1880,13 @@ Checking test 050 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 = 96.894606 + 0: The total amount of wall time = 122.460573 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,13 +1951,13 @@ Checking test 051 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 = 164.997102 + 0: The total amount of wall time = 151.949889 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1972,39 +1972,39 @@ Checking test 052 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 = 291.354907 + 0: The total amount of wall time = 308.895497 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_debug Checking test 053 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.610504 + 0: The total amount of wall time = 160.554791 Test 053 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_2threads_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_2threads_debug Checking test 054 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 = 232.523421 + 0: The total amount of wall time = 228.381578 Test 054 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2031,184 +2031,197 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 177.778157 + 0: The total amount of wall time = 196.918029 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_wrtGauss_netcdf_parallel_debug Checking test 056 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 = 167.830268 + 0: The total amount of wall time = 170.281810 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_stochy_debug Checking test 057 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 = 187.080712 + 0: The total amount of wall time = 188.033783 Test 057 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.956236 + 0: The total amount of wall time = 166.208175 Test 058 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lheatstrg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_lheatstrg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug 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.217292 + 0: The total amount of wall time = 163.750731 Test 059 control_lheatstrg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_merra2_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_merra2_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 247.078451 + 0: The total amount of wall time = 232.851493 Test 060 control_merra2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_rrtmgp_debug Checking test 061 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 = 180.229046 + 0: The total amount of wall time = 182.893706 Test 061 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_csawmg_debug Checking test 062 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 = 275.798694 + 0: The total amount of wall time = 290.957454 Test 062 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_csawmgt_debug Checking test 063 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 = 314.001063 + 0: The total amount of wall time = 307.736908 Test 063 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.735435 + 0: The total amount of wall time = 175.039129 Test 064 control_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_ras_debug Checking test 065 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 = 162.546949 + 0: The total amount of wall time = 163.269342 Test 065 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_thompson_debug Checking test 066 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 = 185.500740 + 0: The total amount of wall time = 194.374513 Test 066 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_thompson_no_aero_debug Checking test 067 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 = 182.884681 + 0: The total amount of wall time = 180.583787 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_control_debug -Checking test 068 regional_control_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_thompson_debug_extdiag +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_thompson_extdiag_debug +Checking test 068 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 = 195.817607 + +Test 068 control_thompson_extdiag_debug PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/regional_control_debug +Checking test 069 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 241.319606 + 0: The total amount of wall time = 237.268556 -Test 068 regional_control_debug PASS +Test 069 regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd_debug -Checking test 069 fv3_gsd_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_gsd_debug +Checking test 070 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2272,14 +2285,14 @@ Checking test 069 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 = 221.421845 + 0: The total amount of wall time = 225.311290 -Test 069 fv3_gsd_debug PASS +Test 070 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd_diag3d_debug -Checking test 070 fv3_gsd_diag3d_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_gsd_diag3d_debug +Checking test 071 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2343,14 +2356,14 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 347.887256 + 0: The total amount of wall time = 323.646368 -Test 070 fv3_gsd_diag3d_debug PASS +Test 071 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1beta_debug -Checking test 071 fv3_rrfs_v1beta_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_rrfs_v1beta_debug +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2414,14 +2427,14 @@ Checking test 071 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 = 218.300674 + 0: The total amount of wall time = 211.997584 -Test 071 fv3_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1alpha_debug -Checking test 072 fv3_rrfs_v1alpha_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_rrfs_v1alpha_debug +Checking test 073 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2485,14 +2498,14 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 211.695610 + 0: The total amount of wall time = 207.388656 -Test 072 fv3_rrfs_v1alpha_debug PASS +Test 073 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 074 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2556,14 +2569,14 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 219.253165 + 0: The total amount of wall time = 221.829861 -Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2577,74 +2590,74 @@ Checking test 074 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 = 411.386448 + 0: The total amount of wall time = 420.899872 -Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_control_cfsr -Checking test 075 datm_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_control_cfsr +Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 104.487213 + 0: The total amount of wall time = 100.876569 -Test 075 datm_control_cfsr PASS +Test 076 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_restart_cfsr -Checking test 076 datm_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_restart_cfsr +Checking test 077 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 74.860746 + 0: The total amount of wall time = 91.295254 -Test 076 datm_restart_cfsr PASS +Test 077 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_control_gefs -Checking test 077 datm_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_control_gefs +Checking test 078 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 94.947500 + 0: The total amount of wall time = 94.867083 -Test 077 datm_control_gefs PASS +Test 078 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_bulk_cfsr -Checking test 078 datm_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_bulk_cfsr +Checking test 079 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 103.182252 + 0: The total amount of wall time = 101.452396 -Test 078 datm_bulk_cfsr PASS +Test 079 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_bulk_gefs -Checking test 079 datm_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_bulk_gefs +Checking test 080 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.384838 + 0: The total amount of wall time = 96.926864 -Test 079 datm_bulk_gefs PASS +Test 080 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_mx025_cfsr -Checking test 080 datm_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_mx025_cfsr +Checking test 081 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2652,14 +2665,14 @@ Checking test 080 datm_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 = 353.150960 + 0: The total amount of wall time = 357.845659 -Test 080 datm_mx025_cfsr PASS +Test 081 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_mx025_gefs -Checking test 081 datm_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_mx025_gefs +Checking test 082 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2667,86 +2680,86 @@ Checking test 081 datm_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 = 334.935643 + 0: The total amount of wall time = 343.868810 -Test 081 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_debug_cfsr -Checking test 082 datm_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_debug_cfsr +Checking test 083 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 280.800983 + 0: The total amount of wall time = 276.818135 -Test 082 datm_debug_cfsr PASS +Test 083 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_control_cfsr -Checking test 083 datm_cdeps_control_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_control_cfsr +Checking test 084 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 156.035237 + 0: The total amount of wall time = 153.631669 -Test 083 datm_cdeps_control_cfsr PASS +Test 084 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_restart_cfsr -Checking test 084 datm_cdeps_restart_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_restart_cfsr +Checking test 085 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 = 97.116173 + 0: The total amount of wall time = 100.687532 -Test 084 datm_cdeps_restart_cfsr PASS +Test 085 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_control_gefs -Checking test 085 datm_cdeps_control_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_control_gefs +Checking test 086 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 = 149.414000 + 0: The total amount of wall time = 147.628763 -Test 085 datm_cdeps_control_gefs PASS +Test 086 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_bulk_cfsr -Checking test 086 datm_cdeps_bulk_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_bulk_cfsr +Checking test 087 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 = 151.900707 + 0: The total amount of wall time = 154.981344 -Test 086 datm_cdeps_bulk_cfsr PASS +Test 087 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_bulk_gefs -Checking test 087 datm_cdeps_bulk_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_bulk_gefs +Checking test 088 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 = 152.598635 + 0: The total amount of wall time = 151.013459 -Test 087 datm_cdeps_bulk_gefs PASS +Test 088 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_mx025_cfsr -Checking test 088 datm_cdeps_mx025_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_mx025_cfsr +Checking test 089 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2754,14 +2767,14 @@ Checking test 088 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 = 346.722854 + 0: The total amount of wall time = 348.686434 -Test 088 datm_cdeps_mx025_cfsr PASS +Test 089 datm_cdeps_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_mx025_gefs -Checking test 089 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_mx025_gefs +Checking test 090 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2769,36 +2782,36 @@ Checking test 089 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 = 356.639202 + 0: The total amount of wall time = 355.031595 -Test 089 datm_cdeps_mx025_gefs PASS +Test 090 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_multiple_files_cfsr -Checking test 090 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_multiple_files_cfsr +Checking test 091 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.787697 + 0: The total amount of wall time = 149.454429 -Test 090 datm_cdeps_multiple_files_cfsr PASS +Test 091 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_debug_cfsr -Checking test 091 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/datm_cdeps_debug_cfsr +Checking test 092 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 = 462.572874 + 0: The total amount of wall time = 450.543112 -Test 091 datm_cdeps_debug_cfsr PASS +Test 092 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_atmwav -Checking test 092 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_252218/control_atmwav +Checking test 093 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2840,11 +2853,11 @@ Checking test 092 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 361.480207 + 0: The total amount of wall time = 349.903213 -Test 092 control_atmwav PASS +Test 093 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 14:39:15 CDT 2021 -Elapsed time: 01h:04m:56s. Have a nice day! +Thu Jul 8 10:35:40 CDT 2021 +Elapsed time: 00h:59m:03s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 6858ef6151..a6694a3aaa 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Tue Jul 6 17:35:03 UTC 2021 +Thu Jul 8 15:02:38 UTC 2021 Start Regression test -Compile 001 elapsed time 963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 954 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 887 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 947 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 488 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 465 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control +Compile 001 elapsed time 889 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 935 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 881 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 925 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 892 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 502 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 492 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 504 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 500 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.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 = 187.565227 +The total amount of wall time = 182.275223 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/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 = 188.146789 +The total amount of wall time = 190.445166 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/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 = 69.461825 +The total amount of wall time = 70.348144 Test 003 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_CubedSphereGrid Checking test 004 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 004 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.464133 +The total amount of wall time = 132.144383 Test 004 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_wrtGauss_netcdf_parallel Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -199,13 +199,13 @@ Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 187.826821 +The total amount of wall time = 192.537542 Test 005 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c192 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_c192 Checking test 006 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -216,13 +216,13 @@ Checking test 006 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 514.663265 +The total amount of wall time = 513.990518 Test 006 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_stochy Checking test 007 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -233,13 +233,13 @@ Checking test 007 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 155.671747 +The total amount of wall time = 131.444211 Test 007 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ca -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ca +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_ca Checking test 008 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -250,13 +250,13 @@ Checking test 008 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 139.427989 +The total amount of wall time = 143.235275 Test 008 control_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_lndp Checking test 009 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -267,13 +267,13 @@ Checking test 009 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 144.351798 +The total amount of wall time = 147.565253 Test 009 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lheatstrg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_lheatstrg Checking test 010 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -284,13 +284,13 @@ Checking test 010 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.346533 +The total amount of wall time = 180.523224 Test 010 control_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_merra2 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_merra2 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_merra2 Checking test 011 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -301,13 +301,13 @@ Checking test 011 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 258.367444 +The total amount of wall time = 228.304063 Test 011 control_merra2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_rrtmgp Checking test 012 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -318,13 +318,13 @@ Checking test 012 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 233.086537 +The total amount of wall time = 230.788001 Test 012 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_csawmg Checking test 013 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,13 +335,13 @@ Checking test 013 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 342.896517 +The total amount of wall time = 319.736172 Test 013 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_csawmgt Checking test 014 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -352,13 +352,13 @@ Checking test 014 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 403.747037 +The total amount of wall time = 376.473733 Test 014 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_flake -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_flake Checking test 015 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -369,13 +369,13 @@ Checking test 015 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 246.549131 +The total amount of wall time = 243.632963 Test 015 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ugwpv1 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_ugwpv1 Checking test 016 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -386,13 +386,13 @@ Checking test 016 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 218.032589 +The total amount of wall time = 219.962274 Test 016 control_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_ras Checking test 017 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -403,13 +403,13 @@ Checking test 017 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 215.073259 +The total amount of wall time = 196.014991 Test 017 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_noahmp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_noahmp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_noahmp Checking test 018 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -420,13 +420,13 @@ Checking test 018 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 212.615449 +The total amount of wall time = 202.312649 Test 018 control_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_control Checking test 019 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -434,25 +434,25 @@ Checking test 019 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 = 340.679847 +The total amount of wall time = 340.142211 Test 019 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_restart Checking test 020 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 224.895392 +The total amount of wall time = 210.250493 Test 020 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_quilt Checking test 021 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -463,13 +463,13 @@ Checking test 021 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 323.825377 +The total amount of wall time = 324.615534 Test 021 regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_quilt_hafs Checking test 022 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -478,13 +478,13 @@ Checking test 022 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 328.699193 +The total amount of wall time = 325.216111 Test 022 regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_quilt_netcdf_parallel Checking test 023 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -492,13 +492,13 @@ Checking test 023 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 326.909437 +The total amount of wall time = 323.937119 Test 023 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_quilt_RRTMGP Checking test 024 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -509,13 +509,13 @@ Checking test 024 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 439.580693 +The total amount of wall time = 432.548944 Test 024 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_gsd Checking test 025 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -604,13 +604,13 @@ Checking test 025 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.634477 +The total amount of wall time = 191.634670 Test 025 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1alpha +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_rrfs_v1alpha Checking test 026 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -675,13 +675,13 @@ Checking test 026 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.417528 +The total amount of wall time = 100.051542 Test 026 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rap -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rap +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_rap Checking test 027 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,13 +746,13 @@ Checking test 027 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.739933 +The total amount of wall time = 100.388251 Test 027 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_hrrr -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_hrrr +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_hrrr Checking test 028 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,13 +817,13 @@ Checking test 028 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.576916 +The total amount of wall time = 98.068948 Test 028 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_rrfs_v1beta Checking test 029 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,13 +888,13 @@ Checking test 029 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 97.331139 +The total amount of wall time = 98.902209 Test 029 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_HAFS_v0_hwrf_thompson Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -959,13 +959,13 @@ Checking test 030 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 = 163.422811 +The total amount of wall time = 163.338595 Test 030 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_esg_HAFS_v0_hwrf_thompson Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -980,26 +980,26 @@ Checking test 031 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 = 314.192665 +The total amount of wall time = 303.711792 Test 031 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_debug Checking test 032 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.500478 +The total amount of wall time = 141.320232 Test 032 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_CubedSphereGrid_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_CubedSphereGrid_debug Checking test 033 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1026,184 +1026,197 @@ Checking test 033 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 151.405651 +The total amount of wall time = 148.821029 Test 033 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_wrtGauss_netcdf_parallel_debug Checking test 034 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 = 143.494519 +The total amount of wall time = 142.343620 Test 034 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_stochy_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_stochy_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_stochy_debug Checking test 035 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.995497 +The total amount of wall time = 162.813855 Test 035 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lndp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_lndp_debug Checking test 036 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 = 144.513810 +The total amount of wall time = 145.753436 Test 036 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lheatstrg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lheatstrg_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_lheatstrg_debug Checking test 037 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.266464 +The total amount of wall time = 140.116659 Test 037 control_lheatstrg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_merra2_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_merra2_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_merra2_debug Checking test 038 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 202.289040 +The total amount of wall time = 224.485846 Test 038 control_merra2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_rrtmgp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_rrtmgp_debug Checking test 039 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 = 159.982163 +The total amount of wall time = 161.905281 Test 039 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_csawmg_debug Checking test 040 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 = 245.857498 +The total amount of wall time = 239.673045 Test 040 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmgt_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_csawmgt_debug Checking test 041 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 = 283.844216 +The total amount of wall time = 295.574058 Test 041 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_ugwpv1_debug Checking test 042 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.098209 +The total amount of wall time = 152.382525 Test 042 control_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/control_ras_debug Checking test 043 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 = 143.868975 +The total amount of wall time = 142.581280 Test 043 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/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 = 167.417451 +The total amount of wall time = 168.442913 Test 044 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/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 = 163.438877 +The total amount of wall time = 163.119454 Test 045 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_control_debug -Checking test 046 regional_control_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_debug_extdiag +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/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 = 177.719546 + +Test 046 control_thompson_extdiag_debug PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/regional_control_debug +Checking test 047 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 243.730892 +The total amount of wall time = 243.396730 -Test 046 regional_control_debug PASS +Test 047 regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd_debug -Checking test 047 fv3_gsd_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_gsd_debug +Checking test 048 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1267,14 +1280,14 @@ Checking test 047 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.988299 +The total amount of wall time = 197.634867 -Test 047 fv3_gsd_debug PASS +Test 048 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd_diag3d_debug -Checking test 048 fv3_gsd_diag3d_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_gsd_diag3d_debug +Checking test 049 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1338,14 +1351,14 @@ Checking test 048 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 243.453122 +The total amount of wall time = 244.240472 -Test 048 fv3_gsd_diag3d_debug PASS +Test 049 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1beta_debug -Checking test 049 fv3_rrfs_v1beta_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_rrfs_v1beta_debug +Checking test 050 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1409,14 +1422,14 @@ Checking test 049 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.078110 +The total amount of wall time = 190.014625 -Test 049 fv3_rrfs_v1beta_debug PASS +Test 050 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1alpha_debug -Checking test 050 fv3_rrfs_v1alpha_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_rrfs_v1alpha_debug +Checking test 051 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1480,14 +1493,14 @@ Checking test 050 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 = 189.737436 +The total amount of wall time = 189.733057 -Test 050 fv3_rrfs_v1alpha_debug PASS +Test 051 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 052 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1551,14 +1564,14 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.331793 +The total amount of wall time = 197.692852 -Test 051 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 052 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_36035/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -1572,11 +1585,11 @@ Checking test 052 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 = 365.886595 +The total amount of wall time = 360.697816 -Test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 053 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jul 6 18:03:30 UTC 2021 -Elapsed time: 00h:28m:27s. Have a nice day! +Thu Jul 8 15:29:57 UTC 2021 +Elapsed time: 00h:27m:20s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 612716826d..d67c561e37 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,26 +1,26 @@ -Wed Jul 7 13:14:59 UTC 2021 +Thu Jul 8 15:43:59 UTC 2021 Start Regression test -Compile 001 elapsed time 3046 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 2926 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1778 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 1602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1884 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 2536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 1317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1160 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 379 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 436 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 903 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 426 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1172 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 1454 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 1697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control +Compile 001 elapsed time 3017 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 2866 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 2172 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 1574 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 2782 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 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 2063 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 2062 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 2054 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 1901 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 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 1661 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 365 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 487 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 917 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 369 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1038 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 400 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 1105 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 102.851306 +[0] The total amount of wall time = 102.619214 Test 001 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 69.621159 +[0] The total amount of wall time = 68.350993 Test 002 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 102.474105 +[0] The total amount of wall time = 100.311178 Test 003 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_ca -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_ca +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 101.410251 +[0] The total amount of wall time = 101.078388 Test 004 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 414.742667 +[0] The total amount of wall time = 415.947195 Test 005 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 313.127742 +[0] The total amount of wall time = 315.378138 Test 006 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 802.639057 +[0] The total amount of wall time = 808.938712 Test 007 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 475.901393 +[0] The total amount of wall time = 482.399529 Test 008 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_bmark_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 817.738192 +[0] The total amount of wall time = 832.516448 Test 009 cpld_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_bmark_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_bmark_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 526.243050 +[0] The total amount of wall time = 520.999961 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16_nsst -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_v16_nsst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_bmark_v16_nsst +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst 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 = 828.959610 +[0] The total amount of wall time = 826.053130 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_wave_v16 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_bmark_wave_v16 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 929.406140 +[0] The total amount of wall time = 918.908865 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_wave_v16_noahmp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_wave_v16_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_bmark_wave_v16_noahmp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp 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 = 918.443483 +[0] The total amount of wall time = 925.924932 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_wave -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_control_wave +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 126.092655 +[0] The total amount of wall time = 126.892508 Test 014 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/cpld_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 319.192694 +[0] The total amount of wall time = 320.336527 Test 015 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 168.618081 +[0] The total amount of wall time = 169.424752 Test 016 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 172.857457 +[0] The total amount of wall time = 173.766624 Test 017 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 155.436287 +[0] The total amount of wall time = 157.708634 Test 018 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 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.950704 +[0] The total amount of wall time = 73.293924 Test 019 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_CubedSphereGrid +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,30 +1057,30 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 133.485959 +[0] The total amount of wall time = 133.661834 Test 020 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc ............ALT CHECK......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 = 197.142140 +[0] The total amount of wall time = 201.204792 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c192 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 541.845705 +[0] The total amount of wall time = 547.714150 Test 022 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c384 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1022.695556 +[0] The total amount of wall time = 1020.682756 Test 023 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c384gdas -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c384gdas +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_c384gdas +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 905.750269 +[0] The total amount of wall time = 897.008148 Test 024 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 119.423577 +[0] The total amount of wall time = 120.813736 Test 025 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ca -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ca +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 117.767828 +[0] The total amount of wall time = 119.095087 Test 026 control_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 120.759083 +[0] The total amount of wall time = 122.640488 Test 027 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lheatstrg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 167.355746 +[0] The total amount of wall time = 168.953071 Test 028 control_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_merra2 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_merra2 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 194.605765 +[0] The total amount of wall time = 196.700679 Test 029 control_merra2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_rrtmgp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 227.408806 +[0] The total amount of wall time = 233.387244 Test 030 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 306.451628 +[0] The total amount of wall time = 305.531338 Test 031 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmgt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 368.315319 +[0] The total amount of wall time = 368.265579 Test 032 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_flake -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_flake +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 244.144226 +[0] The total amount of wall time = 255.315573 Test 033 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1 -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ugwpv1 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 208.609263 +[0] The total amount of wall time = 207.880787 Test 034 control_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ras +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 197.000786 +[0] The total amount of wall time = 197.963807 Test 035 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 234.049111 +[0] The total amount of wall time = 233.452916 Test 036 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,13 +1378,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 226.070202 +[0] The total amount of wall time = 226.346303 Test 037 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_noahmp -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_noahmp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,13 +1395,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 199.645112 +[0] The total amount of wall time = 198.606710 Test 038 control_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1409,25 +1409,25 @@ Checking test 039 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 = 357.690768 +[0] The total amount of wall time = 346.271270 Test 039 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_restart -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_restart Checking test 040 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 = 200.494860 +[0] The total amount of wall time = 199.371391 Test 040 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1438,13 +1438,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 347.514646 +[0] The total amount of wall time = 345.150722 Test 041 regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1455,13 +1455,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 195.449950 +[0] The total amount of wall time = 190.177087 Test 042 regional_quilt_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1470,27 +1470,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 349.130537 +[0] The total amount of wall time = 341.880992 Test 043 regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_quilt_netcdf_parallel Checking test 044 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 dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 344.224056 +[0] The total amount of wall time = 339.863153 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1501,13 +1501,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 475.094931 +[0] The total amount of wall time = 465.673670 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,13 +1596,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 197.700028 +[0] The total amount of wall time = 199.172567 Test 046 fv3_gsd PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1alpha +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1667,13 +1667,13 @@ Checking test 047 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 = 101.681913 +[0] The total amount of wall time = 103.102367 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rap -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rap +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rap +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,13 @@ Checking test 048 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.875346 +[0] The total amount of wall time = 102.100502 Test 048 fv3_rap PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_hrrr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_hrrr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1809,13 +1809,13 @@ Checking test 049 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.218844 +[0] The total amount of wall time = 100.305774 Test 049 fv3_hrrr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1beta +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,13 +1880,13 @@ Checking test 050 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.118565 +[0] The total amount of wall time = 102.903664 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,13 +1951,13 @@ Checking test 051 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.396775 +[0] The total amount of wall time = 171.755318 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1972,39 +1972,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 321.229692 +[0] The total amount of wall time = 320.063269 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.023727 +[0] The total amount of wall time = 166.965395 Test 053 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_2threads_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_2threads_debug Checking test 054 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 = 154.919353 +[0] The total amount of wall time = 154.970990 Test 054 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_CubedSphereGrid_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2031,184 +2031,197 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 180.765585 +[0] The total amount of wall time = 181.716294 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 170.275229 +[0] The total amount of wall time = 171.643799 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_stochy_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_stochy_debug Checking test 057 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.986563 +[0] The total amount of wall time = 191.308555 Test 057 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lndp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.968745 +[0] The total amount of wall time = 171.836622 Test 058 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lheatstrg_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_lheatstrg_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug 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.843770 +[0] The total amount of wall time = 167.230185 Test 059 control_lheatstrg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_merra2_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_merra2_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_merra2_debug Checking test 060 control_merra2_debug 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.106709 +[0] The total amount of wall time = 217.108082 Test 060 control_merra2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_rrtmgp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_rrtmgp_debug Checking test 061 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.443616 +[0] The total amount of wall time = 190.862748 Test 061 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmg_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_csawmg_debug Checking test 062 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 = 258.785061 +[0] The total amount of wall time = 259.485359 Test 062 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmgt_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_csawmgt_debug Checking test 063 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 = 294.240861 +[0] The total amount of wall time = 297.167824 Test 063 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug 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.152078 +[0] The total amount of wall time = 180.969114 Test 064 control_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_ras_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_ras_debug Checking test 065 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 = 169.847686 +[0] The total amount of wall time = 169.852366 Test 065 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_thompson_debug Checking test 066 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 = 196.117225 +[0] The total amount of wall time = 196.306904 Test 066 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_thompson_no_aero_debug Checking test 067 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 = 189.624682 +[0] The total amount of wall time = 188.604861 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_control_debug -Checking test 068 regional_control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_thompson_extdiag_debug +Checking test 068 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 = 205.934548 + +Test 068 control_thompson_extdiag_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_regional_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/regional_control_debug +Checking test 069 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 277.076070 +[0] The total amount of wall time = 278.068811 -Test 068 regional_control_debug PASS +Test 069 regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd_debug -Checking test 069 fv3_gsd_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_gsd_debug +Checking test 070 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2272,14 +2285,14 @@ Checking test 069 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 = 232.345035 +[0] The total amount of wall time = 232.582809 -Test 069 fv3_gsd_debug PASS +Test 070 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd_diag3d_debug -Checking test 070 fv3_gsd_diag3d_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_gsd_diag3d_debug +Checking test 071 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2343,14 +2356,14 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 304.064980 +[0] The total amount of wall time = 304.275546 -Test 070 fv3_gsd_diag3d_debug PASS +Test 071 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1beta_debug -Checking test 071 fv3_rrfs_v1beta_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_rrfs_v1beta_debug +Checking test 072 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2414,14 +2427,14 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 224.540191 +[0] The total amount of wall time = 225.498581 -Test 071 fv3_rrfs_v1beta_debug PASS +Test 072 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1alpha_debug -Checking test 072 fv3_rrfs_v1alpha_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_rrfs_v1alpha_debug +Checking test 073 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2485,14 +2498,14 @@ Checking test 072 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 = 224.852228 +[0] The total amount of wall time = 226.050087 -Test 072 fv3_rrfs_v1alpha_debug PASS +Test 073 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 074 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2556,14 +2569,14 @@ Checking test 073 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 = 236.221623 +[0] The total amount of wall time = 236.539222 -Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 074 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2577,74 +2590,74 @@ Checking test 074 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 = 433.028656 +[0] The total amount of wall time = 433.661766 -Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +Test 075 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_control_cfsr -Checking test 075 datm_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_control_cfsr +Checking test 076 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 107.851819 +[0] The total amount of wall time = 107.920837 -Test 075 datm_control_cfsr PASS +Test 076 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_restart_cfsr -Checking test 076 datm_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_restart_cfsr +Checking test 077 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 78.866530 +[0] The total amount of wall time = 77.583275 -Test 076 datm_restart_cfsr PASS +Test 077 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_control_gefs -Checking test 077 datm_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_control_gefs +Checking test 078 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 100.418882 +[0] The total amount of wall time = 100.195614 -Test 077 datm_control_gefs PASS +Test 078 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_bulk_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_bulk_cfsr -Checking test 078 datm_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_bulk_cfsr +Checking test 079 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 103.415477 +[0] The total amount of wall time = 104.499725 -Test 078 datm_bulk_cfsr PASS +Test 079 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_bulk_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_bulk_gefs -Checking test 079 datm_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_bulk_gefs +Checking test 080 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 100.578416 +[0] The total amount of wall time = 100.273684 -Test 079 datm_bulk_gefs PASS +Test 080 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_mx025_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_mx025_cfsr -Checking test 080 datm_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_mx025_cfsr +Checking test 081 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2652,14 +2665,14 @@ Checking test 080 datm_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 = 346.669192 +[0] The total amount of wall time = 361.788874 -Test 080 datm_mx025_cfsr PASS +Test 081 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_mx025_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_mx025_gefs -Checking test 081 datm_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_mx025_gefs +Checking test 082 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2667,86 +2680,86 @@ Checking test 081 datm_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 = 342.300055 +[0] The total amount of wall time = 357.436463 -Test 081 datm_mx025_gefs PASS +Test 082 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_debug_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_debug_cfsr -Checking test 082 datm_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_debug_cfsr +Checking test 083 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 300.035380 +[0] The total amount of wall time = 299.811775 -Test 082 datm_debug_cfsr PASS +Test 083 datm_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_control_cfsr -Checking test 083 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_control_cfsr +Checking test 084 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 = 178.443748 +[0] The total amount of wall time = 172.930908 -Test 083 datm_cdeps_control_cfsr PASS +Test 084 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_restart_cfsr -Checking test 084 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_restart_cfsr +Checking test 085 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 = 128.832077 +[0] The total amount of wall time = 121.352526 -Test 084 datm_cdeps_restart_cfsr PASS +Test 085 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_control_gefs -Checking test 085 datm_cdeps_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_control_gefs +Checking test 086 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 = 171.070894 +[0] The total amount of wall time = 168.460005 -Test 085 datm_cdeps_control_gefs PASS +Test 086 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_bulk_cfsr -Checking test 086 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_bulk_cfsr +Checking test 087 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 = 179.669091 +[0] The total amount of wall time = 176.630275 -Test 086 datm_cdeps_bulk_cfsr PASS +Test 087 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_bulk_gefs -Checking test 087 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_bulk_gefs +Checking test 088 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 = 171.779052 +[0] The total amount of wall time = 168.780655 -Test 087 datm_cdeps_bulk_gefs PASS +Test 088 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_mx025_cfsr -Checking test 088 datm_cdeps_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_mx025_cfsr +Checking test 089 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2754,14 +2767,14 @@ Checking test 088 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 = 371.135308 +[0] The total amount of wall time = 368.588912 -Test 088 datm_cdeps_mx025_cfsr PASS +Test 089 datm_cdeps_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_mx025_gefs -Checking test 089 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_mx025_gefs +Checking test 090 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2769,36 +2782,36 @@ Checking test 089 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 = 367.764281 +[0] The total amount of wall time = 358.730319 -Test 089 datm_cdeps_mx025_gefs PASS +Test 090 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_multiple_files_cfsr -Checking test 090 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_multiple_files_cfsr +Checking test 091 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 = 175.898967 +[0] The total amount of wall time = 174.139609 -Test 090 datm_cdeps_multiple_files_cfsr PASS +Test 091 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_debug_cfsr -Checking test 091 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/datm_cdeps_debug_cfsr +Checking test 092 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 = 496.892767 +[0] The total amount of wall time = 495.267703 -Test 091 datm_cdeps_debug_cfsr PASS +Test 092 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_atmwav -working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_atmwav -Checking test 092 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210708/control_atmwav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_37078/control_atmwav +Checking test 093 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2840,11 +2853,11 @@ Checking test 092 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 364.674231 +[0] The total amount of wall time = 364.231987 -Test 092 control_atmwav PASS +Test 093 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jul 7 15:20:26 UTC 2021 -Elapsed time: 02h:05m:35s. Have a nice day! +Thu Jul 8 17:48:48 UTC 2021 +Elapsed time: 02h:04m:51s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 21bb4b1e89..8364c75ce8 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1.3b +From noaaemc/ubuntu-hpc:v1.4b ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index 48fae57925..345a33bddb 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -74,14 +74,14 @@ if [ $BUILD = "true" ]; then elif [ $RUN == "true" ]; then - docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210528 \ - && docker rmi -f minsukjinoaa/input-data:20210528 + docker volume rm -f DataVolume >/dev/null && + docker run -d --rm -v DataVolume:/tmp minsukjinoaa/input-data:20210528 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 \ - --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.3b \ + --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.4b \ /bin/bash -c "./utest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE diff --git a/tests/ci/ci.test b/tests/ci/ci.test index 86dd4c3ca0..9d8b220dc1 100644 --- a/tests/ci/ci.test +++ b/tests/ci/ci.test @@ -1,4 +1,6 @@ +control +thr mpi dcp rst bit dbg regional_control thr dcp cpld_control -rst +rst dbg diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index 36c7c2bee0..3981e7bed4 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -13,8 +13,8 @@ result() { } # Declare variables -declare -A base fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake -submodules="fv3 mom6 cice ww3 stoch nems cmeps datm cdeps cmake" +declare -A base fv3 mom6 cice ww3 stoch gocart nems cmeps datm cdeps cmake +submodules="fv3 mom6 cice ww3 stoch gocart nems cmeps datm cdeps cmake" comment='' ownerID=$1 @@ -43,6 +43,10 @@ stoch[repo]='https://github.com/noaa-psd/stochastic_physics' stoch[branch]='master' stoch[dir]='stochastic_physics' +gocart[repo]='https://github.com/GEOS-ESM/GOCART' +gocart[branch]='develop' +gocart[dir]='GOCART' + nems[repo]='https://github.com/NOAA-EMC/NEMS' nems[branch]='develop' nems[dir]='NEMS' diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 7d4f94e7ce..bf0de99725 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -473,6 +473,7 @@ export EFFR_IN=.F. # Thompson MP export LRADAR=.T. export LTAEROSOL=.T. +export EXT_DIAG_THOMPSON=.F. # GWD export LDIAG_UGWP=.F. diff --git a/tests/fv3_conf/gfs_v16_run_c192L127.IN b/tests/fv3_conf/gfs_v16_run_c192L127.IN index d552738fe9..d708b52072 100644 --- a/tests/fv3_conf/gfs_v16_run_c192L127.IN +++ b/tests/fv3_conf/gfs_v16_run_c192L127.IN @@ -20,4 +20,5 @@ cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/*configure . if [ $DO_RRTMGP = .T. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/rrtmgp* . + cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/fv3_conf/regional_run.IN b/tests/fv3_conf/regional_run.IN index 7756bb6c32..6b7c4565ca 100644 --- a/tests/fv3_conf/regional_run.IN +++ b/tests/fv3_conf/regional_run.IN @@ -44,5 +44,6 @@ elif [[ $POSTAPP = 'hafs' ]]; then fi if [ $DO_RRTMGP = .T. ]; then + cp @[INPUTDATA_ROOT]/FV3_input_data_c192L127/rrtmgp* . cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/parm/control_rrtmgp.nml.IN b/tests/parm/control_rrtmgp.nml.IN index 469aee8113..efd1eb3f8e 100644 --- a/tests/parm/control_rrtmgp.nml.IN +++ b/tests/parm/control_rrtmgp.nml.IN @@ -120,7 +120,7 @@ deflate_level=1 fhlwr = 3600. ialb = 1 iems = 1 - iaer = 5111 + iaer = @[IAER] icliq_sw = 2 iovr = 3 ico2 = 2 @@ -164,7 +164,7 @@ deflate_level=1 debug = .false. oz_phys = .F. oz_phys_2015 = .T. - nstf_name = 2,0,0,0,0 + nstf_name = @[NSTF_NAME] nst_anl = .true. psautco = 0.0008,0.0005 prautco = 0.00015,0.00015 @@ -189,8 +189,12 @@ deflate_level=1 rrtmgp_nGptsLW = 128 rrtmgp_nBandsLW = 16 rrtmgp_nBandsSW = 14 - doG_cldoptics = .true. - rrtmgp_nrghice = 3 + doGP_cldoptics_LUT = .true. + doGP_lwscat = .true. + use_LW_jacobian = .true. + damp_LW_fluxadj = .true. + lfnc_k = 3125. + lfnc_p0 = 60000. lsoil_lsm = 4 do_mynnedmf = .false. do_mynnsfclay = .false. diff --git a/tests/parm/control_thompson.nml.IN b/tests/parm/control_thompson.nml.IN index bf3c26120b..1171cc8b1e 100644 --- a/tests/parm/control_thompson.nml.IN +++ b/tests/parm/control_thompson.nml.IN @@ -118,6 +118,7 @@ deflate_level=1 ltaerosol = @[LTAEROSOL] lradar = @[LRADAR] ttendlim = 0.004 + ext_diag_thompson = @[EXT_DIAG_THOMPSON] pdfcld = .false. fhswr = 3600. fhlwr = 3600. diff --git a/tests/parm/regional_rrtmgp.nml.IN b/tests/parm/regional_rrtmgp.nml.IN index 55c0c58050..7aa3091dc2 100644 --- a/tests/parm/regional_rrtmgp.nml.IN +++ b/tests/parm/regional_rrtmgp.nml.IN @@ -138,7 +138,7 @@ fhlwr = 900. ialb = 1 iems = 1 - IAER = 111 + IAER = 5111 ico2 = 2 isubc_sw = 2 isubc_lw = 2 @@ -213,6 +213,9 @@ doGP_cldoptics_LUT = .true. doGP_lwscat = .true. use_LW_jacobian = .true. + damp_LW_fluxadj = .true. + lfnc_k = 3125. + lfnc_p0 = 60000. / &interpolator_nml diff --git a/tests/rt.conf b/tests/rt.conf index 1152239eec..6b07d1e088 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -129,6 +129,7 @@ RUN | control_ras_debug COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON | | fv3 | RUN | control_thompson_debug | | fv3 | RUN | control_thompson_no_aero_debug | | fv3 | +RUN | control_thompson_extdiag_debug | | fv3 | COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | regional_control_debug | | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 87cd7caeed..470d861ee7 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -414,7 +414,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210706 +BL_DATE=20210708 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index def9a58262..25ddeeec35 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -42,6 +42,7 @@ RUN | fv3_rrfs_v1beta_debug RUN | fv3_gsd_debug | | fv3 | RUN | control_thompson_debug | | fv3 | RUN | control_thompson_no_aero_debug | | fv3 | +RUN | control_thompson_extdiag_debug | | fv3 | RUN | control_rrtmgp_debug | | fv3 | RUN | control_ugwpv1_debug | | fv3 | RUN | control_ras_debug | | fv3 | diff --git a/tests/tests/control_thompson_extdiag_debug b/tests/tests/control_thompson_extdiag_debug new file mode 100644 index 0000000000..ff5627dcba --- /dev/null +++ b/tests/tests/control_thompson_extdiag_debug @@ -0,0 +1,49 @@ +############################################################################### +# +# Global control with Thompson debug test with extended diagnostics +# +############################################################################### + +export TEST_DESCR="Compare global control Thompson debug results with extended diagnostics with previous trunk version" + +export CNTL_DIR=control_thompson_debug_extdiag + +export LIST_FILES="sfcf000.nc \ + sfcf001.nc \ + atmf000.nc \ + atmf001.nc" + +export_fv3 +export NPZ=127 +export NPZP=128 +export DT_ATMOS=600 +export SYEAR=2021 +export SMONTH=03 +export SDAY=22 +export SHOUR=06 +export OUTPUT_GRID='gaussian_grid' +export NSTF_NAME='2,0,0,0,0' +export FHMAX=1 + +export IMP_PHYSICS=8 +export DNATS=0 +export DO_SAT_ADJ=.F. +export LRADAR=.T. +export LTAEROSOL=.T. +export EXT_DIAG_THOMPSON=.T. +export HYBEDMF=.F. +export SATMEDMF=.T. +export DO_MYNNEDMF=.F. +export IMFSHALCNV=2 +export IMFDEEPCNV=2 +export IAER=5111 +export ICLIQ_SW=2 +export IOVR=3 +export LHEATSTRG=.T. +export DO_TOFD=.T. + +export NEW_DIAGTABLE='diag_table_gfsv16_thompson_extdiag' + +export FV3_RUN=control_run.IN +export CCPP_SUITE=FV3_GFS_v16_thompson +export INPUT_NML=control_thompson.nml.IN diff --git a/tests/utest b/tests/utest index 70965bcf8c..7a0e0a6ffa 100755 --- a/tests/utest +++ b/tests/utest @@ -79,16 +79,14 @@ build_utests() { MAKE_OPT=$base_opt ;; bit) - if [[ $base_opt =~ "32BIT=Y" ]]; then - MAKE_OPT=$(echo $base_opt | sed -e 's/32BIT=Y/32BIT=N/') - elif [[ ${base_opt} =~ "32BIT=N" ]]; then - MAKE_OPT=$(echo $base_opt | sed -e 's/32BIT=N/32BIT=Y/') + if [[ $base_opt =~ "-D32BIT=ON" ]]; then + MAKE_OPT=$(echo $base_opt | sed -e 's/-D32BIT=ON//') else - MAKE_OPT="$base_opt 32BIT=Y" + MAKE_OPT="$base_opt -D32BIT=ON" fi ;; dbg) - MAKE_OPT="$base_opt 32BIT=Y DEBUG=Y" + MAKE_OPT="$base_opt -DDEBUG=ON" ;; esac MAKE_OPT=$(echo $MAKE_OPT | sed -e 's/^ *//' -e 's/ *$//') diff --git a/tests/utests/dbg.sh b/tests/utests/dbg.sh index 500115e82e..aacef79a5a 100644 --- a/tests/utests/dbg.sh +++ b/tests/utests/dbg.sh @@ -2,13 +2,26 @@ set -eu source $PATHRT/utests/std.sh if [[ $application == 'global' ]]; then + LIST_FILES="sfcf000.nc sfcf001.nc atmf000.nc atmf001.nc" + FHMAX=1 + DAYS=0.041667 + NFHOUT=3 + NFHMAX_HF=12 + NFHOUT_HF=1 WLCLK=60 elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for debug" exit 1 elif [[ $application == 'cpld' ]]; then - echo "Coupled application not yet implemented for debug" - exit 1 + FHMAX=6 + DAYS=0.25 + NFHOUT_HF=1 + RESTART_INTERVAL=${FHMAX} + 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/^ *//" -e "s/ *$//") fi source $PATHRT/utests/wrt_env.sh diff --git a/tests/utests/mpi.sh b/tests/utests/mpi.sh index d7220f2a43..b03acb05ee 100644 --- a/tests/utests/mpi.sh +++ b/tests/utests/mpi.sh @@ -22,8 +22,3 @@ fi (test $CI_TEST == 'true') && source $PATHRT/utests/cmp_proc_bind.sh source $PATHRT/utests/wrt_env.sh - -cat <>${RUNDIR_ROOT}/unit_test${RT_SUFFIX}.env -export WRITE_GROUP=${WRITE_GROUP} -export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} -EOF diff --git a/tests/utests/rst.sh b/tests/utests/rst.sh index 66b64868f3..e6d740aee2 100644 --- a/tests/utests/rst.sh +++ b/tests/utests/rst.sh @@ -45,7 +45,6 @@ export USE_RESTART_TIME=${USE_RESTART_TIME:-} export MOM6_RESTART_SETTING=${MOM6_RESTART_SETTING:-} export RESTART_FILE_SUFFIX_HRS=${RESTART_FILE_SUFFIX_HRS:-} export RESTART_FILE_SUFFIX_SECS=${RESTART_FILE_SUFFIX_SECS:-} -export RESTART_N=${RESTART_N:-} export DEP_RUN=${DEP_RUN:-} export WARM_START=${WARM_START} export NGGPS_IC=${NGGPS_IC} @@ -54,5 +53,4 @@ export MAKE_NH=${MAKE_NH} export MOUNTAIN=${MOUNTAIN} export NA_INIT=${NA_INIT} export FDIAG=${FDIAG} -export LIST_FILES="${LIST_FILES}" EOF diff --git a/tests/utests/std.sh b/tests/utests/std.sh index b2b7e2d9ca..5e32cfbefd 100644 --- a/tests/utests/std.sh +++ b/tests/utests/std.sh @@ -4,8 +4,13 @@ if [[ $application == 'global' ]]; then if [[ $CI_TEST == 'true' ]]; then INPES=3 JNPES=2 + WRITE_GROUP=1 + WRTTASK_PER_GROUP=12 TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP)) RESTART_INTERVAL=$((FHMAX/2)) + NFHOUT=6 + NFHMAX_HF=-1 + NFHOUT_HF=-1 fi elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then @@ -23,6 +28,8 @@ elif [[ $application == 'cpld' ]]; then ocn_petlist_bounds="30 39" ice_petlist_bounds="40 45" TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 10 + 6)) + RESTART_INTERVAL=12 + RESTART_N=${RESTART_INTERVAL} fi fi diff --git a/tests/utests/wrt_env.sh b/tests/utests/wrt_env.sh index d5b48852d2..2a1236c5d3 100644 --- a/tests/utests/wrt_env.sh +++ b/tests/utests/wrt_env.sh @@ -4,9 +4,12 @@ export CI_TEST=${CI_TEST} export RT_COMPILER=${RT_COMPILER} export FHMAX=${FHMAX} export DAYS=${DAYS} -export RESTART_INTERVAL=${RESTART_INTERVAL} +export RESTART_INTERVAL=${RESTART_INTERVAL:-} +export RESTART_N=${RESTART_N:-} export INPES=${INPES} export JNPES=${JNPES} +export WRITE_GROUP=${WRITE_GROUP} +export WRTTASK_PER_GROUP=${WRTTASK_PER_GROUP} export NPROC_ICE=${NPROC_ICE:-} export med_petlist_bounds="${med_petlist_bounds:-}" export atm_petlist_bounds="${atm_petlist_bounds:-}" @@ -18,4 +21,8 @@ export TPN=${TPN} export NODES=${NODES} export OMP_ENV="${OMP_ENV:-}" export MPI_PROC_BIND="${MPI_PROC_BIND:-}" +export NFHOUT=${NFHOUT} +export NFHMAX_HF=${NFHMAX_HF} +export NFHOUT_HF=${NFHOUT_HF} +export LIST_FILES="${LIST_FILES}" EOF