diff --git a/.gitmodules b/.gitmodules index 82a9329eea..6e63f4576f 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,3 +34,7 @@ path = CICE-interface/CICE url = https://github.com/NOAA-EMC/CICE branch = emc/develop +[submodule "DATM"] + path = DATM + url = https://github.com/NOAA-EMC/NEMSdatm + branch = develop diff --git a/CMakeLists.txt b/CMakeLists.txt index c64931b49f..406e58155c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,6 +32,7 @@ set(QUAD_PRECISION ON CACHE BOOL "Enable QUAD_PRECISION (for certain grid metr set(REPRO OFF CACHE BOOL "Enable REPRO mode") set(WW3 OFF CACHE BOOL "Enable WW3") set(S2S OFF CACHE BOOL "Enable S2S") +set(DATM OFF CACHE BOOL "Enable Data Atmosphere") ############################################################################### ### Set CMAKE_BUILD_TYPE for DEBUG mode @@ -65,6 +66,7 @@ message("QUAD_PRECISION ... ${QUAD_PRECISION}") message("REPRO ............ ${REPRO}") message("WW3 .............. ${WW3}") message("S2S .............. ${S2S}") +message("DATM ............. ${DATM}") message("") get_filename_component (C_COMPILER_NAME ${CMAKE_C_COMPILER} NAME) @@ -118,6 +120,10 @@ endif() ############################################################################### ### Checks ############################################################################### +if(DATM AND NOT S2S) + message(FATAL_ERROR "DATM=ON and S2S=OFF are incompatible, ABORT!") +endif() + if(S2S AND 32BIT) message(FATAL_ERROR "S2S=ON and 32BIT=ON are incompatible, ABORT!") endif() @@ -161,12 +167,18 @@ target_include_directories(fms INTERFACE $ $) -target_link_libraries(ufs PUBLIC esmf - fv3atm) +target_link_libraries(ufs PUBLIC esmf) + +if(DATM) + target_link_libraries(ufs PUBLIC datatm) +else() + target_link_libraries(ufs PUBLIC fv3atm) +endif() if(S2S) list(APPEND _ufs_defs_private FRONT_MOM6=mom_cap_mod @@ -289,6 +313,9 @@ endif() target_compile_definitions(ufs_model PRIVATE "${_ufs_model_defs_private}") +if(DATM) + target_link_libraries(ufs_model PRIVATE ufs w3nco::w3nco_d) +endif() target_link_libraries(ufs_model PRIVATE ufs esmf NetCDF::NetCDF_Fortran diff --git a/DATM b/DATM new file mode 160000 index 0000000000..84e9a1fb91 --- /dev/null +++ b/DATM @@ -0,0 +1 @@ +Subproject commit 84e9a1fb91ee83d602d56f633ae18fe7eb26c273 diff --git a/MOM6-interface/CMakeLists.txt b/MOM6-interface/CMakeLists.txt index 833bb87242..bc7e2a6d71 100644 --- a/MOM6-interface/CMakeLists.txt +++ b/MOM6-interface/CMakeLists.txt @@ -64,28 +64,31 @@ target_link_libraries(mom6 PUBLIC fms # target_link_libraries(mom6 PRIVATE OpenMP::OpenMP_Fortran) #endif() -### Create standalone MOM6 executable [bug in our fork prevents this compilation] -#add_executable(mom6solo ${mom6_solo_src_files}) -#add_dependencies(mom6solo mom6_obj) -#set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) -#target_include_directories(mom6solo PRIVATE $) -#target_include_directories(mom6solo PRIVATE $) -#target_include_directories(mom6solo PRIVATE $ -# $) -#target_link_libraries(mom6solo PRIVATE mom6_obj -# fms -# NetCDF::NetCDF_Fortran) -# OpenMP is disabled in MOM6 -#if(OpenMP_Fortran_FOUND) -# target_link_libraries(mom6solo PRIVATE OpenMP::OpenMP_Fortran) -#endif() +### Create standalone MOM6 executable +if(MOM6SOLO) + message("Building MOM6 standalone executable") + add_executable(mom6solo ${mom6_solo_src_files}) + add_dependencies(mom6solo mom6_obj) + set_target_properties(mom6solo PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_solo) + target_include_directories(mom6solo PRIVATE $) + target_include_directories(mom6solo PRIVATE $) + target_include_directories(mom6solo PRIVATE $ + $) + target_link_libraries(mom6solo PRIVATE mom6_obj + fms + NetCDF::NetCDF_Fortran) + # OpenMP is disabled in MOM6 + #if(OpenMP_Fortran_FOUND) + # target_link_libraries(mom6solo PRIVATE OpenMP::OpenMP_Fortran) + #endif() +endif() ############################################################################### ### Install ############################################################################### install( - TARGETS mom6 #mom6solo + TARGETS mom6 EXPORT mom6-config RUNTIME DESTINATION bin LIBRARY DESTINATION lib @@ -96,3 +99,7 @@ install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PR install(EXPORT mom6-config DESTINATION lib/cmake) + +if(MOM6SOLO) + install(TARGETS mom6solo RUNTIME DESTINATION bin) +endif() diff --git a/README.md b/README.md index e59bf02c0e..20453c6eaa 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ # ufs-weather-model -This is the UFS weather model code. +This is the UFS weather model source code. # Where to find information -Start at the [ufs-weather-model wiki](https://github.com/ufs-community/ufs-weather-model/wiki) which has quick start instructions. +Start at the [wiki](https://github.com/ufs-community/ufs-weather-model/wiki) which has quick start instructions. [User's reference guide](http://ufs-weather-model.readthedocs.io/) is hosted on read the docs. @@ -19,15 +19,23 @@ The top level directory structure groups source code and input files as follow: | ```LICENSE.md``` | A copy of the GNU Lesser General Public License, Version 3. | | ```README.md``` | This file with basic pointers to more information. | | ```FMS/``` | Contains Flexible Modeling System source code. | -| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset runi scripts. | +| ```NEMS/``` | Contains NOAA Environmental Modeling System source code and nems compset run scripts. | | ```CMEPS-interface/``` | Contains CMEPS mediator | | ```FV3/``` | Contains FV3 atmosphere model component including FV3 dynamical core, dynamics to physics driver, physics and IO. | +| ```DATM/``` | Contains Data Atmosphere model component | | ```WW3/``` | Contains community wave modeling framework WW3. | | ```MOM6-interface/``` | Contains MOM6 ocean model component | | ```CICE-interface/``` | Contains CICE sea-ice model component including CICE6 and Icepack | -| ```stochastic physics/``` | Contains the stochastic physics source code. | +| ```stochastic_physics/``` | Contains the stochastic physics source code. | | ```cmake/``` | Contains compile option files on various platforms. | -| ```modulefiles/``` | Contains module files on various platforms.| +| ```modulefiles/``` | Contains module files on various platforms. | +| ```tests/``` | Regression and unit testing framework scripts. | +| ```build.sh``` | Script to build the model executable. (also used by `tests/`) | + +E.g. use of `build.sh` to build the coupled model with `FV3_GFS_v15p2` as the CCPP suite. +``` +$> CMAKE_FLAGS="-DS2S=ON" CCPP_SUITES="FV3_GFS_v15p2" ./build.sh +``` # Disclaimer diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index c6a73e601f..21a8f8ba21 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,9 +1,9 @@ -Tue Oct 20 02:27:45 UTC 2020 +Thu Oct 22 11:11:52 EDT 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfdlmp_prod Checking test 001 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -51,7 +51,7 @@ Test 001 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v15p2_prod Checking test 002 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -119,7 +119,7 @@ Test 002 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_prod Checking test 003 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -187,7 +187,7 @@ Test 003 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_flake_prod Checking test 004 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -255,7 +255,7 @@ Test 004 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gsd_prod Checking test 005 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -347,7 +347,7 @@ Test 005 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_prod Checking test 006 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -415,7 +415,7 @@ Test 006 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_thompson_no_aero_prod Checking test 007 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -483,7 +483,7 @@ Test 007 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_rrfs_v1beta_prod Checking test 008 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -575,13 +575,13 @@ Test 008 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_control_debug_prod Checking test 009 fv3_ccpp_control_debug results .... Test 009 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v15p2_debug_prod Checking test 010 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -649,7 +649,7 @@ Test 010 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_gfs_v16beta_debug_prod Checking test 011 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -717,7 +717,7 @@ Test 011 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/GNU/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_21673/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_181841/fv3_ccpp_multigases_prod Checking test 012 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -791,5 +791,5 @@ Test 012 fv3_ccpp_multigases PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 03:01:57 UTC 2020 -Elapsed time: 00h:34m:14s. Have a nice day! +Thu Oct 22 11:34:54 EDT 2020 +Elapsed time: 00h:23m:06s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b60d5e6434..c55b328c71 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,9 +1,9 @@ -Tue Oct 20 01:51:21 UTC 2020 +Thu Oct 22 09:26:22 EDT 2020 Start Regression test baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_read_inc_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_read_inc_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stochy_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_iau_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_ca_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lndp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lndp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lndp_prod Checking test 014 fv3_ccpp_lndp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -855,7 +855,7 @@ Test 014 fv3_ccpp_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_lheatstrg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_lheatstrg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_lheatstrg_prod Checking test 015 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -903,7 +903,7 @@ Test 015 fv3_ccpp_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_prod Checking test 016 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -952,7 +952,7 @@ Test 016 fv3_ccpp_gfdlmprad PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 017 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1001,7 +1001,7 @@ Test 017 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 018 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1050,7 +1050,7 @@ Test 018 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_multigases_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_multigases_prod Checking test 019 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1124,7 +1124,7 @@ Test 019 fv3_ccpp_multigases PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_32bit_prod Checking test 020 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1192,7 +1192,7 @@ Test 020 fv3_ccpp_control_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_prod Checking test 021 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1248,7 +1248,7 @@ Test 021 fv3_ccpp_stretched PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_nest_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_nest_prod Checking test 022 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 022 fv3_ccpp_stretched_nest PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_control_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_control_prod Checking test 023 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1326,7 +1326,7 @@ Test 023 fv3_ccpp_regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_restart_prod Checking test 024 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1335,7 +1335,7 @@ Test 024 fv3_ccpp_regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_quilt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_quilt_prod Checking test 025 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1346,7 +1346,7 @@ Test 025 fv3_ccpp_regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_regional_c768_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_regional_c768_prod Checking test 026 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1357,19 +1357,19 @@ Test 026 fv3_ccpp_regional_c768 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_control_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_control_debug_prod Checking test 027 fv3_ccpp_control_debug results .... Test 027 fv3_ccpp_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_stretched_nest_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_stretched_nest_debug_prod Checking test 028 fv3_ccpp_stretched_nest_debug results .... Test 028 fv3_ccpp_stretched_nest_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_prod Checking test 029 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1417,7 +1417,7 @@ Test 029 fv3_ccpp_gfdlmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_gwd_prod Checking test 030 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1465,7 +1465,7 @@ Test 030 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 031 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1513,7 +1513,7 @@ Test 031 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_hwrfsas_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 032 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1561,7 +1561,7 @@ Test 032 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_csawmg_prod Checking test 033 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1609,7 +1609,7 @@ Test 033 fv3_ccpp_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmf_prod Checking test 034 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 034 fv3_ccpp_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmfq_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_satmedmfq_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_satmedmfq_prod Checking test 035 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1705,7 +1705,7 @@ Test 035 fv3_ccpp_satmedmfq PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmp_32bit_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmp_32bit_prod Checking test 036 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1753,7 +1753,7 @@ Test 036 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 037 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1805,7 +1805,7 @@ Test 037 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_cpt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_cpt_prod Checking test 038 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1859,7 +1859,7 @@ Test 038 fv3_ccpp_cpt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_prod Checking test 039 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,7 +1951,7 @@ Test 039 fv3_ccpp_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rap_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rap_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rap_prod Checking test 040 fv3_ccpp_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,7 +2019,7 @@ Test 040 fv3_ccpp_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_hrrr_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_hrrr_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_hrrr_prod Checking test 041 fv3_ccpp_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2087,7 +2087,7 @@ Test 041 fv3_ccpp_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_prod Checking test 042 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2155,7 +2155,7 @@ Test 042 fv3_ccpp_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_no_aero_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_no_aero_prod Checking test 043 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2223,7 +2223,7 @@ Test 043 fv3_ccpp_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rrfs_v1beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rrfs_v1beta_prod Checking test 044 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v15p2_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v15p2_prod Checking test 045 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_prod Checking test 046 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmg_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmg_prod Checking test 047 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2499,7 +2499,7 @@ Test 047 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfsv16_csawmgt_prod Checking test 048 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2547,7 +2547,7 @@ Test 048 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gocart_clm_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gocart_clm_prod Checking test 049 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2595,7 +2595,7 @@ Test 049 fv3_ccpp_gocart_clm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_flake_prod Checking test 050 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2663,7 +2663,7 @@ Test 050 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v15p2_debug_prod Checking test 051 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2731,7 +2731,7 @@ Test 051 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gfs_v16beta_debug_prod Checking test 052 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2799,7 +2799,7 @@ Test 052 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_debug_prod Checking test 053 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2867,7 +2867,7 @@ Test 053 fv3_ccpp_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_gsd_diag3d_debug_prod Checking test 054 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2935,7 +2935,7 @@ Test 054 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_debug_prod Checking test 055 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3003,7 +3003,7 @@ Test 055 fv3_ccpp_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_thompson_no_aero_debug_prod Checking test 056 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3071,7 +3071,7 @@ Test 056 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 057 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -3139,7 +3139,7 @@ Test 057 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3194,7 +3194,7 @@ Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3249,7 +3249,7 @@ Test 059 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3304,7 +3304,7 @@ Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3359,7 +3359,7 @@ Test 061 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3414,7 +3414,7 @@ Test 062 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3469,7 +3469,7 @@ Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3524,7 +3524,7 @@ Test 064 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3579,7 +3579,7 @@ Test 065 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3634,7 +3634,7 @@ Test 066 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3726,7 +3726,7 @@ Test 067 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3784,7 +3784,7 @@ Test 068 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /scratch1/NCEPDEV/stmp2/Dusan.Jovic/FV3_RT/rt_78666/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /scratch1/NCEPDEV/stmp2/Rahul.Mahajan/FV3_RT/rt_67343/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3840,5 +3840,5 @@ Test 069 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 04:17:59 UTC 2020 -Elapsed time: 02h:26m:39s. Have a nice day! +Thu Oct 22 10:36:25 EDT 2020 +Elapsed time: 01h:10m:05s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 7dde0f4cf5..10d9ae72d9 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,9 +1,9 @@ -Mon Oct 19 18:53:17 CDT 2020 +Thu Oct 22 08:23:37 CDT 2020 Start Regression test baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_decomp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_2threads_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_read_inc_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_read_inc_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGlatlon_netcdf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stochy_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stochy_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_iau_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_iau_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_ca_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_ca_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_ca_prod Checking test 013 fv3_ccpp_ca results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,7 +787,7 @@ Test 013 fv3_ccpp_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -836,7 +836,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_atmwav_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -885,7 +885,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_wrtGauss_nemsio_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_wrtGauss_nemsio_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_wrtGauss_nemsio_c768_prod Checking test 016 fv3_ccpp_wrtGauss_nemsio_c768 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -934,7 +934,7 @@ Test 016 fv3_ccpp_wrtGauss_nemsio_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_multigases_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_multigases_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_multigases_prod Checking test 017 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1008,7 +1008,7 @@ Test 017 fv3_ccpp_multigases PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_32bit_prod Checking test 018 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1076,7 +1076,7 @@ Test 018 fv3_ccpp_control_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_prod Checking test 019 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1132,7 +1132,7 @@ Test 019 fv3_ccpp_stretched PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_nest_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_nest_prod Checking test 020 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1199,7 +1199,7 @@ Test 020 fv3_ccpp_stretched_nest PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_control_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_control_prod Checking test 021 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1210,7 +1210,7 @@ Test 021 fv3_ccpp_regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_restart_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_restart_prod Checking test 022 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1219,7 +1219,7 @@ Test 022 fv3_ccpp_regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_quilt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_quilt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_quilt_prod Checking test 023 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1230,7 +1230,7 @@ Test 023 fv3_ccpp_regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_regional_c768_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_regional_c768_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_regional_c768_prod Checking test 024 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1241,19 +1241,19 @@ Test 024 fv3_ccpp_regional_c768 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_control_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_control_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_control_debug_prod Checking test 025 fv3_ccpp_control_debug results .... Test 025 fv3_ccpp_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_stretched_nest_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_stretched_nest_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_stretched_nest_debug_prod Checking test 026 fv3_ccpp_stretched_nest_debug results .... Test 026 fv3_ccpp_stretched_nest_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_prod Checking test 027 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1301,7 +1301,7 @@ Test 027 fv3_ccpp_gfdlmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_gwd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_gwd_prod Checking test 028 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1349,7 +1349,7 @@ Test 028 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_noahmp_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 029 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1397,7 +1397,7 @@ Test 029 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1445,7 +1445,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_satmedmf_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_satmedmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1493,7 +1493,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmp_32bit_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmp_32bit_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmp_32bit_prod Checking test 032 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1541,7 +1541,7 @@ Test 032 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfdlmprad_32bit_post_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 033 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1593,7 +1593,7 @@ Test 033 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_cpt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_cpt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_cpt_prod Checking test 034 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1647,7 +1647,7 @@ Test 034 fv3_ccpp_cpt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_prod Checking test 035 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,7 +1739,7 @@ Test 035 fv3_ccpp_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_prod Checking test 036 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,7 +1807,7 @@ Test 036 fv3_ccpp_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_prod Checking test 037 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1875,7 +1875,7 @@ Test 037 fv3_ccpp_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_prod Checking test 038 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1967,7 +1967,7 @@ Test 038 fv3_ccpp_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v15p2_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v15p2_prod Checking test 039 fv3_ccpp_gfs_v15p2 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2035,7 +2035,7 @@ Test 039 fv3_ccpp_gfs_v15p2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_prod Checking test 040 fv3_ccpp_gfs_v16beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2103,7 +2103,7 @@ Test 040 fv3_ccpp_gfs_v16beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmg_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmg_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmg_prod Checking test 041 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2151,7 +2151,7 @@ Test 041 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfsv16_csawmgt_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfsv16_csawmgt_prod Checking test 042 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2199,7 +2199,7 @@ Test 042 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gocart_clm_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gocart_clm_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gocart_clm_prod Checking test 043 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2247,7 +2247,7 @@ Test 043 fv3_ccpp_gocart_clm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_flake_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_flake_prod Checking test 044 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2315,7 +2315,7 @@ Test 044 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v15p2_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v15p2_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v15p2_debug_prod Checking test 045 fv3_ccpp_gfs_v15p2_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2383,7 +2383,7 @@ Test 045 fv3_ccpp_gfs_v15p2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gfs_v16beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gfs_v16beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gfs_v16beta_debug_prod Checking test 046 fv3_ccpp_gfs_v16beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,7 +2451,7 @@ Test 046 fv3_ccpp_gfs_v16beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_debug_prod Checking test 047 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2519,7 +2519,7 @@ Test 047 fv3_ccpp_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_gsd_diag3d_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_gsd_diag3d_debug_prod Checking test 048 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2587,7 +2587,7 @@ Test 048 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_debug_prod Checking test 049 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2655,7 +2655,7 @@ Test 049 fv3_ccpp_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_thompson_no_aero_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_thompson_no_aero_debug_prod Checking test 050 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2723,7 +2723,7 @@ Test 050 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/fv3_rrfs_v1beta_debug_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 051 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2791,7 +2791,7 @@ Test 051 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2846,7 +2846,7 @@ Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2901,7 +2901,7 @@ Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2956,7 +2956,7 @@ Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -3011,7 +3011,7 @@ Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3066,7 +3066,7 @@ Test 056 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3121,7 +3121,7 @@ Test 057 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3176,7 +3176,7 @@ Test 058 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3231,7 +3231,7 @@ Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3286,7 +3286,7 @@ Test 060 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3378,7 +3378,7 @@ Test 061 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3436,7 +3436,7 @@ Test 062 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/INTEL/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /work/noaa/stmp/djovic/stmp/djovic/FV3_RT/rt_393170/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /work/noaa/stmp/rmahajan/stmp/rmahajan/FV3_RT/rt_414601/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3492,5 +3492,5 @@ Test 063 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 19 20:31:25 CDT 2020 -Elapsed time: 01h:38m:10s. Have a nice day! +Thu Oct 22 09:50:23 CDT 2020 +Elapsed time: 01h:26m:48s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 5250a45d33..da4ab186f7 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,9 +1,9 @@ -Mon Oct 19 20:51:37 UTC 2020 +Thu Oct 22 13:49:20 UTC 2020 Start Regression test baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_decomp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_2threads_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_restart_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_read_inc_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_read_inc_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stochy_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_iau_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_multigases_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_multigases_prod Checking test 014 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -841,7 +841,7 @@ Test 014 fv3_ccpp_multigases PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_32bit_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_32bit_prod Checking test 015 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -909,7 +909,7 @@ Test 015 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_prod Checking test 016 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -965,7 +965,7 @@ Test 016 fv3_ccpp_stretched PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_prod Checking test 017 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1032,7 +1032,7 @@ Test 017 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_control_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_control_prod Checking test 018 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1043,7 +1043,7 @@ Test 018 fv3_ccpp_regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_restart_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_restart_prod Checking test 019 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1052,7 +1052,7 @@ Test 019 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_regional_quilt_prod Checking test 020 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1063,19 +1063,19 @@ Test 020 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_control_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_control_debug_prod Checking test 021 fv3_ccpp_control_debug results .... Test 021 fv3_ccpp_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_stretched_nest_debug_prod Checking test 022 fv3_ccpp_stretched_nest_debug results .... Test 022 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_prod Checking test 023 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1123,7 +1123,7 @@ Test 023 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_gwd_prod Checking test 024 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1171,7 +1171,7 @@ Test 024 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 025 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1219,7 +1219,7 @@ Test 025 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 026 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,7 +1267,7 @@ Test 026 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_csawmg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_csawmg_prod Checking test 027 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1315,7 +1315,7 @@ Test 027 fv3_ccpp_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmf_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmf_prod Checking test 028 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1363,7 +1363,7 @@ Test 028 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_satmedmfq_prod Checking test 029 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1411,7 +1411,7 @@ Test 029 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmp_32bit_prod Checking test 030 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1459,7 +1459,7 @@ Test 030 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 031 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1511,7 +1511,7 @@ Test 031 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_cpt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_cpt_prod Checking test 032 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1565,7 +1565,7 @@ Test 032 fv3_ccpp_cpt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_prod Checking test 033 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1657,7 +1657,7 @@ Test 033 fv3_ccpp_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_prod Checking test 034 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1725,7 +1725,7 @@ Test 034 fv3_ccpp_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_prod Checking test 035 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1793,7 +1793,7 @@ Test 035 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_prod Checking test 036 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,7 +1885,7 @@ Test 036 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmg_prod Checking test 037 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1933,7 +1933,7 @@ Test 037 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfsv16_csawmgt_prod Checking test 038 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1981,7 +1981,7 @@ Test 038 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gocart_clm_prod Checking test 039 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2029,7 +2029,7 @@ Test 039 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gfs_v16beta_flake_prod Checking test 040 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2097,7 +2097,7 @@ Test 040 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_debug_prod Checking test 041 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2165,7 +2165,7 @@ Test 041 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_gsd_diag3d_debug_prod Checking test 042 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2233,7 +2233,7 @@ Test 042 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_debug_prod Checking test 043 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2301,7 +2301,7 @@ Test 043 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_thompson_no_aero_debug_prod Checking test 044 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2369,7 +2369,7 @@ Test 044 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_27774/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/hps3/stmp/Rahul.Mahajan/FV3_RT/rt_9306/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 045 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2437,5 +2437,5 @@ Test 045 fv3_ccpp_rrfs_v1beta_debug PASS REGRESSION TEST WAS SUCCESSFUL -Mon Oct 19 22:29:29 UTC 2020 -Elapsed time: 01h:37m:53s. Have a nice day! +Thu Oct 22 14:30:47 UTC 2020 +Elapsed time: 00h:41m:28s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b9a1851d66..934312ac41 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,9 +1,9 @@ -Mon Oct 19 23:21:16 UTC 2020 +Thu Oct 22 13:55:04 UTC 2020 Start Regression test baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_prod Checking test 001 fv3_ccpp_control results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -71,7 +71,7 @@ Test 001 fv3_ccpp_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_decomp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_decomp_prod Checking test 002 fv3_ccpp_decomp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -139,7 +139,7 @@ Test 002 fv3_ccpp_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_2threads_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_2threads_prod Checking test 003 fv3_ccpp_2threads results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -207,7 +207,7 @@ Test 003 fv3_ccpp_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_restart_prod Checking test 004 fv3_ccpp_restart results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -275,7 +275,7 @@ Test 004 fv3_ccpp_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_read_inc_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_read_inc_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_read_inc_prod Checking test 005 fv3_ccpp_read_inc results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -343,7 +343,7 @@ Test 005 fv3_ccpp_read_inc PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_esmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_netcdf_esmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_netcdf_esmf_prod Checking test 006 fv3_ccpp_wrtGauss_netcdf_esmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -391,7 +391,7 @@ Test 006 fv3_ccpp_wrtGauss_netcdf_esmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_netcdf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_netcdf_prod Checking test 007 fv3_ccpp_wrtGauss_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -439,7 +439,7 @@ Test 007 fv3_ccpp_wrtGauss_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGlatlon_netcdf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGlatlon_netcdf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGlatlon_netcdf_prod Checking test 008 fv3_ccpp_wrtGlatlon_netcdf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -487,7 +487,7 @@ Test 008 fv3_ccpp_wrtGlatlon_netcdf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_prod Checking test 009 fv3_ccpp_wrtGauss_nemsio results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -535,7 +535,7 @@ Test 009 fv3_ccpp_wrtGauss_nemsio PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_wrtGauss_nemsio_c192_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_wrtGauss_nemsio_c192_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_wrtGauss_nemsio_c192_prod Checking test 010 fv3_ccpp_wrtGauss_nemsio_c192 results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -583,7 +583,7 @@ Test 010 fv3_ccpp_wrtGauss_nemsio_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stochy_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stochy_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stochy_prod Checking test 011 fv3_ccpp_stochy results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -651,7 +651,7 @@ Test 011 fv3_ccpp_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_iau_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_iau_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_iau_prod Checking test 012 fv3_ccpp_iau results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -719,7 +719,7 @@ Test 012 fv3_ccpp_iau PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_lheatstrg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_lheatstrg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_lheatstrg_prod Checking test 013 fv3_ccpp_lheatstrg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -767,7 +767,7 @@ Test 013 fv3_ccpp_lheatstrg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_prod Checking test 014 fv3_ccpp_gfdlmprad results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -816,7 +816,7 @@ Test 014 fv3_ccpp_gfdlmprad PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_atmwav_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_atmwav_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_atmwav_prod Checking test 015 fv3_ccpp_gfdlmprad_atmwav results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -865,7 +865,7 @@ Test 015 fv3_ccpp_gfdlmprad_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_multigases_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_multigases_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_multigases_prod Checking test 016 fv3_ccpp_multigases results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -939,7 +939,7 @@ Test 016 fv3_ccpp_multigases PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_32bit_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_32bit_prod Checking test 017 fv3_ccpp_control_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1007,7 +1007,7 @@ Test 017 fv3_ccpp_control_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_prod Checking test 018 fv3_ccpp_stretched results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1063,7 +1063,7 @@ Test 018 fv3_ccpp_stretched PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_prod Checking test 019 fv3_ccpp_stretched_nest results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1130,7 +1130,7 @@ Test 019 fv3_ccpp_stretched_nest PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_control_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_control_prod Checking test 020 fv3_ccpp_regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1141,7 +1141,7 @@ Test 020 fv3_ccpp_regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_restart_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_restart_prod Checking test 021 fv3_ccpp_regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1150,7 +1150,7 @@ Test 021 fv3_ccpp_regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_quilt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_quilt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_quilt_prod Checking test 022 fv3_ccpp_regional_quilt results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1161,7 +1161,7 @@ Test 022 fv3_ccpp_regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_regional_c768_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_regional_c768_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_regional_c768_prod Checking test 023 fv3_ccpp_regional_c768 results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1172,19 +1172,19 @@ Test 023 fv3_ccpp_regional_c768 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_control_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_control_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_control_debug_prod Checking test 024 fv3_ccpp_control_debug results .... Test 024 fv3_ccpp_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_stretched_nest_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_stretched_nest_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_stretched_nest_debug_prod Checking test 025 fv3_ccpp_stretched_nest_debug results .... Test 025 fv3_ccpp_stretched_nest_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_prod Checking test 026 fv3_ccpp_gfdlmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1232,7 +1232,7 @@ Test 026 fv3_ccpp_gfdlmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_gwd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_gwd_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_gwd_prod Checking test 027 fv3_ccpp_gfdlmprad_gwd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1280,7 +1280,7 @@ Test 027 fv3_ccpp_gfdlmprad_gwd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_noahmp_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_noahmp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_noahmp_prod Checking test 028 fv3_ccpp_gfdlmprad_noahmp results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1328,7 +1328,7 @@ Test 028 fv3_ccpp_gfdlmprad_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_hwrfsas_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_hwrfsas_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_hwrfsas_prod Checking test 029 fv3_ccpp_gfdlmp_hwrfsas results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1376,7 +1376,7 @@ Test 029 fv3_ccpp_gfdlmp_hwrfsas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_csawmg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_csawmg_prod Checking test 030 fv3_ccpp_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1424,7 +1424,7 @@ Test 030 fv3_ccpp_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmf_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmf_prod Checking test 031 fv3_ccpp_satmedmf results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1472,7 +1472,7 @@ Test 031 fv3_ccpp_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_satmedmfq_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_satmedmfq_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_satmedmfq_prod Checking test 032 fv3_ccpp_satmedmfq results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1520,7 +1520,7 @@ Test 032 fv3_ccpp_satmedmfq PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmp_32bit_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmp_32bit_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmp_32bit_prod Checking test 033 fv3_ccpp_gfdlmp_32bit results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1568,7 +1568,7 @@ Test 033 fv3_ccpp_gfdlmp_32bit PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfdlmprad_32bit_post_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfdlmprad_32bit_post_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfdlmprad_32bit_post_prod Checking test 034 fv3_ccpp_gfdlmprad_32bit_post results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1620,7 +1620,7 @@ Test 034 fv3_ccpp_gfdlmprad_32bit_post PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_cpt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_cpt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_cpt_prod Checking test 035 fv3_ccpp_cpt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1674,7 +1674,7 @@ Test 035 fv3_ccpp_cpt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_prod Checking test 036 fv3_ccpp_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1766,7 +1766,7 @@ Test 036 fv3_ccpp_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_prod Checking test 037 fv3_ccpp_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1834,7 +1834,7 @@ Test 037 fv3_ccpp_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_no_aero_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_no_aero_prod Checking test 038 fv3_ccpp_thompson_no_aero results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1902,7 +1902,7 @@ Test 038 fv3_ccpp_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_prod Checking test 039 fv3_ccpp_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1994,7 +1994,7 @@ Test 039 fv3_ccpp_rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmg_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmg_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmg_prod Checking test 040 fv3_ccpp_gfsv16_csawmg results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2042,7 +2042,7 @@ Test 040 fv3_ccpp_gfsv16_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfsv16_csawmgt_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfsv16_csawmgt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfsv16_csawmgt_prod Checking test 041 fv3_ccpp_gfsv16_csawmgt results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,7 +2090,7 @@ Test 041 fv3_ccpp_gfsv16_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gocart_clm_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gocart_clm_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gocart_clm_prod Checking test 042 fv3_ccpp_gocart_clm results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2138,7 +2138,7 @@ Test 042 fv3_ccpp_gocart_clm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gfs_v16beta_flake_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gfs_v16beta_flake_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gfs_v16beta_flake_prod Checking test 043 fv3_ccpp_gfs_v16beta_flake results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,7 +2206,7 @@ Test 043 fv3_ccpp_gfs_v16beta_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_debug_prod Checking test 044 fv3_ccpp_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2274,7 +2274,7 @@ Test 044 fv3_ccpp_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_gsd_diag3d_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_gsd_diag3d_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_gsd_diag3d_debug_prod Checking test 045 fv3_ccpp_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2342,7 +2342,7 @@ Test 045 fv3_ccpp_gsd_diag3d_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_debug_prod Checking test 046 fv3_ccpp_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2410,7 +2410,7 @@ Test 046 fv3_ccpp_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_thompson_no_aero_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_thompson_no_aero_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_thompson_no_aero_debug_prod Checking test 047 fv3_ccpp_thompson_no_aero_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2478,7 +2478,7 @@ Test 047 fv3_ccpp_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/fv3_rrfs_v1beta_debug_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/fv3_ccpp_rrfs_v1beta_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/fv3_ccpp_rrfs_v1beta_debug_prod Checking test 048 fv3_ccpp_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2546,7 +2546,7 @@ Test 048 fv3_ccpp_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1stepcold_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux_prod Checking test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2601,7 +2601,7 @@ Test 049 cpld_fv3_ccpp_mom6_cice_cmeps_1stepcold_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux_prod Checking test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2656,7 +2656,7 @@ Test 050 cpld_fv3_ccpp_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux_prod Checking test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2711,7 +2711,7 @@ Test 051 cpld_fv3_ccpp_mom6_cice_cmeps_3d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_3d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_restart_prod Checking test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart results .... Comparing phyf072.tile1.nc .........OK Comparing phyf072.tile2.nc .........OK @@ -2766,7 +2766,7 @@ Test 052 cpld_fv3_ccpp_mom6_cice_cmeps_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads_prod Checking test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2821,7 +2821,7 @@ Test 053 cpld_fv3_ccpp_mom6_cice_cmeps_2d_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp_prod Checking test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2876,7 +2876,7 @@ Test 054 cpld_fv3_ccpp_mom6_cice_cmeps_2d_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_warm_satmedmf_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf_prod Checking test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -2931,7 +2931,7 @@ Test 055 cpld_fv3_ccpp_mom6_cice_cmeps_1d_satmedmf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_prod Checking test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -2986,7 +2986,7 @@ Test 056 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_2d_warm_ccpp384_cmeps_frac_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac_prod Checking test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac results .... Comparing phyf048.tile1.nc .........OK Comparing phyf048.tile2.nc .........OK @@ -3041,7 +3041,7 @@ Test 057 cpld_fv3_ccpp_384_mom6_cice_cmeps_2d_atm_flux_frac PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmrt_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt_prod Checking test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3133,7 +3133,7 @@ Test 058 cpld_fv3_ccpp_384_mom6_cice_cmeps_1d_bmark_rt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_1d_bmwav_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt_prod Checking test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt results .... Comparing phyf024.tile1.nc .........OK Comparing phyf024.tile2.nc .........OK @@ -3191,7 +3191,7 @@ Test 059 cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20201019/RT-Baselines_6h_warm_debug_ccpp_cmeps_ccpp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_40894/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod +working dir = /gpfs/dell2/ptmp/Rahul.Mahajan/FV3_RT/rt_175957/cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug_prod Checking test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug results .... Comparing phyf006.tile1.nc .........OK Comparing phyf006.tile2.nc .........OK @@ -3247,5 +3247,5 @@ Test 060 cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug PASS REGRESSION TEST WAS SUCCESSFUL -Tue Oct 20 02:21:19 UTC 2020 -Elapsed time: 03h:00m:08s. Have a nice day! +Thu Oct 22 15:52:17 UTC 2020 +Elapsed time: 01h:57m:17s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index ec01aeec3d..c5d0df470b 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -137,6 +137,10 @@ if [[ "${MAKE_OPT}" == *"S2S=Y"* ]]; then CMAKE_FLAGS="${CMAKE_FLAGS} -DS2S=Y" fi +if [[ "${MAKE_OPT}" == *"DATM=Y"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DDATM=Y" +fi + CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") if [ $clean_before = YES ] ; then diff --git a/tests/rt.conf b/tests/rt.conf index 69a93d77e4..3737becb0b 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -190,3 +190,9 @@ RUN | cpld_fv3_ccpp_384_mom6_cice_cmeps_ww3_1d_bmark_rt COMPILE | CCPP=Y DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | RUN | cpld_fv3_ccpp_mom6_cice_cmeps_6h_debug | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | + +####################################################################################################################################################################################### +# Data Atmosphere tests +####################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | standard | hera.intel orion.intel wcoss_dell_p3 | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 119cf98abf..90940de94a 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -420,8 +420,8 @@ if [[ $CREATE_BASELINE == true ]]; then rsync -a "${RTPWD}"/FV3_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/WW3_* "${NEW_BASELINE}"/ - # S2S baselines are only (so far) available on these machines - if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then + # FIXME: S2S baselines are only available on these machines with Intel + if [[ $MACHINE_ID = hera.intel ]] || [[ $MACHINE_ID = orion.intel ]] || [[ $MACHINE_ID = wcoss_dell_p3 ]]; then rsync -a "${RTPWD}"/MOM6_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CICE_* "${NEW_BASELINE}"/ rsync -a "${RTPWD}"/CPL_* "${NEW_BASELINE}"/ diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index b4a7455b44..d09d00fe46 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -43,3 +43,15 @@ COMPILE | CCPP=Y SUITES=FV3_GSD_v0,FV3_GFS_v15_thompson,FV3_RRFS_v1beta 32BIT=Y #RUN | fv3_ccpp_gsd_debug | standard | | fv3 | #RUN | fv3_ccpp_thompson_debug | standard | | fv3 | #RUN | fv3_ccpp_thompson_no_aero_debug | standard | | fv3 | + +####################################################################################################################################################################################### +# S2S tests +####################################################################################################################################################################################### + +COMPILE | CCPP=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled S2S=Y | standard | | fv3 | + +####################################################################################################################################################################################### +# Data Atmosphere tests +####################################################################################################################################################################################### + +COMPILE | DATM=Y S2S=Y | standard | | fv3 |