diff --git a/.gitmodules b/.gitmodules index a1c6502330..9dca13dffd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -20,7 +20,11 @@ branch = develop [submodule "CMEPS"] path = CMEPS-interface/CMEPS - url = https://github.com/NOAA-EMC/CMEPS.git + url = https://github.com/NOAA-EMC/CMEPS + branch = emc/develop +[submodule "HYCOM"] + path = HYCOM-interface/HYCOM + url = https://github.com/NOAA-EMC/HYCOM-src branch = emc/develop [submodule "MOM6"] path = MOM6-interface/MOM6 diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 8d9b9ecfdc..e4663bdd01 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 8d9b9ecfdcb790bc19a58a9611a27bd43c9ebd2d +Subproject commit e4663bdd01c23a538327ed45dad9a66aa5e07aec diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index adca0ed41f..7d7c06640f 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit adca0ed41f1aa4ce0ee70d44fa0e1db6aa3b7c5a +Subproject commit 7d7c06640fc5aff8fe2ed911716ba0c76521b059 diff --git a/CMakeLists.txt b/CMakeLists.txt index a14ed89e93..90d1993a0b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/CMakeModules/Modules) ############################################################################### # Valid applications and choices -list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SW NG-GODAS NG-GODAS-NEMSDATM) +list(APPEND VALID_APPS ATM ATMAERO ATMW S2S S2SW HAFS HAFSW HAFS-ALL NG-GODAS NG-GODAS-NEMSDATM) set(APP NONE CACHE BOOL "Application Name") if(NOT (APP IN_LIST VALID_APPS)) message(FATAL_ERROR "${APP} is not a valid application.\nValid Applications are: ${VALID_APPS}") @@ -26,6 +26,7 @@ set(FMS OFF CACHE BOOL "Enable FMS") set(FV3 OFF CACHE BOOL "Enable FV3") set(UFS_GOCART OFF CACHE BOOL "Enable GOCART") set(MOM6 OFF CACHE BOOL "Enable MOM6") +set(HYCOM OFF CACHE BOOL "Enable HYCOM") set(CICE6 OFF CACHE BOOL "Enable CICE6") set(WW3 OFF CACHE BOOL "Enable WW3") set(STOCH_PHYS OFF CACHE BOOL "Enable Stochastic Physics") @@ -42,6 +43,7 @@ message("FMS .............. ${FMS}") message("FV3 .............. ${FV3}") message("GOCART ........... ${UFS_GOCART}") message("MOM6 ............. ${MOM6}") +message("HYCOM ............ ${HYCOM}") message("CICE6 ............ ${CICE6}") message("WW3 .............. ${WW3}") message("STOCH_PHYS ....... ${STOCH_PHYS}") @@ -181,12 +183,16 @@ if(WW3) endif() ############################################################################### -### Marine Components [MOM6, CICE6] +### Marine Components [MOM6, HYCOM, CICE6] ############################################################################### if(MOM6) add_subdirectory(MOM6-interface) endif() +if(HYCOM) + add_subdirectory(HYCOM-interface) +endif() + if(CICE6) add_subdirectory(CICE-interface) endif() @@ -263,6 +269,12 @@ if(MOM6) list(APPEND _ufs_libs_public mom6) endif() +if(HYCOM) + list(APPEND _ufs_defs_private FRONT_HYCOM=HYCOM_Mod) + add_dependencies(ufs hycom) + target_link_libraries(ufs PUBLIC hycom) +endif() + if(CICE6) add_dependencies(ufs cice) list(APPEND _ufs_defs_private FRONT_CICE6=ice_comp_nuopc) @@ -278,6 +290,7 @@ endif() if(CDEPS) add_dependencies(ufs cdeps::cdeps) list(APPEND _ufs_defs_private FRONT_CDEPS_DATM=cdeps_datm_comp) + list(APPEND _ufs_defs_private FRONT_CDEPS_DOCN=cdeps_docn_comp) target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() diff --git a/FV3 b/FV3 index fca82822c3..c52bb0b2ce 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit fca82822c3293dd69d09a212c4b48f18a5d3fd2a +Subproject commit c52bb0b2ce698caf62d14411e51cc11737cbb649 diff --git a/HYCOM-interface/CMakeLists.txt b/HYCOM-interface/CMakeLists.txt new file mode 100644 index 0000000000..30e32d1e27 --- /dev/null +++ b/HYCOM-interface/CMakeLists.txt @@ -0,0 +1,124 @@ +get_filename_component(hycom_dir "${CMAKE_CURRENT_SOURCE_DIR}/HYCOM" ABSOLUTE) + +### HYCOM Fortran compiler flags +if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") + set(CMAKE_Fortran_FLAGS "-g -fbacktrace") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fdefault-real-8 -fdefault-double-8") + set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -Waliasing -fcray-pointer -fconvert=big-endian -ffree-line-length-none -fno-range-check -fbacktrace") + set(CMAKE_Fortran_FLAGS_RELEASE "-O3") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -fcheck=bounds -ffpe-trap=invalid,zero,overflow,underflow" ) + set(CMAKE_Fortran_LINK_FLAGS "") +elseif(CMAKE_Fortran_COMPILER_ID MATCHES "Intel") + set(CMAKE_Fortran_FLAGS "-g -traceback -xSSE4.2 -mcmodel=small -r8") + set(CMAKE_Fortran_FLAGS_RELEASE "-O3 -fp-model source -warn nogeneral") + set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -check -check noarg_temp_created -check nopointer -fpe0 -ftrapuv -link_mpi=dbg") + set(CMAKE_Fortran_LINK_FLAGS "-V ${CMAKE_Fortran_FLAGS} -static-intel") +else() + message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") +endif() + +### HYCOM C compiler flags +if(CMAKE_C_COMPILER_ID MATCHES "GNU") + set(CMAKE_C_FLAGS "-g -fbacktrace") + set(CMAKE_C_FLAGS_RELEASE "-O3") + set(CMAKE_C_FLAGS_DEBUG "-O0") + set(CMAKE_C_LINK_FLAGS "") +elseif(CMAKE_C_COMPILER_ID MATCHES "Intel") + set(CMAKE_C_FLAGS "-g -traceback -xSSE4.2 -mcmodel=small") + set(CMAKE_C_FLAGS_RELEASE "-O") + set(CMAKE_C_FLAGS_DEBUG "-O0 -ftrapuv") + set(CMAKE_C_LINK_FLAGS "-V ${CMAKE_C_FLAGS} -static-intel") +else() + message(WARNING "C compiler with ID ${CMAKE_C_COMPILER_ID} will be used with CMake default options") +endif() + +list(APPEND _hycom_defs IA32 + REAL8 + MPI + SERIAL_IO + ENDIAN_IO + NAN2003 + TIME + RELO + EOS_SIG2 + EOS_17T + ESPC_COUPLE +) + +# User option to build HYCOM offline executable +set(HYCOMOFFLINE OFF CACHE BOOL "Build HYCOM offline") + +message("Build HYCOM:") +message(" in: ${hycom_dir}") +message(" HYCOMOFFLINE: ${HYCOMOFFLINE}") +message("") + +# Too many files to list, so include them via this file +include("hycom_files.cmake") + +### Use common object library for building target library +add_library(hycom_obj OBJECT ${_hycom_src_files}) +set_target_properties(hycom_obj PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/HYCOM) +set_target_properties(hycom_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(hycom_obj PRIVATE $) +target_include_directories(hycom_obj PRIVATE $) +target_compile_definitions(hycom_obj PRIVATE "${_hycom_defs}") + + +### Use NUOPC object library for building target library +add_library(hycom_nuopc_obj OBJECT ${_hycom_nuopc_src_files}) +add_dependencies(hycom_nuopc_obj hycom_obj) +set_target_properties(hycom_nuopc_obj PROPERTIES ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/HYCOM) +set_target_properties(hycom_nuopc_obj PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) +target_include_directories(hycom_nuopc_obj PRIVATE $) +target_include_directories(hycom_nuopc_obj PRIVATE $ + $) +target_compile_definitions(hycom_nuopc_obj PRIVATE "${_hycom_defs}") +target_link_libraries(hycom_nuopc_obj PRIVATE hycom_obj + esmf + NetCDF::NetCDF_Fortran) + +### Create target library and set PUBLIC interfaces on the library +add_library(hycom STATIC $ + $) +target_include_directories(hycom PUBLIC $ + $) +target_include_directories(hycom PUBLIC $ + $) +target_compile_definitions(hycom PRIVATE "${_hycom_defs}") +target_link_libraries(hycom PUBLIC esmf + NetCDF::NetCDF_Fortran) + +### Create HYCOM offline executable +if(HYCOMOFFLINE) + message("Building HYCOM offline executable") + add_executable(hycomoffline ${_hycom_offline_src_files}) + add_dependencies(hycomoffline hycom_obj) + set_target_properties(hycomoffline PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod_offline) + target_include_directories(hycomoffline PRIVATE $) + target_include_directories(hycomoffline PRIVATE $) + target_include_directories(hycomoffline PRIVATE $) + + target_link_libraries(hycomoffline PRIVATE hycom_obj) +endif() + +############################################################################### +### Install +############################################################################### + +install( + TARGETS hycom + EXPORT hycom-config + RUNTIME DESTINATION bin + LIBRARY DESTINATION lib + ARCHIVE DESTINATION lib + COMPONENT Library) + +install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod DESTINATION ${CMAKE_INSTALL_PREFIX}/HYCOM) + +install(EXPORT hycom-config + DESTINATION lib/cmake) + +if(HYCOMOFFLINE) + install(TARGETS hycomoffline RUNTIME DESTINATION bin) +endif() diff --git a/HYCOM-interface/HYCOM b/HYCOM-interface/HYCOM new file mode 160000 index 0000000000..b4f4ee633e --- /dev/null +++ b/HYCOM-interface/HYCOM @@ -0,0 +1 @@ +Subproject commit b4f4ee633e3f0afd274061cb7abbb15f3ed3b62c diff --git a/HYCOM-interface/hycom_files.cmake b/HYCOM-interface/hycom_files.cmake new file mode 100644 index 0000000000..8480b50f87 --- /dev/null +++ b/HYCOM-interface/hycom_files.cmake @@ -0,0 +1,68 @@ +list(APPEND _hycom_src_files + HYCOM/mod_dimensions.F90 + HYCOM/mod_xc.F90 + HYCOM/mod_za.F90 + HYCOM/mod_cb_arrays.F90 + HYCOM/mod_pipe.F90 + HYCOM/mod_incupd.F90 + HYCOM/mod_floats.F90 + HYCOM/mod_stokes.F90 + HYCOM/mod_tides.F90 + HYCOM/mod_mean.F90 + HYCOM/mod_archiv.F90 + HYCOM/mod_tsadvc.F90 + HYCOM/mod_momtum.F90 + HYCOM/mod_barotp.F90 + HYCOM/mod_asselin.F90 + HYCOM/mod_restart.F90 + HYCOM/mod_import.F90 + HYCOM/mod_hycom.F90 + + HYCOM/bigrid.F90 + HYCOM/blkdat.F90 + HYCOM/cnuity.F90 + HYCOM/convec.F90 + HYCOM/diapfl.F90 + HYCOM/dpthuv.F90 + HYCOM/dpudpv.F90 + HYCOM/forfun.F90 + HYCOM/geopar.F90 + HYCOM/hybgen.F90 + HYCOM/icloan.F90 + HYCOM/inicon.F90 + HYCOM/inigiss.F90 + HYCOM/inikpp.F90 + HYCOM/inimy.F90 + HYCOM/latbdy.F90 + HYCOM/matinv.F90 + HYCOM/mxkprf.F90 + HYCOM/mxkrt.F90 + HYCOM/mxkrtm.F90 + HYCOM/mxpwp.F90 + HYCOM/overtn.F90 + HYCOM/poflat.F90 + HYCOM/prtmsk.F90 + HYCOM/psmoo.F90 + HYCOM/thermf.F90 + HYCOM/trcupd.F90 + HYCOM/machine.F90 + HYCOM/wtime.F90 + HYCOM/machi_c.c + HYCOM/isnan.F90 + HYCOM/s8gefs.F90 +) + +list(APPEND _hycom_nuopc_src_files + HYCOM/NUOPC/HYCOM_OceanComp.F90 + HYCOM/NUOPC/HYCOM_ESMF_Extensions.F90 + HYCOM/NUOPC/hycom_couple.F90 + HYCOM/NUOPC/read_impexp_config_mod.F90 + HYCOM/NUOPC/impexpField_cdf_mod.F90 + HYCOM/NUOPC/export_from_hycom_tiled.F90 + HYCOM/NUOPC/hycom_read_latlon.F90 + HYCOM/NUOPC/hycom_nuopc_flags.F90 +) + +list(APPEND _hycom_offline_src_files + HYCOM/hycom.F90 +) diff --git a/cmake/configure_apps.cmake b/cmake/configure_apps.cmake index c2220628f8..5cf4cb5d68 100644 --- a/cmake/configure_apps.cmake +++ b/cmake/configure_apps.cmake @@ -54,6 +54,22 @@ if(APP MATCHES "^(S2S|S2SW)$") endif() endif() +if(APP MATCHES "^(HAFS|HAFSW|HAFS-ALL)$") + set(CMEPS ON CACHE BOOL "Enable CMEPS" FORCE) + if(APP MATCHES "^(HAFS-ALL)$") + set(CDEPS ON CACHE BOOL "Enable CDEPS" FORCE) + message("Configuring UFS app in HAFS with CDEPS mode") + endif() + set(FMS ON CACHE BOOL "Enable FMS" FORCE) + set(FV3 ON CACHE BOOL "Enable FV3" FORCE) + set(STOCH_PHYS ON CACHE BOOL "Enable Stochastic Physics" FORCE) + set(HYCOM ON CACHE BOOL "Enable HYCOM" FORCE) + if(APP MATCHES "^(HAFSW|HAFS-ALL)$") + set(WW3 ON CACHE BOOL "Enable WAVEWATCH III" FORCE) + message("Configuring UFS app in HAFS with Waves mode") + endif() +endif() + if(APP MATCHES "^(ATMAERO)$") set(FMS ON CACHE BOOL "Enable FMS" FORCE) set(FV3 ON CACHE BOOL "Enable FV3" FORCE) diff --git a/modulefiles/ufs_wcoss_cray b/modulefiles/ufs_wcoss_cray index 2870d8cfaf..abc9bb0c41 100644 --- a/modulefiles/ufs_wcoss_cray +++ b/modulefiles/ufs_wcoss_cray @@ -38,6 +38,7 @@ setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge ## NCEP libraries ## module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +module load pio/2.5.2 module load bacio/2.4.1 module load crtm/2.3.0 module load g2/3.4.1 diff --git a/modulefiles/ufs_wcoss_cray_debug b/modulefiles/ufs_wcoss_cray_debug index bfe0e1c871..ca4805d193 100644 --- a/modulefiles/ufs_wcoss_cray_debug +++ b/modulefiles/ufs_wcoss_cray_debug @@ -38,6 +38,7 @@ setenv PNG_ROOT /usrx/local/prod//png/1.2.49/intel/sandybridge ## NCEP libraries ## module use /usrx/local/nceplibs/NCEPLIBS/cmake/install/NCEPLIBS-v1.3.0/modules +module load pio/2.5.2 module load bacio/2.4.1 module load crtm/2.3.0 module load g2/3.4.1 diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 0e7fcc7fc3..3fcf359439 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,22 +1,26 @@ -Fri Jul 23 13:15:55 MDT 2021 +Wed Aug 4 10:31:03 MDT 2021 Start Regression test -Compile 001 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 341 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 308 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 367 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 155 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 359 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 346 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 315 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 409 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control Checking test 001 control results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc ............SKIP for gnu compilers @@ -51,13 +55,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 286.111960 +0:The total amount of wall time = 279.977867 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -96,13 +100,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 139.475539 +0:The total amount of wall time = 138.199015 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -113,13 +117,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 186.242907 +0:The total amount of wall time = 186.264276 Test 003 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -130,13 +134,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 350.207983 +0:The total amount of wall time = 350.367147 Test 004 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -147,13 +151,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 359.889059 +0:The total amount of wall time = 361.053178 Test 005 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -164,13 +168,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 363.157738 +0:The total amount of wall time = 364.440357 Test 006 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -181,13 +185,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 347.698488 +0:The total amount of wall time = 344.551630 Test 007 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -198,13 +202,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 309.936817 +0:The total amount of wall time = 307.871986 Test 008 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -215,13 +219,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 291.467301 +0:The total amount of wall time = 294.373894 Test 009 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -310,13 +314,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 443.939301 +0:The total amount of wall time = 442.107282 Test 010 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -381,13 +385,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 163.842377 +0:The total amount of wall time = 164.254553 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -452,13 +456,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 162.939591 +0:The total amount of wall time = 162.865390 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -523,13 +527,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 248.839001 +0:The total amount of wall time = 247.702449 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -544,39 +548,39 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 456.183559 +0:The total amount of wall time = 434.485596 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 82.811783 +0:The total amount of wall time = 82.627217 Test 015 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_diag_debug Checking test 016 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.810915 +0:The total amount of wall time = 89.825533 Test 016 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/regional_control_debug Checking test 017 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -584,13 +588,13 @@ Checking test 017 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 129.880069 +0:The total amount of wall time = 129.126882 Test 017 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_rrfs_v1alpha_debug Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -655,13 +659,13 @@ Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 105.665921 +0:The total amount of wall time = 106.011461 Test 018 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_rrfs_v1beta_debug Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -726,13 +730,13 @@ Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 105.737330 +0:The total amount of wall time = 105.815442 Test 019 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_gsd_debug Checking test 020 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -797,13 +801,13 @@ Checking test 020 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 136.437608 +0:The total amount of wall time = 135.389091 Test 020 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/fv3_gsd_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_gsd_diag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_gsd_diag_debug Checking test 021 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -830,104 +834,104 @@ Checking test 021 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 293.249568 +0:The total amount of wall time = 290.333970 Test 021 fv3_gsd_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_thompson_debug Checking test 022 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.416295 +0:The total amount of wall time = 96.524176 Test 022 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_thompson_no_aero_debug Checking test 023 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.869723 +0:The total amount of wall time = 94.475175 Test 023 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_thompson_extdiag_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_debug_extdiag +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_thompson_extdiag_debug Checking test 024 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 102.608903 +0:The total amount of wall time = 103.445335 Test 024 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_rrtmgp_debug Checking test 025 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.982145 +0:The total amount of wall time = 93.451478 Test 025 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_ugwpv1_debug Checking test 026 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.614107 +0:The total amount of wall time = 88.101142 Test 026 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_ras_debug Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 86.756803 +0:The total amount of wall time = 86.558726 Test 027 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/control_noahmp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/control_noahmp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/control_noahmp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/control_noahmp_debug Checking test 028 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.337219 +0:The total amount of wall time = 85.092509 Test 028 control_noahmp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -992,13 +996,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 107.696197 +0:The total amount of wall time = 107.162402 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_69643/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_35498/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1013,11 +1017,11 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 213.104346 +0:The total amount of wall time = 212.579795 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jul 23 13:43:55 MDT 2021 -Elapsed time: 00h:28m:01s. Have a nice day! +Wed Aug 4 11:46:08 MDT 2021 +Elapsed time: 01h:15m:05s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index eb507d67b9..c83bd6bd5b 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,28 @@ -Fri Jul 23 13:30:54 MDT 2021 +Wed Aug 4 10:45:56 MDT 2021 Start Regression test -Compile 001 elapsed time 950 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1029 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 299 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 883 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 738 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 711 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 206 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 210 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 349 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 160 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 360 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 160 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 691 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_control +Compile 001 elapsed time 1018 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1105 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 339 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 905 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 728 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 260 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 808 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 822 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 381 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 190 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 394 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 190 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 716 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +72,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 95.973315 +0:The total amount of wall time = 96.156924 Test 001 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +128,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 52.607685 +0:The total amount of wall time = 52.742686 Test 002 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +184,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 254.393281 +0:The total amount of wall time = 253.358609 Test 003 cpld_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_decomp Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +240,13 @@ Checking test 004 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 94.957030 +0:The total amount of wall time = 94.699459 Test 004 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_ca Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -294,13 +296,13 @@ Checking test 005 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 94.095853 +0:The total amount of wall time = 94.583997 Test 005 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_control_c192 Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +352,13 @@ Checking test 006 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 407.549346 +0:The total amount of wall time = 391.602825 Test 006 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_restart_c192 Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -406,13 +408,13 @@ Checking test 007 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 284.357183 +0:The total amount of wall time = 287.982091 Test 007 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_control_c384 Checking test 008 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -465,13 +467,13 @@ Checking test 008 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 859.221342 +0:The total amount of wall time = 819.755016 Test 008 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_restart_c384 Checking test 009 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -524,13 +526,13 @@ Checking test 009 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 467.859732 +0:The total amount of wall time = 472.210281 Test 009 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_bmark_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_bmark_v16 Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -573,13 +575,13 @@ Checking test 010 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 680.276435 +0:The total amount of wall time = 690.602111 Test 010 cpld_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_restart_bmark_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_restart_bmark_v16 Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -622,13 +624,13 @@ Checking test 011 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 388.449443 +0:The total amount of wall time = 388.534776 Test 011 cpld_restart_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_bmark_v16_nsst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_bmark_v16_nsst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16_nsst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_bmark_v16_nsst Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,13 +673,13 @@ Checking test 012 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 680.696663 +0:The total amount of wall time = 690.218042 Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_bmark_wave_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_bmark_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_bmark_wave_v16 Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -722,13 +724,13 @@ Checking test 013 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 774.220511 +0:The total amount of wall time = 772.909135 Test 013 cpld_bmark_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_control_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_wave +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -781,13 +783,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -0:The total amount of wall time = 119.415804 +0:The total amount of wall time = 122.161951 Test 014 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -837,21 +839,25 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 284.461517 +0:The total amount of wall time = 288.325514 Test 015 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control Checking test 016 control results .... Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -886,13 +892,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.776978 +0:The total amount of wall time = 165.871998 Test 016 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -935,13 +941,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.299524 +0:The total amount of wall time = 166.644260 Test 017 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -984,13 +990,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 348.256355 +0:The total amount of wall time = 344.503098 Test 018 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1029,14 +1035,63 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 74.150274 +0:The total amount of wall time = 75.862691 Test 019 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_CubedSphereGrid -Checking test 020 control_CubedSphereGrid results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_fhzero +Checking test 020 control_fhzero results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 166.464032 + +Test 020 control_fhzero PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1062,15 +1117,15 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 139.443023 +0:The total amount of wall time = 140.600364 -Test 020 control_CubedSphereGrid PASS +Test 021 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_wrtGauss_netcdf_parallel -Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc .........OK @@ -1079,14 +1134,14 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 184.026789 +0:The total amount of wall time = 185.186821 -Test 021 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_c192 -Checking test 022 control_c192 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_c192 +Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1096,14 +1151,14 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 577.258468 +0:The total amount of wall time = 579.033414 -Test 022 control_c192 PASS +Test 023 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_c384 -Checking test 023 control_c384 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_c384 +Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1113,14 +1168,14 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1060.475199 +0:The total amount of wall time = 1067.237424 -Test 023 control_c384 PASS +Test 024 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_c384gdas -Checking test 024 control_c384gdas results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_c384gdas +Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1162,14 +1217,14 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 886.086998 +0:The total amount of wall time = 912.116433 -Test 024 control_c384gdas PASS +Test 025 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_stochy -Checking test 025 control_stochy results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1179,27 +1234,27 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.415994 +0:The total amount of wall time = 111.348178 -Test 025 control_stochy PASS +Test 026 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_stochy_restart -Checking test 026 control_stochy_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 57.307748 +0:The total amount of wall time = 56.631135 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ca -Checking test 027 control_ca results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ca +Checking test 028 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1209,14 +1264,14 @@ Checking test 027 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 110.420009 +0:The total amount of wall time = 110.304694 -Test 027 control_ca PASS +Test 028 control_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_lndp -Checking test 028 control_lndp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_lndp +Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1226,14 +1281,14 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 114.548014 +0:The total amount of wall time = 112.647471 -Test 028 control_lndp PASS +Test 029 control_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_lheatstrg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_lheatstrg -Checking test 029 control_lheatstrg results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_lheatstrg +Checking test 030 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1243,14 +1298,14 @@ Checking test 029 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 166.851346 +0:The total amount of wall time = 166.173465 -Test 029 control_lheatstrg PASS +Test 030 control_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_lseaspray -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_lseaspray -Checking test 030 control_lseaspray results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lseaspray +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_lseaspray +Checking test 031 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1260,14 +1315,14 @@ Checking test 030 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 175.255264 +0:The total amount of wall time = 174.464698 -Test 030 control_lseaspray PASS +Test 031 control_lseaspray PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_merra2 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_merra2 -Checking test 031 control_merra2 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_merra2 +Checking test 032 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1277,14 +1332,14 @@ Checking test 031 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 200.676952 +0:The total amount of wall time = 203.152962 -Test 031 control_merra2 PASS +Test 032 control_merra2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_rrtmgp -Checking test 032 control_rrtmgp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_rrtmgp +Checking test 033 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1294,14 +1349,14 @@ Checking test 032 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 276.220118 +0:The total amount of wall time = 271.914760 -Test 032 control_rrtmgp PASS +Test 033 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_csawmgt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_csawmgt -Checking test 033 control_csawmgt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_csawmgt +Checking test 034 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1311,14 +1366,14 @@ Checking test 033 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 415.938724 +0:The total amount of wall time = 415.724291 -Test 033 control_csawmgt PASS +Test 034 control_csawmgt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_flake -Checking test 034 control_flake results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_flake +Checking test 035 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1328,14 +1383,14 @@ Checking test 034 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.580844 +0:The total amount of wall time = 268.525566 -Test 034 control_flake PASS +Test 035 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ugwpv1 -Checking test 035 control_ugwpv1 results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ugwpv1 +Checking test 036 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1345,14 +1400,14 @@ Checking test 035 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 223.130509 +0:The total amount of wall time = 214.110007 -Test 035 control_ugwpv1 PASS +Test 036 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ras -Checking test 036 control_ras results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ras +Checking test 037 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1362,14 +1417,14 @@ Checking test 036 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.865524 +0:The total amount of wall time = 203.996899 -Test 036 control_ras PASS +Test 037 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_thompson -Checking test 037 control_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_thompson +Checking test 038 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1379,14 +1434,14 @@ Checking test 037 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 258.267432 +0:The total amount of wall time = 258.511900 -Test 037 control_thompson PASS +Test 038 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_thompson_no_aero -Checking test 038 control_thompson_no_aero results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_thompson_no_aero +Checking test 039 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1396,14 +1451,14 @@ Checking test 038 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 248.777476 +0:The total amount of wall time = 247.313102 -Test 038 control_thompson_no_aero PASS +Test 039 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_noahmp -Checking test 039 control_noahmp results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_noahmp +Checking test 040 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1413,40 +1468,40 @@ Checking test 039 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 200.622090 +0:The total amount of wall time = 196.765463 -Test 039 control_noahmp PASS +Test 040 control_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_control -Checking test 040 regional_control results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_control +Checking test 041 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 347.858405 +0:The total amount of wall time = 341.708535 -Test 040 regional_control PASS +Test 041 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_restart -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_restart -Checking test 041 regional_restart results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_restart +Checking test 042 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -0:The total amount of wall time = 189.059849 +0:The total amount of wall time = 189.023515 -Test 041 regional_restart PASS +Test 042 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_quilt -Checking test 042 regional_quilt results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_quilt +Checking test 043 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1456,14 +1511,14 @@ Checking test 042 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 337.997550 +0:The total amount of wall time = 349.544531 -Test 042 regional_quilt PASS +Test 043 regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_quilt_2threads -Checking test 043 regional_quilt_2threads results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_quilt_2threads +Checking test 044 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1473,14 +1528,14 @@ Checking test 043 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 931.153287 +0:The total amount of wall time = 928.587105 -Test 043 regional_quilt_2threads PASS +Test 044 regional_quilt_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_quilt_hafs -Checking test 044 regional_quilt_hafs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_quilt_hafs +Checking test 045 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1488,28 +1543,28 @@ Checking test 044 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 345.357673 +0:The total amount of wall time = 344.933928 -Test 044 regional_quilt_hafs PASS +Test 045 regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_quilt_netcdf_parallel -Checking test 045 regional_quilt_netcdf_parallel results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_quilt_netcdf_parallel +Checking test 046 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 346.490861 +0:The total amount of wall time = 344.456020 -Test 045 regional_quilt_netcdf_parallel PASS +Test 046 regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_quilt_RRTMGP -Checking test 046 regional_quilt_RRTMGP results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_quilt_RRTMGP +Checking test 047 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1519,14 +1574,14 @@ Checking test 046 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 528.146104 +0:The total amount of wall time = 528.590778 -Test 046 regional_quilt_RRTMGP PASS +Test 047 regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_gsd -Checking test 047 fv3_gsd results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_gsd +Checking test 048 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1614,14 +1669,14 @@ Checking test 047 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 253.754514 +0:The total amount of wall time = 255.923991 -Test 047 fv3_gsd PASS +Test 048 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_rrfs_v1alpha -Checking test 048 fv3_rrfs_v1alpha results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_rrfs_v1alpha +Checking test 049 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1685,14 +1740,14 @@ Checking test 048 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.355164 +0:The total amount of wall time = 100.084925 -Test 048 fv3_rrfs_v1alpha PASS +Test 049 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_rap -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_rap -Checking test 049 fv3_rap results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rap +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_rap +Checking test 050 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1756,14 +1811,14 @@ Checking test 049 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.023699 +0:The total amount of wall time = 100.241989 -Test 049 fv3_rap PASS +Test 050 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_hrrr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_hrrr -Checking test 050 fv3_hrrr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_hrrr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_hrrr +Checking test 051 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1827,14 +1882,14 @@ Checking test 050 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 98.497930 +0:The total amount of wall time = 98.183460 -Test 050 fv3_hrrr PASS +Test 051 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_rrfs_v1beta -Checking test 051 fv3_rrfs_v1beta results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_rrfs_v1beta +Checking test 052 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1898,14 +1953,14 @@ Checking test 051 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.270052 +0:The total amount of wall time = 98.599940 -Test 051 fv3_rrfs_v1beta PASS +Test 052 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_HAFS_v0_hwrf_thompson -Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_HAFS_v0_hwrf_thompson +Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -1969,14 +2024,14 @@ Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 197.410546 +0:The total amount of wall time = 196.193086 -Test 052 fv3_HAFS_v0_hwrf_thompson PASS +Test 053 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_esg_HAFS_v0_hwrf_thompson +Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf012.nc .........OK @@ -1990,40 +2045,40 @@ Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 319.718140 +0:The total amount of wall time = 340.382977 -Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS +Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_debug -Checking test 054 control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_debug +Checking test 055 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.659140 +0:The total amount of wall time = 154.316889 -Test 054 control_debug PASS +Test 055 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_2threads_debug -Checking test 055 control_2threads_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_2threads_debug +Checking test 056 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 271.860427 +0:The total amount of wall time = 271.672491 -Test 055 control_2threads_debug PASS +Test 056 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_CubedSphereGrid_debug -Checking test 056 control_CubedSphereGrid_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_CubedSphereGrid_debug +Checking test 057 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2049,236 +2104,236 @@ Checking test 056 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 168.976247 +0:The total amount of wall time = 173.351013 -Test 056 control_CubedSphereGrid_debug PASS +Test 057 control_CubedSphereGrid_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_wrtGauss_netcdf_parallel_debug -Checking test 057 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_wrtGauss_netcdf_parallel_debug +Checking test 058 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 157.335072 +0:The total amount of wall time = 156.949391 -Test 057 control_wrtGauss_netcdf_parallel_debug PASS +Test 058 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_stochy_debug -Checking test 058 control_stochy_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_stochy_debug +Checking test 059 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.212948 +0:The total amount of wall time = 177.227009 -Test 058 control_stochy_debug PASS +Test 059 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ca_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ca_debug -Checking test 059 control_ca_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ca_debug +Checking test 060 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.683892 +0:The total amount of wall time = 156.184732 -Test 059 control_ca_debug PASS +Test 060 control_ca_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_lndp_debug -Checking test 060 control_lndp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_lndp_debug +Checking test 061 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.171988 +0:The total amount of wall time = 158.959785 -Test 060 control_lndp_debug PASS +Test 061 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_lheatstrg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_lheatstrg_debug -Checking test 061 control_lheatstrg_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_lheatstrg_debug +Checking test 062 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.902712 +0:The total amount of wall time = 154.202689 -Test 061 control_lheatstrg_debug PASS +Test 062 control_lheatstrg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_merra2_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_merra2_debug -Checking test 062 control_merra2_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_merra2_debug +Checking test 063 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 227.786286 +0:The total amount of wall time = 225.607298 -Test 062 control_merra2_debug PASS +Test 063 control_merra2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_rrtmgp_debug -Checking test 063 control_rrtmgp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_rrtmgp_debug +Checking test 064 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.548005 +0:The total amount of wall time = 179.718561 -Test 063 control_rrtmgp_debug PASS +Test 064 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_csawmg_debug -Checking test 064 control_csawmg_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_csawmg_debug +Checking test 065 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 268.838560 +0:The total amount of wall time = 268.815740 -Test 064 control_csawmg_debug PASS +Test 065 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_csawmgt_debug -Checking test 065 control_csawmgt_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_csawmgt_debug +Checking test 066 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.899229 +0:The total amount of wall time = 304.953137 -Test 065 control_csawmgt_debug PASS +Test 066 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ugwpv1_debug -Checking test 066 control_ugwpv1_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ugwpv1_debug +Checking test 067 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 167.611956 +0:The total amount of wall time = 167.070064 -Test 066 control_ugwpv1_debug PASS +Test 067 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_ras_debug -Checking test 067 control_ras_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_ras_debug +Checking test 068 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.352127 +0:The total amount of wall time = 162.568068 -Test 067 control_ras_debug PASS +Test 068 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_noahmp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_noahmp_debug -Checking test 068 control_noahmp_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_noahmp_debug +Checking test 069 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 155.163485 +0:The total amount of wall time = 155.207458 -Test 068 control_noahmp_debug PASS +Test 069 control_noahmp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_diag_debug -Checking test 069 control_diag_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_diag_debug +Checking test 070 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.443422 +0:The total amount of wall time = 166.529985 -Test 069 control_diag_debug PASS +Test 070 control_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_thompson_debug -Checking test 070 control_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_thompson_debug +Checking test 071 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 181.309175 +0:The total amount of wall time = 180.955679 -Test 070 control_thompson_debug PASS +Test 071 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_thompson_no_aero_debug -Checking test 071 control_thompson_no_aero_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_thompson_no_aero_debug +Checking test 072 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.695377 +0:The total amount of wall time = 174.430219 -Test 071 control_thompson_no_aero_debug PASS +Test 072 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_thompson_extdiag_debug -Checking test 072 control_thompson_extdiag_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug_extdiag +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_thompson_extdiag_debug +Checking test 073 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 191.145300 +0:The total amount of wall time = 191.027473 -Test 072 control_thompson_extdiag_debug PASS +Test 073 control_thompson_extdiag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/regional_control_debug -Checking test 073 regional_control_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/regional_control_debug +Checking test 074 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 255.970683 +0:The total amount of wall time = 256.630012 -Test 073 regional_control_debug PASS +Test 074 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_gsd_debug -Checking test 074 fv3_gsd_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_gsd_debug +Checking test 075 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2342,14 +2397,14 @@ Checking test 074 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 263.152884 +0:The total amount of wall time = 268.595310 -Test 074 fv3_gsd_debug PASS +Test 075 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_gsd_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_gsd_diag_debug -Checking test 075 fv3_gsd_diag_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_gsd_diag_debug +Checking test 076 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2375,14 +2430,14 @@ Checking test 075 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 405.749013 +0:The total amount of wall time = 415.505841 -Test 075 fv3_gsd_diag_debug PASS +Test 076 fv3_gsd_diag_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_rrfs_v1beta_debug -Checking test 076 fv3_rrfs_v1beta_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_rrfs_v1beta_debug +Checking test 077 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2446,14 +2501,14 @@ Checking test 076 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 207.359061 +0:The total amount of wall time = 213.254805 -Test 076 fv3_rrfs_v1beta_debug PASS +Test 077 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_rrfs_v1alpha_debug -Checking test 077 fv3_rrfs_v1alpha_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_rrfs_v1alpha_debug +Checking test 078 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2517,14 +2572,14 @@ Checking test 077 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 208.092692 +0:The total amount of wall time = 210.273315 -Test 077 fv3_rrfs_v1alpha_debug PASS +Test 078 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_HAFS_v0_hwrf_thompson_debug -Checking test 078 fv3_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_HAFS_v0_hwrf_thompson_debug +Checking test 079 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK Comparing atmos_4xdaily.tile3.nc .........OK @@ -2588,14 +2643,14 @@ Checking test 078 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 216.883301 +0:The total amount of wall time = 217.994112 -Test 078 fv3_HAFS_v0_hwrf_thompson_debug PASS +Test 079 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/fv3_esg_HAFS_v0_hwrf_thompson_debug -Checking test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/fv3_esg_HAFS_v0_hwrf_thompson_debug +Checking test 080 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK @@ -2609,86 +2664,150 @@ Checking test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 397.012594 +0:The total amount of wall time = 398.979828 + +Test 080 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/hafs_regional_atm +Checking test 081 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + +0:The total amount of wall time = 488.434185 + +Test 081 hafs_regional_atm PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/hafs_regional_atm_ocn +Checking test 082 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 392.940285 + +Test 082 hafs_regional_atm_ocn PASS -Test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/hafs_regional_docn +Checking test 083 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_control_cfsr -Checking test 080 datm_control_cfsr results .... +0:The total amount of wall time = 344.907551 + +Test 083 hafs_regional_docn PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/hafs_regional_docn_oisst +Checking test 084 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +0:The total amount of wall time = 339.387355 + +Test 084 hafs_regional_docn_oisst PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/hafs_regional_datm_cdeps +Checking test 085 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + +0:The total amount of wall time = 1292.030448 + +Test 085 hafs_regional_datm_cdeps PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_control_cfsr +Checking test 086 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 100.188162 +0:The total amount of wall time = 100.025279 -Test 080 datm_control_cfsr PASS +Test 086 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_restart_cfsr -Checking test 081 datm_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_restart_cfsr +Checking test 087 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 62.917460 +0:The total amount of wall time = 62.957003 -Test 081 datm_restart_cfsr PASS +Test 087 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_control_gefs -Checking test 082 datm_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_control_gefs +Checking test 088 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 91.439584 +0:The total amount of wall time = 93.747654 -Test 082 datm_control_gefs PASS +Test 088 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_control_iau_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_control_iau_gefs -Checking test 083 datm_control_iau_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_iau_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_control_iau_gefs +Checking test 089 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 96.771947 +0:The total amount of wall time = 96.382469 -Test 083 datm_control_iau_gefs PASS +Test 089 datm_control_iau_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_bulk_cfsr -Checking test 084 datm_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_bulk_cfsr +Checking test 090 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 96.938001 +0:The total amount of wall time = 96.359426 -Test 084 datm_bulk_cfsr PASS +Test 090 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_bulk_gefs -Checking test 085 datm_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_bulk_gefs +Checking test 091 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 95.210445 +0:The total amount of wall time = 94.521999 -Test 085 datm_bulk_gefs PASS +Test 091 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_mx025_cfsr -Checking test 086 datm_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_mx025_cfsr +Checking test 092 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2696,14 +2815,14 @@ Checking test 086 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 349.855861 +0:The total amount of wall time = 345.170879 -Test 086 datm_mx025_cfsr PASS +Test 092 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_mx025_gefs -Checking test 087 datm_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_mx025_gefs +Checking test 093 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2711,86 +2830,86 @@ Checking test 087 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 350.607948 +0:The total amount of wall time = 330.645458 -Test 087 datm_mx025_gefs PASS +Test 093 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_debug_cfsr -Checking test 088 datm_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_debug_cfsr +Checking test 094 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 266.212523 +0:The total amount of wall time = 268.183873 -Test 088 datm_debug_cfsr PASS +Test 094 datm_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_control_cfsr -Checking test 089 datm_cdeps_control_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_control_cfsr +Checking test 095 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.407059 +0:The total amount of wall time = 158.362281 -Test 089 datm_cdeps_control_cfsr PASS +Test 095 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_restart_cfsr -Checking test 090 datm_cdeps_restart_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_restart_cfsr +Checking test 096 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 101.118936 +0:The total amount of wall time = 100.727456 -Test 090 datm_cdeps_restart_cfsr PASS +Test 096 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_control_gefs -Checking test 091 datm_cdeps_control_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_control_gefs +Checking test 097 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 157.903383 +0:The total amount of wall time = 157.762789 -Test 091 datm_cdeps_control_gefs PASS +Test 097 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_bulk_cfsr -Checking test 092 datm_cdeps_bulk_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_bulk_cfsr +Checking test 098 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.488629 +0:The total amount of wall time = 165.026423 -Test 092 datm_cdeps_bulk_cfsr PASS +Test 098 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_bulk_gefs -Checking test 093 datm_cdeps_bulk_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_bulk_gefs +Checking test 099 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 158.113397 +0:The total amount of wall time = 157.322021 -Test 093 datm_cdeps_bulk_gefs PASS +Test 099 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_mx025_cfsr -Checking test 094 datm_cdeps_mx025_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_mx025_cfsr +Checking test 100 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2798,14 +2917,14 @@ Checking test 094 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 349.233590 +0:The total amount of wall time = 346.206987 -Test 094 datm_cdeps_mx025_cfsr PASS +Test 100 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_mx025_gefs -Checking test 095 datm_cdeps_mx025_gefs results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_mx025_gefs +Checking test 101 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2813,36 +2932,36 @@ Checking test 095 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 344.932609 +0:The total amount of wall time = 345.091527 -Test 095 datm_cdeps_mx025_gefs PASS +Test 101 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_multiple_files_cfsr -Checking test 096 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_multiple_files_cfsr +Checking test 102 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 164.805142 +0:The total amount of wall time = 163.041346 -Test 096 datm_cdeps_multiple_files_cfsr PASS +Test 102 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/datm_cdeps_debug_cfsr -Checking test 097 datm_cdeps_debug_cfsr results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/datm_cdeps_debug_cfsr +Checking test 103 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 448.209955 +0:The total amount of wall time = 451.213277 -Test 097 datm_cdeps_debug_cfsr PASS +Test 103 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210722/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_48931/control_atmwav -Checking test 098 control_atmwav results .... +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_atmwav +Checking test 104 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2883,12 +3002,65 @@ Checking test 098 control_atmwav results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing 20210322.180000.restart.glo_1deg .........OK + +0:The total amount of wall time = 145.267401 + +Test 104 control_atmwav PASS + + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas_wav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_22343/control_c384gdas_wav +Checking test 105 control_c384gdas_wav results .... + Comparing sfcf000.nc .........OK + Comparing sfcf003.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf003.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF03 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF03 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing 20210322.030000.restart.aoc_9km .........OK + Comparing 20210322.030000.restart.gnh_10m .........OK + Comparing 20210322.030000.restart.gsh_15m .........OK -0:The total amount of wall time = 367.143267 +0:The total amount of wall time = 931.519290 -Test 098 control_atmwav PASS +Test 105 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jul 23 14:47:59 MDT 2021 -Elapsed time: 01h:17m:06s. Have a nice day! +Wed Aug 4 15:33:37 MDT 2021 +Elapsed time: 04h:47m:41s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index be5124cf84..43f9efe6d0 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,28 @@ -Thu Jul 29 12:11:18 EDT 2021 +Wed Aug 4 10:48:38 EDT 2021 Start Regression test -Compile 001 elapsed time 840 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 837 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 297 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 685 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 733 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 692 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 725 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 736 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 259 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 252 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 439 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 284 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 329 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 213 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 335 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 699 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 805 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 847 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 323 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 720 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 726 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 285 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 285 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 256 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 212 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 734 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 739 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 309 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 209 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 325 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 218 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 695 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +72,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 124.515306 + 0: The total amount of wall time = 121.735581 Test 001 cpld_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +128,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 82.223007 + 0: The total amount of wall time = 50.452371 Test 002 cpld_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +184,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 119.842432 + 0: The total amount of wall time = 148.087143 Test 003 cpld_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_decomp Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +240,13 @@ Checking test 004 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 90.379105 + 0: The total amount of wall time = 124.062305 Test 004 cpld_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_ca Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -294,13 +296,13 @@ Checking test 005 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 121.031518 + 0: The total amount of wall time = 123.535682 Test 005 cpld_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_control_c192 Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +352,13 @@ Checking test 006 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 429.428274 + 0: The total amount of wall time = 431.869764 Test 006 cpld_control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_restart_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_restart_c192 Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -406,13 +408,13 @@ Checking test 007 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 349.746833 + 0: The total amount of wall time = 307.282874 Test 007 cpld_restart_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_control_c384 Checking test 008 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -465,13 +467,13 @@ Checking test 008 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 842.880855 + 0: The total amount of wall time = 833.224592 Test 008 cpld_control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_restart_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_restart_c384 Checking test 009 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -524,13 +526,13 @@ Checking test 009 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 451.370166 + 0: The total amount of wall time = 443.731654 Test 009 cpld_restart_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_bmark_v16 Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -573,13 +575,13 @@ Checking test 010 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 652.194824 + 0: The total amount of wall time = 674.779900 Test 010 cpld_bmark_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_restart_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_restart_bmark_v16 Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -622,13 +624,13 @@ Checking test 011 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 367.894587 + 0: The total amount of wall time = 387.619157 Test 011 cpld_restart_bmark_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_bmark_v16_nsst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_bmark_v16_nsst Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,13 +673,13 @@ Checking test 012 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 679.199444 + 0: The total amount of wall time = 662.558099 Test 012 cpld_bmark_v16_nsst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_bmark_wave_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_bmark_wave_v16 Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -722,13 +724,13 @@ Checking test 013 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 734.933050 + 0: The total amount of wall time = 780.003985 Test 013 cpld_bmark_wave_v16 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16_p7b -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_bmark_wave_v16_p7b +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_bmark_wave_v16_p7b Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -773,13 +775,13 @@ Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 854.053243 + 0: The total amount of wall time = 896.488004 Test 014 cpld_bmark_wave_v16_p7b PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_control_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_control_wave Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,13 +834,13 @@ Checking test 015 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 138.834068 + 0: The total amount of wall time = 168.628291 Test 015 cpld_control_wave PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/cpld_debug Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -888,13 +890,13 @@ Checking test 016 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 294.126901 + 0: The total amount of wall time = 263.575479 Test 016 cpld_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -941,13 +943,13 @@ Checking test 017 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.065569 + 0: The total amount of wall time = 167.679935 Test 017 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_decomp Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,13 +992,13 @@ Checking test 018 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.518037 + 0: The total amount of wall time = 172.143359 Test 018 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_2threads Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1039,13 +1041,13 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 213.519815 + 0: The total amount of wall time = 192.367430 Test 019 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_restart Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1084,13 +1086,13 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 100.470462 + 0: The total amount of wall time = 67.826724 Test 020 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_fhzero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_fhzero Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1133,13 +1135,13 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 193.750283 + 0: The total amount of wall time = 196.613645 Test 021 control_fhzero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1166,13 +1168,13 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 127.307361 + 0: The total amount of wall time = 155.483031 Test 022 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1183,13 +1185,13 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 279.153975 + 0: The total amount of wall time = 445.145324 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1200,13 +1202,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 558.636031 + 0: The total amount of wall time = 551.558181 Test 024 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1249,13 +1251,13 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 593.701895 + 0: The total amount of wall time = 596.403390 Test 025 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1266,26 +1268,26 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 143.000719 + 0: The total amount of wall time = 141.718488 Test 026 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.551974 + 0: The total amount of wall time = 61.432797 Test 027 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ca Checking test 028 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1296,13 +1298,13 @@ Checking test 028 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 115.937737 + 0: The total amount of wall time = 149.939706 Test 028 control_ca PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1313,13 +1315,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 119.963888 + 0: The total amount of wall time = 125.771891 Test 029 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_lheatstrg Checking test 030 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1330,13 +1332,13 @@ Checking test 030 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 192.890947 + 0: The total amount of wall time = 169.825935 Test 030 control_lheatstrg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lseaspray -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_lseaspray +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_lseaspray Checking test 031 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,13 +1349,13 @@ Checking test 031 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 175.975361 + 0: The total amount of wall time = 207.092508 Test 031 control_lseaspray PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_merra2 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_merra2 Checking test 032 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,13 +1366,13 @@ Checking test 032 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.085895 + 0: The total amount of wall time = 271.341628 Test 032 control_merra2 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_rrtmgp Checking test 033 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1381,13 +1383,13 @@ Checking test 033 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.495488 + 0: The total amount of wall time = 226.616053 Test 033 control_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_csawmg Checking test 034 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1398,13 +1400,13 @@ Checking test 034 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 290.942330 + 0: The total amount of wall time = 361.989235 Test 034 control_csawmg PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_csawmgt Checking test 035 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1415,13 +1417,13 @@ Checking test 035 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 371.266511 + 0: The total amount of wall time = 421.113529 Test 035 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_flake Checking test 036 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1432,13 +1434,13 @@ Checking test 036 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 260.956552 + 0: The total amount of wall time = 245.311436 Test 036 control_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ugwpv1 Checking test 037 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1449,13 +1451,13 @@ Checking test 037 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.376832 + 0: The total amount of wall time = 202.629215 Test 037 control_ugwpv1 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ras Checking test 038 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1466,13 +1468,13 @@ Checking test 038 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.324161 + 0: The total amount of wall time = 219.212920 Test 038 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_thompson Checking test 039 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1483,13 +1485,13 @@ Checking test 039 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.141869 + 0: The total amount of wall time = 225.604226 Test 039 control_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_thompson_no_aero Checking test 040 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1500,13 +1502,13 @@ Checking test 040 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 227.717205 + 0: The total amount of wall time = 263.315370 Test 040 control_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_noahmp Checking test 041 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1517,13 +1519,13 @@ Checking test 041 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.247884 + 0: The total amount of wall time = 187.227121 Test 041 control_noahmp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_control Checking test 042 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1531,25 +1533,25 @@ Checking test 042 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 328.120509 + 0: The total amount of wall time = 330.505855 Test 042 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_restart Checking test 043 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 177.335010 + 0: The total amount of wall time = 175.706394 Test 043 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_quilt Checking test 044 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1560,13 +1562,13 @@ Checking test 044 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 330.626213 + 0: The total amount of wall time = 332.137129 Test 044 regional_quilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_quilt_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_quilt_2threads Checking test 045 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1577,13 +1579,13 @@ Checking test 045 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 256.302414 + 0: The total amount of wall time = 257.686633 Test 045 regional_quilt_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_quilt_hafs Checking test 046 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1592,27 +1594,27 @@ Checking test 046 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 325.484318 + 0: The total amount of wall time = 329.852082 Test 046 regional_quilt_hafs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_quilt_netcdf_parallel Checking test 047 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK - Comparing phyf024.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 367.236859 + 0: The total amount of wall time = 385.079020 Test 047 regional_quilt_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_quilt_RRTMGP Checking test 048 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1623,13 +1625,13 @@ Checking test 048 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 464.546695 + 0: The total amount of wall time = 470.597724 Test 048 regional_quilt_RRTMGP PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_gsd Checking test 049 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1718,13 +1720,13 @@ Checking test 049 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 234.558609 + 0: The total amount of wall time = 237.311170 Test 049 fv3_gsd PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_rrfs_v1alpha Checking test 050 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1789,13 +1791,13 @@ Checking test 050 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.262743 + 0: The total amount of wall time = 91.611355 Test 050 fv3_rrfs_v1alpha PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_rap Checking test 051 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1860,13 +1862,13 @@ Checking test 051 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.632058 + 0: The total amount of wall time = 119.901735 Test 051 fv3_rap PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_hrrr Checking test 052 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1931,13 +1933,13 @@ Checking test 052 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 91.901258 + 0: The total amount of wall time = 90.243151 Test 052 fv3_hrrr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_rrfs_v1beta Checking test 053 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2002,13 +2004,13 @@ Checking test 053 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.448964 + 0: The total amount of wall time = 96.034852 Test 053 fv3_rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_HAFS_v0_hwrf_thompson Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2073,13 +2075,13 @@ Checking test 054 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 163.357044 + 0: The total amount of wall time = 161.448415 Test 054 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_esg_HAFS_v0_hwrf_thompson Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2094,39 +2096,39 @@ Checking test 055 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 330.966441 + 0: The total amount of wall time = 328.147779 Test 055 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_debug Checking test 056 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.228394 + 0: The total amount of wall time = 146.716898 Test 056 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_2threads_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_2threads_debug Checking test 057 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 254.100541 + 0: The total amount of wall time = 255.691829 Test 057 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_CubedSphereGrid_debug Checking test 058 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2153,221 +2155,221 @@ Checking test 058 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 154.998279 + 0: The total amount of wall time = 156.507548 Test 058 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_wrtGauss_netcdf_parallel_debug Checking test 059 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.891009 + 0: The total amount of wall time = 167.131830 Test 059 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_stochy_debug Checking test 060 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.446305 + 0: The total amount of wall time = 168.000891 Test 060 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ca_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ca_debug Checking test 061 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.323972 + 0: The total amount of wall time = 147.367010 Test 061 control_ca_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_lndp_debug Checking test 062 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.992245 + 0: The total amount of wall time = 152.031669 Test 062 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_lheatstrg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_lheatstrg_debug Checking test 063 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.438546 + 0: The total amount of wall time = 147.194685 Test 063 control_lheatstrg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_merra2_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_merra2_debug Checking test 064 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.839236 + 0: The total amount of wall time = 245.099037 Test 064 control_merra2_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_rrtmgp_debug Checking test 065 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.448854 + 0: The total amount of wall time = 169.330979 Test 065 control_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_csawmg_debug Checking test 066 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 248.683186 + 0: The total amount of wall time = 285.062875 Test 066 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_csawmgt_debug Checking test 067 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.282715 + 0: The total amount of wall time = 320.609433 Test 067 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ugwpv1_debug Checking test 068 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.091733 + 0: The total amount of wall time = 160.015530 Test 068 control_ugwpv1_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_ras_debug Checking test 069 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.633938 + 0: The total amount of wall time = 153.691179 Test 069 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_noahmp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_noahmp_debug Checking test 070 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.788875 + 0: The total amount of wall time = 147.346101 Test 070 control_noahmp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_diag_debug Checking test 071 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.728130 + 0: The total amount of wall time = 157.561394 Test 071 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_thompson_debug Checking test 072 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.649689 + 0: The total amount of wall time = 175.910301 Test 072 control_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_thompson_no_aero_debug Checking test 073 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.993218 + 0: The total amount of wall time = 169.487058 Test 073 control_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_thompson_extdiag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_thompson_extdiag_debug Checking test 074 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.443349 + 0: The total amount of wall time = 183.649441 Test 074 control_thompson_extdiag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/regional_control_debug Checking test 075 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2375,13 +2377,13 @@ Checking test 075 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 255.369898 + 0: The total amount of wall time = 258.825172 Test 075 regional_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_gsd_debug Checking test 076 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2446,13 +2448,13 @@ Checking test 076 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.890068 + 0: The total amount of wall time = 252.130751 Test 076 fv3_gsd_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_gsd_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_gsd_diag_debug Checking test 077 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2479,13 +2481,13 @@ Checking test 077 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 337.022571 + 0: The total amount of wall time = 339.713779 Test 077 fv3_gsd_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_rrfs_v1beta_debug Checking test 078 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2550,13 +2552,13 @@ Checking test 078 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.927496 + 0: The total amount of wall time = 200.173023 Test 078 fv3_rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_rrfs_v1alpha_debug Checking test 079 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2621,13 +2623,13 @@ Checking test 079 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.202427 + 0: The total amount of wall time = 200.801878 Test 079 fv3_rrfs_v1alpha_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_HAFS_v0_hwrf_thompson_debug Checking test 080 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2692,13 +2694,13 @@ Checking test 080 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 211.233182 + 0: The total amount of wall time = 213.618732 Test 080 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2713,86 +2715,150 @@ Checking test 081 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 376.608226 + 0: The total amount of wall time = 379.879421 Test 081 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/hafs_regional_atm +Checking test 082 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + + 0: The total amount of wall time = 258.580003 + +Test 082 hafs_regional_atm PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/hafs_regional_atm_ocn +Checking test 083 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 391.375953 + +Test 083 hafs_regional_atm_ocn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/hafs_regional_docn +Checking test 084 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 342.524887 + +Test 084 hafs_regional_docn PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/hafs_regional_docn_oisst +Checking test 085 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 328.395055 + +Test 085 hafs_regional_docn_oisst PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/hafs_regional_datm_cdeps +Checking test 086 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 1073.932478 + +Test 086 hafs_regional_datm_cdeps PASS + + baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_control_cfsr -Checking test 082 datm_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_control_cfsr +Checking test 087 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 129.846297 + 0: The total amount of wall time = 99.101326 -Test 082 datm_control_cfsr PASS +Test 087 datm_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_restart_cfsr -Checking test 083 datm_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_restart_cfsr +Checking test 088 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 56.529647 + 0: The total amount of wall time = 87.400738 -Test 083 datm_restart_cfsr PASS +Test 088 datm_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_control_gefs -Checking test 084 datm_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_control_gefs +Checking test 089 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 98.160741 + 0: The total amount of wall time = 93.165460 -Test 084 datm_control_gefs PASS +Test 089 datm_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_control_iau_gefs -Checking test 085 datm_control_iau_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_control_iau_gefs +Checking test 090 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.819035 + 0: The total amount of wall time = 95.147815 -Test 085 datm_control_iau_gefs PASS +Test 090 datm_control_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_bulk_cfsr -Checking test 086 datm_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_bulk_cfsr +Checking test 091 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 126.219534 + 0: The total amount of wall time = 95.967717 -Test 086 datm_bulk_cfsr PASS +Test 091 datm_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_bulk_gefs -Checking test 087 datm_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_bulk_gefs +Checking test 092 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 115.968103 + 0: The total amount of wall time = 92.511780 -Test 087 datm_bulk_gefs PASS +Test 092 datm_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_mx025_gefs -Checking test 088 datm_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_mx025_gefs +Checking test 093 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2800,86 +2866,86 @@ Checking test 088 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 378.143756 + 0: The total amount of wall time = 376.860751 -Test 088 datm_mx025_gefs PASS +Test 093 datm_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_debug_cfsr -Checking test 089 datm_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_debug_cfsr +Checking test 094 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 219.517585 + 0: The total amount of wall time = 220.251286 -Test 089 datm_debug_cfsr PASS +Test 094 datm_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_control_cfsr -Checking test 090 datm_cdeps_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_control_cfsr +Checking test 095 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.414042 + 0: The total amount of wall time = 148.777587 -Test 090 datm_cdeps_control_cfsr PASS +Test 095 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_restart_cfsr -Checking test 091 datm_cdeps_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_restart_cfsr +Checking test 096 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 84.652198 + 0: The total amount of wall time = 84.298213 -Test 091 datm_cdeps_restart_cfsr PASS +Test 096 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_control_gefs -Checking test 092 datm_cdeps_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_control_gefs +Checking test 097 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.748019 + 0: The total amount of wall time = 176.087541 -Test 092 datm_cdeps_control_gefs PASS +Test 097 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_bulk_cfsr -Checking test 093 datm_cdeps_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_bulk_cfsr +Checking test 098 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.028852 + 0: The total amount of wall time = 148.301193 -Test 093 datm_cdeps_bulk_cfsr PASS +Test 098 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_bulk_gefs -Checking test 094 datm_cdeps_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_bulk_gefs +Checking test 099 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 172.992092 + 0: The total amount of wall time = 145.035383 -Test 094 datm_cdeps_bulk_gefs PASS +Test 099 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_mx025_cfsr -Checking test 095 datm_cdeps_mx025_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_mx025_cfsr +Checking test 100 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2887,14 +2953,14 @@ Checking test 095 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 331.766305 + 0: The total amount of wall time = 352.907431 -Test 095 datm_cdeps_mx025_cfsr PASS +Test 100 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_mx025_gefs -Checking test 096 datm_cdeps_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_mx025_gefs +Checking test 101 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2902,36 +2968,36 @@ Checking test 096 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 359.634747 + 0: The total amount of wall time = 362.653443 -Test 096 datm_cdeps_mx025_gefs PASS +Test 101 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_multiple_files_cfsr -Checking test 097 datm_cdeps_multiple_files_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_multiple_files_cfsr +Checking test 102 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.301567 + 0: The total amount of wall time = 179.666554 -Test 097 datm_cdeps_multiple_files_cfsr PASS +Test 102 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/datm_cdeps_debug_cfsr -Checking test 098 datm_cdeps_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/datm_cdeps_debug_cfsr +Checking test 103 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 360.410113 + 0: The total amount of wall time = 361.061530 -Test 098 datm_cdeps_debug_cfsr PASS +Test 103 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_atmwav -Checking test 099 control_atmwav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_atmwav +Checking test 104 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2974,14 +3040,14 @@ Checking test 099 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 141.440469 + 0: The total amount of wall time = 175.707594 -Test 099 control_atmwav PASS +Test 104 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_4732/control_c384gdas_wav -Checking test 100 control_c384gdas_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_5601/control_c384gdas_wav +Checking test 105 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3026,11 +3092,11 @@ Checking test 100 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 832.315337 + 0: The total amount of wall time = 844.444775 -Test 100 control_c384gdas_wav PASS +Test 105 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 13:13:07 EDT 2021 -Elapsed time: 01h:01m:49s. Have a nice day! +Wed Aug 4 12:09:42 EDT 2021 +Elapsed time: 01h:21m:04s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 1642fba5e3..c860e8b728 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,17 +1,17 @@ -Thu Jul 29 16:27:48 UTC 2021 +Wed Aug 4 15:17:03 UTC 2021 Start Regression test -Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 181 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 88 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 178 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 169 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 172 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 88 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 006 elapsed time 196 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 007 elapsed time 103 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 008 elapsed time 102 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 91 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 852.817738 + 0: The total amount of wall time = 834.510554 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,13 +103,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.376946 + 0: The total amount of wall time = 414.424756 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -120,13 +120,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 653.563622 + 0: The total amount of wall time = 654.033186 Test 003 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -137,13 +137,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1486.575867 + 0: The total amount of wall time = 1438.830602 Test 004 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -154,13 +154,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 955.307267 + 0: The total amount of wall time = 872.683744 Test 005 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -171,13 +171,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1095.578069 + 0: The total amount of wall time = 1012.196011 Test 006 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -188,13 +188,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1064.620388 + 0: The total amount of wall time = 993.267052 Test 007 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -205,13 +205,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1020.566106 + 0: The total amount of wall time = 959.877068 Test 008 control_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -222,13 +222,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 852.593607 + 0: The total amount of wall time = 827.869650 Test 009 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -317,13 +317,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1123.195962 + 0: The total amount of wall time = 1080.119589 Test 010 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -388,13 +388,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.361647 + 0: The total amount of wall time = 387.191663 Test 011 fv3_rrfs_v1alpha PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -459,13 +459,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.248073 + 0: The total amount of wall time = 378.174643 Test 012 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -530,13 +530,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 643.977512 + 0: The total amount of wall time = 617.495887 Test 013 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -551,39 +551,39 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 437.675086 + 0: The total amount of wall time = 440.695647 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_debug Checking test 015 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 101.296217 + 0: The total amount of wall time = 95.876760 Test 015 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_diag_debug Checking test 016 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.285767 + 0: The total amount of wall time = 125.176502 Test 016 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/regional_control_debug Checking test 017 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -591,13 +591,13 @@ Checking test 017 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 118.184262 + 0: The total amount of wall time = 120.274440 Test 017 regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_rrfs_v1alpha_debug Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -662,13 +662,13 @@ Checking test 018 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.255122 + 0: The total amount of wall time = 115.330153 Test 018 fv3_rrfs_v1alpha_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_rrfs_v1beta_debug Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -733,13 +733,13 @@ Checking test 019 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 116.248566 + 0: The total amount of wall time = 115.856064 Test 019 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_gsd_debug Checking test 020 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -804,13 +804,13 @@ Checking test 020 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 147.062378 + 0: The total amount of wall time = 144.686969 Test 020 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/fv3_gsd_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_gsd_diag_debug Checking test 021 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -837,104 +837,104 @@ Checking test 021 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 400.543856 + 0: The total amount of wall time = 391.353025 Test 021 fv3_gsd_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_thompson_debug Checking test 022 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.195156 + 0: The total amount of wall time = 115.886649 Test 022 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_thompson_no_aero_debug Checking test 023 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.206911 + 0: The total amount of wall time = 109.079479 Test 023 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_thompson_extdiag_debug Checking test 024 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 131.063922 + 0: The total amount of wall time = 133.089981 Test 024 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_rrtmgp_debug Checking test 025 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.690148 + 0: The total amount of wall time = 106.961863 Test 025 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_ugwpv1_debug Checking test 026 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 104.705115 + 0: The total amount of wall time = 105.533444 Test 026 control_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_ras_debug Checking test 027 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 103.976891 + 0: The total amount of wall time = 100.134961 Test 027 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/control_noahmp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/control_noahmp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/control_noahmp_debug Checking test 028 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.198090 + 0: The total amount of wall time = 98.695661 Test 028 control_noahmp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_HAFS_v0_hwrf_thompson_debug Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -999,13 +999,13 @@ Checking test 029 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 133.672648 + 0: The total amount of wall time = 131.521724 Test 029 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1020,13 +1020,13 @@ Checking test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 232.646456 + 0: The total amount of wall time = 230.924635 Test 030 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/cpld_control Checking test 031 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1076,13 +1076,13 @@ Checking test 031 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 638.940817 + 0: The total amount of wall time = 615.282766 Test 031 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/GNU/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_10075/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_1595/cpld_debug Checking test 032 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1132,11 +1132,11 @@ Checking test 032 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 332.560174 + 0: The total amount of wall time = 336.930745 Test 032 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 17:29:26 UTC 2021 -Elapsed time: 01h:01m:39s. Have a nice day! +Wed Aug 4 15:53:38 UTC 2021 +Elapsed time: 00h:36m:36s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index dfa40318b5..b39abc7bc6 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,27 +1,29 @@ -Thu Jul 29 17:00:10 UTC 2021 +Wed Aug 4 18:46:39 UTC 2021 Start Regression test -Compile 001 elapsed time 692 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 809 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 175 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 695 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 556 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 539 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 477 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 167 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 375 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 157 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 423 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 94 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 178 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 90 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 536 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 018 elapsed time 549 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1026 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 982 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 429 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 1288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1021 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 871 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 834 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1044 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 457 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 712 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 498 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 784 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 639 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 222 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 461 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 563 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 202 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 622 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 020 elapsed time 690 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -71,13 +73,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.370707 + 0: The total amount of wall time = 214.072036 Test 001 cpld_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -127,13 +129,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 49.362752 + 0: The total amount of wall time = 53.878623 Test 002 cpld_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -183,13 +185,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 93.041751 + 0: The total amount of wall time = 336.105818 Test 003 cpld_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_decomp Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -239,13 +241,13 @@ Checking test 004 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 83.643200 + 0: The total amount of wall time = 329.629135 Test 004 cpld_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_ca Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -295,13 +297,13 @@ Checking test 005 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 84.613377 + 0: The total amount of wall time = 184.148437 Test 005 cpld_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_control_c192 Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -351,13 +353,13 @@ Checking test 006 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 369.965376 + 0: The total amount of wall time = 606.843401 Test 006 cpld_control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_restart_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_restart_c192 Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -407,13 +409,13 @@ Checking test 007 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 276.561065 + 0: The total amount of wall time = 546.890012 Test 007 cpld_restart_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_control_c384 Checking test 008 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -466,13 +468,13 @@ Checking test 008 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 778.912569 + 0: The total amount of wall time = 1027.359558 Test 008 cpld_control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_restart_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_restart_c384 Checking test 009 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -525,13 +527,13 @@ Checking test 009 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 658.219711 + 0: The total amount of wall time = 481.550184 Test 009 cpld_restart_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_bmark_v16 Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -574,13 +576,13 @@ Checking test 010 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 600.254014 + 0: The total amount of wall time = 730.925871 Test 010 cpld_bmark_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_restart_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_restart_bmark_v16 Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -623,13 +625,13 @@ Checking test 011 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 363.382040 + 0: The total amount of wall time = 444.889593 Test 011 cpld_restart_bmark_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_bmark_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_bmark_v16_nsst Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -672,13 +674,13 @@ Checking test 012 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 596.494492 + 0: The total amount of wall time = 727.966633 Test 012 cpld_bmark_v16_nsst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_bmark_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_bmark_wave_v16 Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -723,13 +725,13 @@ Checking test 013 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 636.886880 + 0: The total amount of wall time = 883.824617 Test 013 cpld_bmark_wave_v16 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16_p7b -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_bmark_wave_v16_p7b +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_bmark_wave_v16_p7b Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -774,13 +776,13 @@ Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 672.741771 + 0: The total amount of wall time = 1433.955487 Test 014 cpld_bmark_wave_v16_p7b PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_control_wave Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -833,13 +835,13 @@ Checking test 015 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 97.902634 + 0: The total amount of wall time = 520.827202 Test 015 cpld_control_wave PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/cpld_debug Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -889,13 +891,13 @@ Checking test 016 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 289.858305 + 0: The total amount of wall time = 309.398421 Test 016 cpld_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -942,13 +944,13 @@ Checking test 017 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.119972 + 0: The total amount of wall time = 228.466689 Test 017 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_decomp Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -991,13 +993,13 @@ Checking test 018 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 152.380191 + 0: The total amount of wall time = 179.783504 Test 018 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_2threads Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1040,13 +1042,13 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.229408 + 0: The total amount of wall time = 197.640136 Test 019 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_restart Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1085,13 +1087,13 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 62.127478 + 0: The total amount of wall time = 82.533162 Test 020 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_fhzero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_fhzero Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1134,13 +1136,13 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 150.675448 + 0: The total amount of wall time = 170.648346 Test 021 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1167,13 +1169,13 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 113.846274 + 0: The total amount of wall time = 151.435132 Test 022 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1184,13 +1186,13 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.160916 + 0: The total amount of wall time = 183.170968 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1201,13 +1203,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 461.249050 + 0: The total amount of wall time = 724.595507 Test 024 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1218,13 +1220,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 820.138490 + 0: The total amount of wall time = 1357.462656 Test 025 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1267,13 +1269,13 @@ Checking test 026 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 635.216857 + 0: The total amount of wall time = 1100.827212 Test 026 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1284,26 +1286,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 105.039853 + 0: The total amount of wall time = 131.097541 Test 027 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 56.253265 + 0: The total amount of wall time = 137.112249 Test 028 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ca Checking test 029 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1314,13 +1316,13 @@ Checking test 029 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.910031 + 0: The total amount of wall time = 116.719463 Test 029 control_ca PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1331,13 +1333,13 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.783305 + 0: The total amount of wall time = 117.120279 Test 030 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_lheatstrg Checking test 031 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1348,13 +1350,13 @@ Checking test 031 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 147.473174 + 0: The total amount of wall time = 197.890421 Test 031 control_lheatstrg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lseaspray -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_lseaspray +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_lseaspray Checking test 032 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1365,13 +1367,13 @@ Checking test 032 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 156.209975 + 0: The total amount of wall time = 188.505123 Test 032 control_lseaspray PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_merra2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_merra2 Checking test 033 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1382,13 +1384,13 @@ Checking test 033 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 173.208902 + 0: The total amount of wall time = 267.237076 Test 033 control_merra2 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_rrtmgp Checking test 034 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1399,13 +1401,13 @@ Checking test 034 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.052258 + 0: The total amount of wall time = 475.859160 Test 034 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_csawmg Checking test 035 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1416,13 +1418,13 @@ Checking test 035 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 255.845881 + 0: The total amount of wall time = 485.660122 Test 035 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_csawmgt Checking test 036 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1433,13 +1435,13 @@ Checking test 036 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 312.281090 + 0: The total amount of wall time = 543.146024 Test 036 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_flake Checking test 037 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1450,13 +1452,13 @@ Checking test 037 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.169187 + 0: The total amount of wall time = 547.517272 Test 037 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ugwpv1 Checking test 038 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1467,13 +1469,13 @@ Checking test 038 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.359485 + 0: The total amount of wall time = 365.103165 Test 038 control_ugwpv1 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ras Checking test 039 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1484,13 +1486,13 @@ Checking test 039 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 180.188890 + 0: The total amount of wall time = 422.323871 Test 039 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_thompson Checking test 040 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1501,13 +1503,13 @@ Checking test 040 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.552354 + 0: The total amount of wall time = 271.936681 Test 040 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_thompson_no_aero Checking test 041 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1518,13 +1520,13 @@ Checking test 041 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.456487 + 0: The total amount of wall time = 279.227658 Test 041 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_noahmp Checking test 042 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1535,13 +1537,13 @@ Checking test 042 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.385758 + 0: The total amount of wall time = 223.453606 Test 042 control_noahmp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_control Checking test 043 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1549,25 +1551,25 @@ Checking test 043 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 283.486109 + 0: The total amount of wall time = 323.258356 Test 043 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_restart Checking test 044 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 154.446288 + 0: The total amount of wall time = 336.565283 Test 044 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_quilt Checking test 045 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1578,13 +1580,13 @@ Checking test 045 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 290.086324 + 0: The total amount of wall time = 298.378158 Test 045 regional_quilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_quilt_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_quilt_2threads Checking test 046 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1595,13 +1597,13 @@ Checking test 046 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 208.527851 + 0: The total amount of wall time = 228.406712 Test 046 regional_quilt_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_quilt_hafs Checking test 047 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1610,13 +1612,13 @@ Checking test 047 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 289.185112 + 0: The total amount of wall time = 313.475128 Test 047 regional_quilt_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_quilt_netcdf_parallel Checking test 048 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1624,13 +1626,13 @@ Checking test 048 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 296.272740 + 0: The total amount of wall time = 317.119626 Test 048 regional_quilt_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_quilt_RRTMGP Checking test 049 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1641,13 +1643,13 @@ Checking test 049 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 386.415185 + 0: The total amount of wall time = 519.799510 Test 049 regional_quilt_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_gsd Checking test 050 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1736,13 +1738,13 @@ Checking test 050 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.187589 + 0: The total amount of wall time = 270.982497 Test 050 fv3_gsd PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_rrfs_v1alpha Checking test 051 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1807,13 +1809,13 @@ Checking test 051 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.218201 + 0: The total amount of wall time = 116.563706 Test 051 fv3_rrfs_v1alpha PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_rap Checking test 052 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1878,13 +1880,13 @@ Checking test 052 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 84.458463 + 0: The total amount of wall time = 92.249012 Test 052 fv3_rap PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_hrrr Checking test 053 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1949,13 +1951,13 @@ Checking test 053 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 83.679638 + 0: The total amount of wall time = 113.833772 Test 053 fv3_hrrr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_rrfs_v1beta Checking test 054 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2020,13 +2022,13 @@ Checking test 054 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 85.878946 + 0: The total amount of wall time = 109.477563 Test 054 fv3_rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_HAFS_v0_hwrf_thompson Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2091,13 +2093,13 @@ Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 142.454203 + 0: The total amount of wall time = 214.405266 Test 055 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_esg_HAFS_v0_hwrf_thompson Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2112,39 +2114,39 @@ Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 294.613755 + 0: The total amount of wall time = 345.871804 Test 056 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_debug Checking test 057 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 139.424294 + 0: The total amount of wall time = 158.398938 Test 057 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_2threads_debug Checking test 058 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.771240 + 0: The total amount of wall time = 223.620948 Test 058 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_CubedSphereGrid_debug Checking test 059 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2171,221 +2173,221 @@ Checking test 059 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.328346 + 0: The total amount of wall time = 368.927473 Test 059 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_wrtGauss_netcdf_parallel_debug Checking test 060 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 144.513009 + 0: The total amount of wall time = 152.619134 Test 060 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_stochy_debug Checking test 061 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.577705 + 0: The total amount of wall time = 185.313471 Test 061 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ca_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ca_debug Checking test 062 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.652391 + 0: The total amount of wall time = 237.411797 Test 062 control_ca_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_lndp_debug Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.185360 + 0: The total amount of wall time = 168.453880 Test 063 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_lheatstrg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_lheatstrg_debug Checking test 064 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.077504 + 0: The total amount of wall time = 175.052528 Test 064 control_lheatstrg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_merra2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_merra2_debug Checking test 065 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 196.846143 + 0: The total amount of wall time = 231.012092 Test 065 control_merra2_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_rrtmgp_debug Checking test 066 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.682437 + 0: The total amount of wall time = 367.266924 Test 066 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_csawmg_debug Checking test 067 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 229.899677 + 0: The total amount of wall time = 253.688979 Test 067 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_csawmgt_debug Checking test 068 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 262.830479 + 0: The total amount of wall time = 267.473936 Test 068 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ugwpv1_debug Checking test 069 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.640559 + 0: The total amount of wall time = 202.644720 Test 069 control_ugwpv1_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.470412 + 0: The total amount of wall time = 171.957879 Test 070 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_noahmp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_noahmp_debug Checking test 071 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 144.311700 + 0: The total amount of wall time = 166.018056 Test 071 control_noahmp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_diag_debug Checking test 072 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.228610 + 0: The total amount of wall time = 194.290555 Test 072 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.615141 + 0: The total amount of wall time = 181.070111 Test 073 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.851305 + 0: The total amount of wall time = 171.473050 Test 074 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.763847 + 0: The total amount of wall time = 194.934815 Test 075 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/regional_control_debug Checking test 076 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2393,13 +2395,13 @@ Checking test 076 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 240.815316 + 0: The total amount of wall time = 243.719987 Test 076 regional_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_gsd_debug Checking test 077 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2464,13 +2466,13 @@ Checking test 077 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 245.436050 + 0: The total amount of wall time = 290.448542 Test 077 fv3_gsd_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_gsd_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_gsd_diag_debug Checking test 078 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2497,13 +2499,13 @@ Checking test 078 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 534.779759 + 0: The total amount of wall time = 1467.175095 Test 078 fv3_gsd_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_rrfs_v1beta_debug Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2568,13 +2570,13 @@ Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.147643 + 0: The total amount of wall time = 279.028846 Test 079 fv3_rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_rrfs_v1alpha_debug Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2639,13 +2641,13 @@ Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.340817 + 0: The total amount of wall time = 217.263181 Test 080 fv3_rrfs_v1alpha_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_HAFS_v0_hwrf_thompson_debug Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2710,13 +2712,13 @@ Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 223.104539 + 0: The total amount of wall time = 294.508673 Test 081 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2731,86 +2733,150 @@ Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 435.700299 + 0: The total amount of wall time = 457.682344 Test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/hafs_regional_atm +Checking test 083 hafs_regional_atm results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 433.584259 + +Test 083 hafs_regional_atm PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/hafs_regional_atm_ocn +Checking test 084 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 412.567565 + +Test 084 hafs_regional_atm_ocn PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/hafs_regional_docn +Checking test 085 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 361.119420 + +Test 085 hafs_regional_docn PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/hafs_regional_docn_oisst +Checking test 086 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 341.812962 + +Test 086 hafs_regional_docn_oisst PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/hafs_regional_datm_cdeps +Checking test 087 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 1178.108130 + +Test 087 hafs_regional_datm_cdeps PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_control_cfsr -Checking test 083 datm_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_control_cfsr +Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 105.173888 + 0: The total amount of wall time = 161.513127 -Test 083 datm_control_cfsr PASS +Test 088 datm_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_restart_cfsr -Checking test 084 datm_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_restart_cfsr +Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 68.455727 + 0: The total amount of wall time = 114.485053 -Test 084 datm_restart_cfsr PASS +Test 089 datm_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_control_gefs -Checking test 085 datm_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_control_gefs +Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 179.643767 + 0: The total amount of wall time = 179.937211 -Test 085 datm_control_gefs PASS +Test 090 datm_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_control_iau_gefs -Checking test 086 datm_control_iau_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_control_iau_gefs +Checking test 091 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 177.669099 + 0: The total amount of wall time = 191.718595 -Test 086 datm_control_iau_gefs PASS +Test 091 datm_control_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_bulk_cfsr -Checking test 087 datm_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_bulk_cfsr +Checking test 092 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 113.473557 + 0: The total amount of wall time = 117.359816 -Test 087 datm_bulk_cfsr PASS +Test 092 datm_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_bulk_gefs -Checking test 088 datm_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_bulk_gefs +Checking test 093 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 112.395410 + 0: The total amount of wall time = 130.666131 -Test 088 datm_bulk_gefs PASS +Test 093 datm_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_mx025_cfsr -Checking test 089 datm_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_mx025_cfsr +Checking test 094 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2818,14 +2884,14 @@ Checking test 089 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 308.054606 + 0: The total amount of wall time = 413.499973 -Test 089 datm_mx025_cfsr PASS +Test 094 datm_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_mx025_gefs -Checking test 090 datm_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_mx025_gefs +Checking test 095 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2833,86 +2899,86 @@ Checking test 090 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 311.760272 + 0: The total amount of wall time = 459.692143 -Test 090 datm_mx025_gefs PASS +Test 095 datm_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_debug_cfsr -Checking test 091 datm_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_debug_cfsr +Checking test 096 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 255.480765 + 0: The total amount of wall time = 484.402639 -Test 091 datm_debug_cfsr PASS +Test 096 datm_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_control_cfsr -Checking test 092 datm_cdeps_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_control_cfsr +Checking test 097 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 164.356774 + 0: The total amount of wall time = 161.896228 -Test 092 datm_cdeps_control_cfsr PASS +Test 097 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_restart_cfsr -Checking test 093 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_restart_cfsr +Checking test 098 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.118624 + 0: The total amount of wall time = 145.991541 -Test 093 datm_cdeps_restart_cfsr PASS +Test 098 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_control_gefs -Checking test 094 datm_cdeps_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_control_gefs +Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.769503 + 0: The total amount of wall time = 285.805172 -Test 094 datm_cdeps_control_gefs PASS +Test 099 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_bulk_cfsr -Checking test 095 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_bulk_cfsr +Checking test 100 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.015964 + 0: The total amount of wall time = 197.282255 -Test 095 datm_cdeps_bulk_cfsr PASS +Test 100 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_bulk_gefs -Checking test 096 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_bulk_gefs +Checking test 101 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.979040 + 0: The total amount of wall time = 164.446927 -Test 096 datm_cdeps_bulk_gefs PASS +Test 101 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_mx025_cfsr -Checking test 097 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_mx025_cfsr +Checking test 102 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2920,14 +2986,14 @@ Checking test 097 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 321.056449 + 0: The total amount of wall time = 374.176308 -Test 097 datm_cdeps_mx025_cfsr PASS +Test 102 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_mx025_gefs -Checking test 098 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_mx025_gefs +Checking test 103 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2935,36 +3001,36 @@ Checking test 098 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 362.583289 + 0: The total amount of wall time = 554.391427 -Test 098 datm_cdeps_mx025_gefs PASS +Test 103 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_multiple_files_cfsr -Checking test 099 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_multiple_files_cfsr +Checking test 104 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.723289 + 0: The total amount of wall time = 148.930557 -Test 099 datm_cdeps_multiple_files_cfsr PASS +Test 104 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/datm_cdeps_debug_cfsr -Checking test 100 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/datm_cdeps_debug_cfsr +Checking test 105 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 435.869862 + 0: The total amount of wall time = 474.298284 -Test 100 datm_cdeps_debug_cfsr PASS +Test 105 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_atmwav -Checking test 101 control_atmwav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_atmwav +Checking test 106 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3007,14 +3073,14 @@ Checking test 101 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 139.839582 + 0: The total amount of wall time = 242.584131 -Test 101 control_atmwav PASS +Test 106 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_c384gdas_wav -Checking test 102 control_c384gdas_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_c384gdas_wav +Checking test 107 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3059,14 +3125,14 @@ Checking test 102 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 881.258701 + 0: The total amount of wall time = 674.308328 -Test 102 control_c384gdas_wav PASS +Test 107 control_c384gdas_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30373/control_atm_aerosols -Checking test 103 control_atm_aerosols results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25448/control_atm_aerosols +Checking test 108 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3112,11 +3178,11 @@ Checking test 103 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 336.633735 + 0: The total amount of wall time = 451.439855 -Test 103 control_atm_aerosols PASS +Test 108 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 18:17:44 UTC 2021 -Elapsed time: 01h:17m:35s. Have a nice day! +Wed Aug 4 20:03:17 UTC 2021 +Elapsed time: 01h:16m:38s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index e5f0e7fe2a..4a0a4e5c49 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,28 @@ -Thu Jul 29 17:23:35 GMT 2021 +Thu Aug 5 03:01:30 GMT 2021 Start Regression test -Compile 001 elapsed time 2522 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 2518 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 003 elapsed time 275 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 2297 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 2430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 2296 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 007 elapsed time 2319 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 008 elapsed time 2347 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 009 elapsed time 205 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 207 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 263 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 126 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 271 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 016 elapsed time 133 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 2290 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 2501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2544 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 264 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 2326 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 2400 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 2312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 2323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 2367 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 233 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 232 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 232 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 230 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 2373 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 2383 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 015 elapsed time 282 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 016 elapsed time 153 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 280 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 018 elapsed time 153 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 2353 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +72,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 124.733694 + 0: The total amount of wall time = 139.797830 Test 001 cpld_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +128,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 70.062963 + 0: The total amount of wall time = 80.900021 Test 002 cpld_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +184,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 539.894654 + 0: The total amount of wall time = 638.263531 Test 003 cpld_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +240,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 122.977301 + 0: The total amount of wall time = 136.793498 Test 004 cpld_ca PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +296,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 524.593605 + 0: The total amount of wall time = 563.500640 Test 005 cpld_control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_restart_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +352,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 363.203097 + 0: The total amount of wall time = 382.331559 Test 006 cpld_restart_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +411,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 622.543661 + 0: The total amount of wall time = 660.704180 Test 007 cpld_control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_restart_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +470,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 339.067123 + 0: The total amount of wall time = 380.075789 Test 008 cpld_restart_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +519,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 822.327599 + 0: The total amount of wall time = 873.474600 Test 009 cpld_bmark_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_restart_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +568,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 452.412887 + 0: The total amount of wall time = 504.016269 Test 010 cpld_restart_bmark_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_bmark_v16_nsst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +617,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 797.604005 + 0: The total amount of wall time = 873.767224 Test 011 cpld_bmark_v16_nsst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_bmark_wave_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +668,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1056.008515 + 0: The total amount of wall time = 1076.896649 Test 012 cpld_bmark_wave_v16 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16_p7b -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_bmark_wave_v16_p7b +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_bmark_wave_v16_p7b Checking test 013 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +719,13 @@ Checking test 013 cpld_bmark_wave_v16_p7b results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1123.533401 + 0: The total amount of wall time = 1136.067273 Test 013 cpld_bmark_wave_v16_p7b PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +778,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 990.301366 + 0: The total amount of wall time = 994.961605 Test 014 cpld_control_wave PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/cpld_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +834,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 360.209331 + 0: The total amount of wall time = 377.393271 Test 015 cpld_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -885,13 +887,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 221.222518 + 0: The total amount of wall time = 242.181959 Test 016 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -934,13 +936,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.774822 + 0: The total amount of wall time = 239.321357 Test 017 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -983,13 +985,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 751.621641 + 0: The total amount of wall time = 853.920229 Test 018 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1028,13 +1030,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.528457 + 0: The total amount of wall time = 94.234895 Test 019 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1077,13 +1079,13 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 216.260971 + 0: The total amount of wall time = 228.599977 Test 020 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1110,13 +1112,13 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 160.202159 + 0: The total amount of wall time = 199.809717 Test 021 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1127,13 +1129,13 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 248.525721 + 0: The total amount of wall time = 289.841301 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1144,13 +1146,13 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 656.397533 + 0: The total amount of wall time = 713.242299 Test 023 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1161,13 +1163,13 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 862.798865 + 0: The total amount of wall time = 940.501791 Test 024 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1210,13 +1212,13 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 757.479591 + 0: The total amount of wall time = 795.003919 Test 025 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1227,26 +1229,26 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 146.182002 + 0: The total amount of wall time = 162.461414 Test 026 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.640876 + 0: The total amount of wall time = 81.837541 Test 027 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ca Checking test 028 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1257,13 +1259,13 @@ Checking test 028 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 142.585542 + 0: The total amount of wall time = 158.910651 Test 028 control_ca PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1274,13 +1276,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 148.047725 + 0: The total amount of wall time = 174.980849 Test 029 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_lheatstrg Checking test 030 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1291,13 +1293,13 @@ Checking test 030 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.541292 + 0: The total amount of wall time = 237.548620 Test 030 control_lheatstrg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lseaspray -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_lseaspray +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_lseaspray Checking test 031 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1308,13 +1310,13 @@ Checking test 031 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 226.533722 + 0: The total amount of wall time = 241.289734 Test 031 control_lseaspray PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_merra2 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_merra2 Checking test 032 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1325,13 +1327,13 @@ Checking test 032 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 240.325577 + 0: The total amount of wall time = 269.909957 Test 032 control_merra2 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_rrtmgp Checking test 033 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1342,13 +1344,13 @@ Checking test 033 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 276.103911 + 0: The total amount of wall time = 294.068974 Test 033 control_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_csawmgt Checking test 034 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1359,13 +1361,13 @@ Checking test 034 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 449.981091 + 0: The total amount of wall time = 490.564164 Test 034 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_flake Checking test 035 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1376,13 +1378,13 @@ Checking test 035 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.766854 + 0: The total amount of wall time = 320.672135 Test 035 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ugwpv1 Checking test 036 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1393,13 +1395,13 @@ Checking test 036 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 274.206650 + 0: The total amount of wall time = 288.145409 Test 036 control_ugwpv1 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ras Checking test 037 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1410,13 +1412,13 @@ Checking test 037 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 256.683927 + 0: The total amount of wall time = 275.922776 Test 037 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_thompson Checking test 038 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1427,13 +1429,13 @@ Checking test 038 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.759481 + 0: The total amount of wall time = 303.850970 Test 038 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_thompson_no_aero Checking test 039 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1444,13 +1446,13 @@ Checking test 039 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 279.592857 + 0: The total amount of wall time = 295.349730 Test 039 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_noahmp Checking test 040 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1461,13 +1463,13 @@ Checking test 040 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 250.847832 + 0: The total amount of wall time = 253.581164 Test 040 control_noahmp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_control Checking test 041 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1475,25 +1477,25 @@ Checking test 041 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 432.222329 + 0: The total amount of wall time = 477.502609 Test 041 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_restart Checking test 042 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 228.909388 + 0: The total amount of wall time = 250.956176 Test 042 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_quilt Checking test 043 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1504,13 +1506,13 @@ Checking test 043 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 413.458378 + 0: The total amount of wall time = 461.246436 Test 043 regional_quilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_quilt_hafs Checking test 044 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1519,27 +1521,27 @@ Checking test 044 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 411.307836 + 0: The total amount of wall time = 442.287138 Test 044 regional_quilt_hafs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_quilt_netcdf_parallel Checking test 045 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 423.039023 + 0: The total amount of wall time = 467.132922 Test 045 regional_quilt_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_quilt_RRTMGP Checking test 046 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1550,13 +1552,13 @@ Checking test 046 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 541.789593 + 0: The total amount of wall time = 572.021641 Test 046 regional_quilt_RRTMGP PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_gsd Checking test 047 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1645,13 +1647,13 @@ Checking test 047 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 296.616174 + 0: The total amount of wall time = 342.672197 Test 047 fv3_gsd PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_rrfs_v1alpha Checking test 048 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1716,13 +1718,13 @@ Checking test 048 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.285341 + 0: The total amount of wall time = 146.216726 Test 048 fv3_rrfs_v1alpha PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rap -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_rap +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_rap Checking test 049 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1787,13 +1789,13 @@ Checking test 049 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.625546 + 0: The total amount of wall time = 137.687978 Test 049 fv3_rap PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_hrrr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_hrrr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_hrrr Checking test 050 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1858,13 +1860,13 @@ Checking test 050 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.110022 + 0: The total amount of wall time = 141.063020 Test 050 fv3_hrrr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_rrfs_v1beta Checking test 051 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1929,13 +1931,13 @@ Checking test 051 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 137.619927 + 0: The total amount of wall time = 135.777636 Test 051 fv3_rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_HAFS_v0_hwrf_thompson Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2000,13 +2002,13 @@ Checking test 052 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 202.539772 + 0: The total amount of wall time = 198.497100 Test 052 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_esg_HAFS_v0_hwrf_thompson Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2021,39 +2023,39 @@ Checking test 053 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 365.976726 + 0: The total amount of wall time = 371.050439 Test 053 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_debug Checking test 054 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.564387 + 0: The total amount of wall time = 208.378402 Test 054 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_2threads_debug Checking test 055 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 366.316014 + 0: The total amount of wall time = 364.732551 Test 055 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_CubedSphereGrid_debug Checking test 056 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2080,221 +2082,221 @@ Checking test 056 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 204.321901 + 0: The total amount of wall time = 245.843046 Test 056 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_wrtGauss_netcdf_parallel_debug Checking test 057 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.131611 + 0: The total amount of wall time = 194.622722 Test 057 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_stochy_debug Checking test 058 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.133806 + 0: The total amount of wall time = 231.984274 Test 058 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ca_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ca_debug Checking test 059 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.030623 + 0: The total amount of wall time = 207.065205 Test 059 control_ca_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_lndp_debug Checking test 060 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.435863 + 0: The total amount of wall time = 207.143197 Test 060 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_lheatstrg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_lheatstrg_debug Checking test 061 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.017660 + 0: The total amount of wall time = 198.772818 Test 061 control_lheatstrg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_merra2_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_merra2_debug Checking test 062 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.797917 + 0: The total amount of wall time = 263.244534 Test 062 control_merra2_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_rrtmgp_debug Checking test 063 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 213.092398 + 0: The total amount of wall time = 222.599405 Test 063 control_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_csawmg_debug Checking test 064 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 309.607670 + 0: The total amount of wall time = 317.740854 Test 064 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_csawmgt_debug Checking test 065 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.600719 + 0: The total amount of wall time = 355.890305 Test 065 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ugwpv1_debug Checking test 066 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.499901 + 0: The total amount of wall time = 207.802162 Test 066 control_ugwpv1_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_ras_debug Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 197.596407 + 0: The total amount of wall time = 200.302838 Test 067 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_noahmp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_noahmp_debug Checking test 068 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.453082 + 0: The total amount of wall time = 204.469059 Test 068 control_noahmp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_diag_debug Checking test 069 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 201.770572 + 0: The total amount of wall time = 208.715606 Test 069 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_thompson_debug Checking test 070 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.909184 + 0: The total amount of wall time = 226.264071 Test 070 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_thompson_no_aero_debug Checking test 071 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.842947 + 0: The total amount of wall time = 218.415159 Test 071 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_thompson_extdiag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_thompson_extdiag_debug Checking test 072 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.227239 + 0: The total amount of wall time = 236.596712 Test 072 control_thompson_extdiag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/regional_control_debug Checking test 073 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2302,13 +2304,13 @@ Checking test 073 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 315.801787 + 0: The total amount of wall time = 320.971414 Test 073 regional_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_gsd_debug Checking test 074 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2373,13 +2375,13 @@ Checking test 074 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 319.787822 + 0: The total amount of wall time = 326.956147 Test 074 fv3_gsd_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_gsd_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_gsd_diag_debug Checking test 075 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2406,13 +2408,13 @@ Checking test 075 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 573.299270 + 0: The total amount of wall time = 653.711506 Test 075 fv3_gsd_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_rrfs_v1beta_debug Checking test 076 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2477,13 +2479,13 @@ Checking test 076 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 253.254730 + 0: The total amount of wall time = 264.747142 Test 076 fv3_rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_rrfs_v1alpha_debug Checking test 077 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2548,13 +2550,13 @@ Checking test 077 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 252.529940 + 0: The total amount of wall time = 257.342617 Test 077 fv3_rrfs_v1alpha_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_HAFS_v0_hwrf_thompson_debug Checking test 078 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2619,13 +2621,13 @@ Checking test 078 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 266.278882 + 0: The total amount of wall time = 270.509631 Test 078 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2640,86 +2642,150 @@ Checking test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 502.274375 + 0: The total amount of wall time = 510.428702 Test 079 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/hafs_regional_atm +Checking test 080 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 1209.213194 + +Test 080 hafs_regional_atm PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/hafs_regional_atm_ocn +Checking test 081 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 686.035346 + +Test 081 hafs_regional_atm_ocn PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/hafs_regional_docn +Checking test 082 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 587.289195 + +Test 082 hafs_regional_docn PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/hafs_regional_docn_oisst +Checking test 083 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 595.476824 + +Test 083 hafs_regional_docn_oisst PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/hafs_regional_datm_cdeps +Checking test 084 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 1391.276081 + +Test 084 hafs_regional_datm_cdeps PASS + + baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_control_cfsr -Checking test 080 datm_control_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_control_cfsr +Checking test 085 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 128.979615 + 0: The total amount of wall time = 143.996052 -Test 080 datm_control_cfsr PASS +Test 085 datm_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_restart_cfsr -Checking test 081 datm_restart_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_restart_cfsr +Checking test 086 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 81.680289 + 0: The total amount of wall time = 87.345493 -Test 081 datm_restart_cfsr PASS +Test 086 datm_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_control_gefs -Checking test 082 datm_control_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_control_gefs +Checking test 087 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.810359 + 0: The total amount of wall time = 130.333186 -Test 082 datm_control_gefs PASS +Test 087 datm_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_control_iau_gefs -Checking test 083 datm_control_iau_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_control_iau_gefs +Checking test 088 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 124.680536 + 0: The total amount of wall time = 134.487583 -Test 083 datm_control_iau_gefs PASS +Test 088 datm_control_iau_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_bulk_cfsr -Checking test 084 datm_bulk_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_bulk_cfsr +Checking test 089 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 122.642523 + 0: The total amount of wall time = 132.756312 -Test 084 datm_bulk_cfsr PASS +Test 089 datm_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_bulk_gefs -Checking test 085 datm_bulk_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_bulk_gefs +Checking test 090 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 118.543022 + 0: The total amount of wall time = 129.939602 -Test 085 datm_bulk_gefs PASS +Test 090 datm_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_mx025_cfsr -Checking test 086 datm_mx025_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_mx025_cfsr +Checking test 091 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2727,14 +2793,14 @@ Checking test 086 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 422.658754 + 0: The total amount of wall time = 425.414828 -Test 086 datm_mx025_cfsr PASS +Test 091 datm_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_mx025_gefs -Checking test 087 datm_mx025_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_mx025_gefs +Checking test 092 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2742,86 +2808,86 @@ Checking test 087 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 414.336131 + 0: The total amount of wall time = 416.768886 -Test 087 datm_mx025_gefs PASS +Test 092 datm_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_debug_cfsr -Checking test 088 datm_debug_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_debug_cfsr +Checking test 093 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 339.230244 + 0: The total amount of wall time = 342.573202 -Test 088 datm_debug_cfsr PASS +Test 093 datm_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_control_cfsr -Checking test 089 datm_cdeps_control_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_control_cfsr +Checking test 094 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.708259 + 0: The total amount of wall time = 205.256414 -Test 089 datm_cdeps_control_cfsr PASS +Test 094 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_restart_cfsr -Checking test 090 datm_cdeps_restart_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_restart_cfsr +Checking test 095 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 121.135298 + 0: The total amount of wall time = 123.325607 -Test 090 datm_cdeps_restart_cfsr PASS +Test 095 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_control_gefs -Checking test 091 datm_cdeps_control_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_control_gefs +Checking test 096 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.852315 + 0: The total amount of wall time = 208.565615 -Test 091 datm_cdeps_control_gefs PASS +Test 096 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_bulk_cfsr -Checking test 092 datm_cdeps_bulk_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_bulk_cfsr +Checking test 097 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 205.628544 + 0: The total amount of wall time = 208.068443 -Test 092 datm_cdeps_bulk_cfsr PASS +Test 097 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_bulk_gefs -Checking test 093 datm_cdeps_bulk_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_bulk_gefs +Checking test 098 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 198.133669 + 0: The total amount of wall time = 204.312335 -Test 093 datm_cdeps_bulk_gefs PASS +Test 098 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_mx025_cfsr -Checking test 094 datm_cdeps_mx025_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_mx025_cfsr +Checking test 099 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2829,14 +2895,14 @@ Checking test 094 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 415.417964 + 0: The total amount of wall time = 430.556842 -Test 094 datm_cdeps_mx025_cfsr PASS +Test 099 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_mx025_gefs -Checking test 095 datm_cdeps_mx025_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_mx025_gefs +Checking test 100 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2844,36 +2910,36 @@ Checking test 095 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 443.392344 + 0: The total amount of wall time = 421.835499 -Test 095 datm_cdeps_mx025_gefs PASS +Test 100 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_multiple_files_cfsr -Checking test 096 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_multiple_files_cfsr +Checking test 101 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.540608 + 0: The total amount of wall time = 208.211906 -Test 096 datm_cdeps_multiple_files_cfsr PASS +Test 101 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/datm_cdeps_debug_cfsr -Checking test 097 datm_cdeps_debug_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/datm_cdeps_debug_cfsr +Checking test 102 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 566.322564 + 0: The total amount of wall time = 580.469889 -Test 097 datm_cdeps_debug_cfsr PASS +Test 102 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_69257/control_atmwav -Checking test 098 control_atmwav results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_111435/control_atmwav +Checking test 103 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2916,11 +2982,11 @@ Checking test 098 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 188.284355 + 0: The total amount of wall time = 194.921138 -Test 098 control_atmwav PASS +Test 103 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 20:01:16 GMT 2021 -Elapsed time: 02h:37m:41s. Have a nice day! +Thu Aug 5 05:12:16 GMT 2021 +Elapsed time: 02h:10m:46s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 94deac2ce5..7ed9d8af14 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,28 @@ -Thu Jul 29 12:17:14 CDT 2021 +Wed Aug 4 09:48:07 CDT 2021 Start Regression test -Compile 001 elapsed time 697 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 659 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 172 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 516 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 579 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 533 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 550 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 147 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 151 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 152 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 190 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 94 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 102 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 540 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 666 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 703 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 472 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 638 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 591 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 621 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 320 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 382 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 218 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 568 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 588 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 200 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 109 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 210 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 113 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 555 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +72,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 99.422707 + 0: The total amount of wall time = 104.874043 Test 001 cpld_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +128,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 62.898283 + 0: The total amount of wall time = 70.436971 Test 002 cpld_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +184,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 106.996265 + 0: The total amount of wall time = 116.307855 Test 003 cpld_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_decomp Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +240,13 @@ Checking test 004 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.667716 + 0: The total amount of wall time = 101.908873 Test 004 cpld_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_ca Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -294,13 +296,13 @@ Checking test 005 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 102.956841 + 0: The total amount of wall time = 103.523952 Test 005 cpld_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_control_c192 Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +352,13 @@ Checking test 006 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 406.575216 + 0: The total amount of wall time = 390.885959 Test 006 cpld_control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_restart_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_restart_c192 Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -406,13 +408,13 @@ Checking test 007 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 268.261756 + 0: The total amount of wall time = 273.946678 Test 007 cpld_restart_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_control_c384 Checking test 008 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -465,13 +467,13 @@ Checking test 008 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 755.830177 + 0: The total amount of wall time = 785.347637 Test 008 cpld_control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_restart_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_restart_c384 Checking test 009 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -524,13 +526,13 @@ Checking test 009 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 421.625869 + 0: The total amount of wall time = 425.827674 Test 009 cpld_restart_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_bmark_v16 Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -573,13 +575,13 @@ Checking test 010 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 724.110194 + 0: The total amount of wall time = 641.702298 Test 010 cpld_bmark_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_restart_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_restart_bmark_v16 Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -622,13 +624,13 @@ Checking test 011 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 342.412605 + 0: The total amount of wall time = 354.111456 Test 011 cpld_restart_bmark_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_bmark_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_bmark_v16_nsst Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,13 +673,13 @@ Checking test 012 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 651.566723 + 0: The total amount of wall time = 717.313774 Test 012 cpld_bmark_v16_nsst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_bmark_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_bmark_wave_v16 Checking test 013 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -722,13 +724,13 @@ Checking test 013 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 667.015126 + 0: The total amount of wall time = 689.383508 Test 013 cpld_bmark_wave_v16 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_bmark_wave_v16_p7b -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_bmark_wave_v16_p7b +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_bmark_wave_v16_p7b Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -773,13 +775,13 @@ Checking test 014 cpld_bmark_wave_v16_p7b results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 747.675380 + 0: The total amount of wall time = 779.098210 Test 014 cpld_bmark_wave_v16_p7b PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_control_wave Checking test 015 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -832,13 +834,13 @@ Checking test 015 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 119.815756 + 0: The total amount of wall time = 133.409225 Test 015 cpld_control_wave PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/cpld_debug Checking test 016 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -888,13 +890,13 @@ Checking test 016 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 301.880998 + 0: The total amount of wall time = 305.829367 Test 016 cpld_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control Checking test 017 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -941,13 +943,13 @@ Checking test 017 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 159.653670 + 0: The total amount of wall time = 168.345766 Test 017 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_decomp Checking test 018 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,13 +992,13 @@ Checking test 018 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 161.783094 + 0: The total amount of wall time = 165.670944 Test 018 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_2threads Checking test 019 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1039,13 +1041,13 @@ Checking test 019 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.913736 + 0: The total amount of wall time = 170.470963 Test 019 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_restart Checking test 020 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1084,13 +1086,13 @@ Checking test 020 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 68.222597 + 0: The total amount of wall time = 72.069937 Test 020 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_fhzero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_fhzero Checking test 021 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1133,13 +1135,13 @@ Checking test 021 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.823531 + 0: The total amount of wall time = 161.439431 Test 021 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1166,13 +1168,13 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.249072 + 0: The total amount of wall time = 147.224701 Test 022 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1183,13 +1185,13 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.404942 + 0: The total amount of wall time = 232.941741 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1200,13 +1202,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.395929 + 0: The total amount of wall time = 471.113498 Test 024 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1217,13 +1219,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 771.025878 + 0: The total amount of wall time = 776.869996 Test 025 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1266,13 +1268,13 @@ Checking test 026 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 625.090400 + 0: The total amount of wall time = 664.056993 Test 026 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1283,26 +1285,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.362760 + 0: The total amount of wall time = 122.112592 Test 027 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 65.251138 + 0: The total amount of wall time = 62.986776 Test 028 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ca Checking test 029 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1313,13 +1315,13 @@ Checking test 029 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 113.653117 + 0: The total amount of wall time = 137.259469 Test 029 control_ca PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1330,13 +1332,13 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.735434 + 0: The total amount of wall time = 137.661071 Test 030 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_lheatstrg Checking test 031 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,13 +1349,13 @@ Checking test 031 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 159.619261 + 0: The total amount of wall time = 161.086329 Test 031 control_lheatstrg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lseaspray -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_lseaspray +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_lseaspray Checking test 032 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,13 +1366,13 @@ Checking test 032 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 164.233670 + 0: The total amount of wall time = 178.255150 Test 032 control_lseaspray PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_merra2 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_merra2 Checking test 033 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1381,13 +1383,13 @@ Checking test 033 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 239.069340 + 0: The total amount of wall time = 242.986716 Test 033 control_merra2 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_rrtmgp Checking test 034 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1398,13 +1400,13 @@ Checking test 034 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 204.627833 + 0: The total amount of wall time = 212.489759 Test 034 control_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_csawmg Checking test 035 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1415,13 +1417,13 @@ Checking test 035 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 314.735585 + 0: The total amount of wall time = 328.920365 Test 035 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_csawmgt Checking test 036 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1432,13 +1434,13 @@ Checking test 036 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 377.146570 + 0: The total amount of wall time = 390.512027 Test 036 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_flake Checking test 037 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1449,13 +1451,13 @@ Checking test 037 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.834298 + 0: The total amount of wall time = 241.816499 Test 037 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ugwpv1 Checking test 038 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1466,13 +1468,13 @@ Checking test 038 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 195.362857 + 0: The total amount of wall time = 200.611837 Test 038 control_ugwpv1 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ras Checking test 039 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1483,13 +1485,13 @@ Checking test 039 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.707318 + 0: The total amount of wall time = 190.389895 Test 039 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_thompson Checking test 040 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1500,13 +1502,13 @@ Checking test 040 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.787547 + 0: The total amount of wall time = 214.432399 Test 040 control_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_thompson_no_aero Checking test 041 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1517,13 +1519,13 @@ Checking test 041 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 201.239146 + 0: The total amount of wall time = 207.501771 Test 041 control_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_noahmp Checking test 042 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1534,13 +1536,13 @@ Checking test 042 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.550013 + 0: The total amount of wall time = 187.115652 Test 042 control_noahmp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_control Checking test 043 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1548,25 +1550,25 @@ Checking test 043 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.576145 + 0: The total amount of wall time = 292.718881 Test 043 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_restart Checking test 044 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 161.149585 + 0: The total amount of wall time = 163.989382 Test 044 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_quilt Checking test 045 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1577,13 +1579,13 @@ Checking test 045 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 307.549684 + 0: The total amount of wall time = 309.733564 Test 045 regional_quilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_quilt_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_quilt_2threads Checking test 046 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1594,13 +1596,13 @@ Checking test 046 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 217.827806 + 0: The total amount of wall time = 227.777722 Test 046 regional_quilt_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_quilt_hafs Checking test 047 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1609,27 +1611,27 @@ Checking test 047 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 310.438304 + 0: The total amount of wall time = 302.109417 Test 047 regional_quilt_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_quilt_netcdf_parallel Checking test 048 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 303.875956 + 0: The total amount of wall time = 308.255416 Test 048 regional_quilt_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_quilt_RRTMGP Checking test 049 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1640,13 +1642,13 @@ Checking test 049 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 392.273847 + 0: The total amount of wall time = 396.277987 Test 049 regional_quilt_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_gsd Checking test 050 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1737,13 @@ Checking test 050 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 232.867018 + 0: The total amount of wall time = 237.799060 Test 050 fv3_gsd PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_rrfs_v1alpha Checking test 051 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1808,13 @@ Checking test 051 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.862528 + 0: The total amount of wall time = 100.427656 Test 051 fv3_rrfs_v1alpha PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_rap Checking test 052 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1877,13 +1879,13 @@ Checking test 052 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 96.609531 + 0: The total amount of wall time = 93.780146 Test 052 fv3_rap PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_hrrr Checking test 053 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1948,13 +1950,13 @@ Checking test 053 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 93.161114 + 0: The total amount of wall time = 95.423118 Test 053 fv3_hrrr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_rrfs_v1beta Checking test 054 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,13 +2021,13 @@ Checking test 054 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.947706 + 0: The total amount of wall time = 98.886850 Test 054 fv3_rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_HAFS_v0_hwrf_thompson Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2090,13 +2092,13 @@ Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 148.337460 + 0: The total amount of wall time = 148.920846 Test 055 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_esg_HAFS_v0_hwrf_thompson Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2111,39 +2113,39 @@ Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 289.238727 + 0: The total amount of wall time = 292.174564 Test 056 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_debug Checking test 057 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.621540 + 0: The total amount of wall time = 172.614398 Test 057 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_2threads_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_2threads_debug Checking test 058 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.229284 + 0: The total amount of wall time = 235.982297 Test 058 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_CubedSphereGrid_debug Checking test 059 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2170,221 +2172,221 @@ Checking test 059 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 168.727764 + 0: The total amount of wall time = 178.561431 Test 059 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_wrtGauss_netcdf_parallel_debug Checking test 060 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.331620 + 0: The total amount of wall time = 181.022039 Test 060 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_stochy_debug Checking test 061 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.470737 + 0: The total amount of wall time = 206.932252 Test 061 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ca_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ca_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ca_debug Checking test 062 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.665325 + 0: The total amount of wall time = 187.223085 Test 062 control_ca_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_lndp_debug Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.252186 + 0: The total amount of wall time = 168.070891 Test 063 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_lheatstrg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_lheatstrg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_lheatstrg_debug Checking test 064 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.709903 + 0: The total amount of wall time = 170.018707 Test 064 control_lheatstrg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_merra2_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_merra2_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_merra2_debug Checking test 065 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 242.080716 + 0: The total amount of wall time = 262.862355 Test 065 control_merra2_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_rrtmgp_debug Checking test 066 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.868884 + 0: The total amount of wall time = 180.199191 Test 066 control_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_csawmg_debug Checking test 067 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.884655 + 0: The total amount of wall time = 309.333427 Test 067 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_csawmgt_debug Checking test 068 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 312.077429 + 0: The total amount of wall time = 322.736400 Test 068 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ugwpv1_debug Checking test 069 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.137680 + 0: The total amount of wall time = 175.346410 Test 069 control_ugwpv1_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.487143 + 0: The total amount of wall time = 176.947823 Test 070 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_noahmp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_noahmp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_noahmp_debug Checking test 071 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.340180 + 0: The total amount of wall time = 179.823000 Test 071 control_noahmp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_diag_debug Checking test 072 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.896542 + 0: The total amount of wall time = 189.031311 Test 072 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.107384 + 0: The total amount of wall time = 182.815991 Test 073 control_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.935984 + 0: The total amount of wall time = 184.384567 Test 074 control_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_thompson_extdiag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.330112 + 0: The total amount of wall time = 212.225976 Test 075 control_thompson_extdiag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/regional_control_debug Checking test 076 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2392,13 +2394,13 @@ Checking test 076 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 243.509218 + 0: The total amount of wall time = 241.537986 Test 076 regional_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_gsd_debug Checking test 077 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2463,13 +2465,13 @@ Checking test 077 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 255.882091 + 0: The total amount of wall time = 257.466620 Test 077 fv3_gsd_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_gsd_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_gsd_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_gsd_diag_debug Checking test 078 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2496,13 +2498,13 @@ Checking test 078 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 468.478952 + 0: The total amount of wall time = 481.070962 Test 078 fv3_gsd_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_rrfs_v1beta_debug Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2567,13 +2569,13 @@ Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.188361 + 0: The total amount of wall time = 205.819414 Test 079 fv3_rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_rrfs_v1alpha_debug Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2638,13 +2640,13 @@ Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.867940 + 0: The total amount of wall time = 210.051569 Test 080 fv3_rrfs_v1alpha_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_HAFS_v0_hwrf_thompson_debug Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2709,13 +2711,13 @@ Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 221.265461 + 0: The total amount of wall time = 259.989457 Test 081 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2730,86 +2732,150 @@ Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 404.566387 + 0: The total amount of wall time = 405.710966 Test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/hafs_regional_atm +Checking test 083 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK + + 0: The total amount of wall time = 261.922540 + +Test 083 hafs_regional_atm PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/hafs_regional_atm_ocn +Checking test 084 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 375.766576 + +Test 084 hafs_regional_atm_ocn PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/hafs_regional_docn +Checking test 085 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 344.639243 + +Test 085 hafs_regional_docn PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/hafs_regional_docn_oisst +Checking test 086 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + + 0: The total amount of wall time = 336.490847 + +Test 086 hafs_regional_docn_oisst PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/hafs_regional_datm_cdeps +Checking test 087 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + + 0: The total amount of wall time = 933.170565 + +Test 087 hafs_regional_datm_cdeps PASS + + baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_control_cfsr -Checking test 083 datm_control_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_control_cfsr +Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 101.362519 + 0: The total amount of wall time = 104.409793 -Test 083 datm_control_cfsr PASS +Test 088 datm_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_restart_cfsr -Checking test 084 datm_restart_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_restart_cfsr +Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 74.082002 + 0: The total amount of wall time = 69.392980 -Test 084 datm_restart_cfsr PASS +Test 089 datm_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_control_gefs -Checking test 085 datm_control_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_control_gefs +Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 103.092100 + 0: The total amount of wall time = 100.623178 -Test 085 datm_control_gefs PASS +Test 090 datm_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_control_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_control_iau_gefs -Checking test 086 datm_control_iau_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_control_iau_gefs +Checking test 091 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 103.162431 + 0: The total amount of wall time = 95.445375 -Test 086 datm_control_iau_gefs PASS +Test 091 datm_control_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_bulk_cfsr -Checking test 087 datm_bulk_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_bulk_cfsr +Checking test 092 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 98.158130 + 0: The total amount of wall time = 100.034398 -Test 087 datm_bulk_cfsr PASS +Test 092 datm_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_bulk_gefs -Checking test 088 datm_bulk_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_bulk_gefs +Checking test 093 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 96.418221 + 0: The total amount of wall time = 93.017739 -Test 088 datm_bulk_gefs PASS +Test 093 datm_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_mx025_cfsr -Checking test 089 datm_mx025_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_mx025_cfsr +Checking test 094 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2817,14 +2883,14 @@ Checking test 089 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 351.493894 + 0: The total amount of wall time = 341.227199 -Test 089 datm_mx025_cfsr PASS +Test 094 datm_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_mx025_gefs -Checking test 090 datm_mx025_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_mx025_gefs +Checking test 095 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2832,86 +2898,86 @@ Checking test 090 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 343.476740 + 0: The total amount of wall time = 335.869449 -Test 090 datm_mx025_gefs PASS +Test 095 datm_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_debug_cfsr -Checking test 091 datm_debug_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_debug_cfsr +Checking test 096 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 278.959151 + 0: The total amount of wall time = 273.300737 -Test 091 datm_debug_cfsr PASS +Test 096 datm_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_control_cfsr -Checking test 092 datm_cdeps_control_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_control_cfsr +Checking test 097 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.743874 + 0: The total amount of wall time = 148.183425 -Test 092 datm_cdeps_control_cfsr PASS +Test 097 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_restart_cfsr -Checking test 093 datm_cdeps_restart_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_restart_cfsr +Checking test 098 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 95.710364 + 0: The total amount of wall time = 96.850808 -Test 093 datm_cdeps_restart_cfsr PASS +Test 098 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_control_gefs -Checking test 094 datm_cdeps_control_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_control_gefs +Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.272864 + 0: The total amount of wall time = 147.993701 -Test 094 datm_cdeps_control_gefs PASS +Test 099 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_bulk_cfsr -Checking test 095 datm_cdeps_bulk_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_bulk_cfsr +Checking test 100 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.023438 + 0: The total amount of wall time = 152.618682 -Test 095 datm_cdeps_bulk_cfsr PASS +Test 100 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_bulk_gefs -Checking test 096 datm_cdeps_bulk_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_bulk_gefs +Checking test 101 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.367990 + 0: The total amount of wall time = 150.148162 -Test 096 datm_cdeps_bulk_gefs PASS +Test 101 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_mx025_cfsr -Checking test 097 datm_cdeps_mx025_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_mx025_cfsr +Checking test 102 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2919,14 +2985,14 @@ Checking test 097 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 346.653740 + 0: The total amount of wall time = 346.810686 -Test 097 datm_cdeps_mx025_cfsr PASS +Test 102 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_mx025_gefs -Checking test 098 datm_cdeps_mx025_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_mx025_gefs +Checking test 103 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2934,36 +3000,36 @@ Checking test 098 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 337.069121 + 0: The total amount of wall time = 355.975609 -Test 098 datm_cdeps_mx025_gefs PASS +Test 103 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_multiple_files_cfsr -Checking test 099 datm_cdeps_multiple_files_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_multiple_files_cfsr +Checking test 104 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.923976 + 0: The total amount of wall time = 148.443261 -Test 099 datm_cdeps_multiple_files_cfsr PASS +Test 104 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/datm_cdeps_debug_cfsr -Checking test 100 datm_cdeps_debug_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/datm_cdeps_debug_cfsr +Checking test 105 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 451.930668 + 0: The total amount of wall time = 444.727696 -Test 100 datm_cdeps_debug_cfsr PASS +Test 105 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_atmwav -Checking test 101 control_atmwav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_atmwav +Checking test 106 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3006,14 +3072,14 @@ Checking test 101 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 151.019251 + 0: The total amount of wall time = 150.250666 -Test 101 control_atmwav PASS +Test 106 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_291980/control_c384gdas_wav -Checking test 102 control_c384gdas_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_196274/control_c384gdas_wav +Checking test 107 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3058,11 +3124,11 @@ Checking test 102 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 727.684849 + 0: The total amount of wall time = 761.264660 -Test 102 control_c384gdas_wav PASS +Test 107 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 19:19:18 CDT 2021 -Elapsed time: 07h:02m:05s. Have a nice day! +Wed Aug 4 10:49:23 CDT 2021 +Elapsed time: 01h:01m:17s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index ffa06348e9..9d7820ddb1 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,19 @@ -Thu Jul 29 16:46:10 UTC 2021 +Wed Aug 4 17:19:51 UTC 2021 Start Regression test -Compile 001 elapsed time 859 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 920 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 915 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 860 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 869 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 483 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 455 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 469 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 475 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 954 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 968 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 889 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 906 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 892 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 566 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 487 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 464 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 995 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -59,13 +60,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 185.165443 +The total amount of wall time = 191.554989 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_decomp +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -108,13 +109,13 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 179.938181 +The total amount of wall time = 192.744456 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_restart +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -153,13 +154,13 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 70.343985 +The total amount of wall time = 70.134590 Test 003 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_fhzero +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_fhzero Checking test 004 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -202,13 +203,13 @@ Checking test 004 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 187.031731 +The total amount of wall time = 192.755326 Test 004 control_fhzero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_CubedSphereGrid Checking test 005 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -235,13 +236,13 @@ Checking test 005 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 134.802740 +The total amount of wall time = 135.786429 Test 005 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_wrtGauss_netcdf_parallel Checking test 006 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -252,13 +253,13 @@ Checking test 006 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.630506 +The total amount of wall time = 193.344772 Test 006 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_c192 +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_c192 Checking test 007 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -269,13 +270,13 @@ Checking test 007 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 526.103166 +The total amount of wall time = 524.822503 Test 007 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_stochy +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_stochy Checking test 008 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -286,26 +287,26 @@ Checking test 008 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 128.383953 +The total amount of wall time = 142.932319 Test 008 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_stochy_restart +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_stochy_restart Checking test 009 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 67.099999 +The total amount of wall time = 67.823826 Test 009 control_stochy_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ca -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ca +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ca Checking test 010 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -316,13 +317,13 @@ Checking test 010 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 133.045690 +The total amount of wall time = 144.553377 Test 010 control_ca PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_lndp +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_lndp Checking test 011 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -333,13 +334,13 @@ Checking test 011 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 145.151728 +The total amount of wall time = 144.626395 Test 011 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lheatstrg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_lheatstrg +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_lheatstrg Checking test 012 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -350,13 +351,13 @@ Checking test 012 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 184.320168 +The total amount of wall time = 186.956755 Test 012 control_lheatstrg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lseaspray -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_lseaspray +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_lseaspray Checking test 013 control_lseaspray results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -367,13 +368,13 @@ Checking test 013 control_lseaspray results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 188.991480 +The total amount of wall time = 201.775283 Test 013 control_lseaspray PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_merra2 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_merra2 +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_merra2 Checking test 014 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -384,13 +385,13 @@ Checking test 014 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 229.160967 +The total amount of wall time = 250.564677 Test 014 control_merra2 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_rrtmgp +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_rrtmgp Checking test 015 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -401,13 +402,13 @@ Checking test 015 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 231.328285 +The total amount of wall time = 237.179176 Test 015 control_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_csawmg +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_csawmg Checking test 016 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -418,13 +419,13 @@ Checking test 016 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 322.421699 +The total amount of wall time = 330.276185 Test 016 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_csawmgt +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_csawmgt Checking test 017 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -435,13 +436,13 @@ Checking test 017 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 396.911775 +The total amount of wall time = 400.044306 Test 017 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_flake +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_flake Checking test 018 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -452,13 +453,13 @@ Checking test 018 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 240.449898 +The total amount of wall time = 260.877381 Test 018 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ugwpv1 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ugwpv1 +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ugwpv1 Checking test 019 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -469,13 +470,13 @@ Checking test 019 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 221.779189 +The total amount of wall time = 227.840000 Test 019 control_ugwpv1 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ras +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ras Checking test 020 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -486,13 +487,13 @@ Checking test 020 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 209.137506 +The total amount of wall time = 211.413297 Test 020 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_noahmp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_noahmp +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_noahmp Checking test 021 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -503,13 +504,13 @@ Checking test 021 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 213.623863 +The total amount of wall time = 199.839385 Test 021 control_noahmp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_control +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_control Checking test 022 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -517,25 +518,25 @@ Checking test 022 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 353.068659 +The total amount of wall time = 379.238412 Test 022 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_restart +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_restart Checking test 023 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 217.174608 +The total amount of wall time = 217.655941 Test 023 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_quilt +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_quilt Checking test 024 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -546,13 +547,13 @@ Checking test 024 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 339.982046 +The total amount of wall time = 344.653838 Test 024 regional_quilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_quilt_hafs Checking test 025 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -561,13 +562,13 @@ Checking test 025 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 340.346536 +The total amount of wall time = 342.979331 Test 025 regional_quilt_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_quilt_netcdf_parallel Checking test 026 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -575,13 +576,13 @@ Checking test 026 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 342.231977 +The total amount of wall time = 346.018872 Test 026 regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_quilt_RRTMGP Checking test 027 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -592,13 +593,13 @@ Checking test 027 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 445.229433 +The total amount of wall time = 447.180235 Test 027 regional_quilt_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_gsd +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_gsd Checking test 028 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -687,13 +688,13 @@ Checking test 028 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 248.103147 +The total amount of wall time = 247.978676 Test 028 fv3_gsd PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_rrfs_v1alpha Checking test 029 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -758,13 +759,13 @@ Checking test 029 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.237026 +The total amount of wall time = 109.082832 Test 029 fv3_rrfs_v1alpha PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rap -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_rap +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_rap Checking test 030 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -829,13 +830,13 @@ Checking test 030 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.640033 +The total amount of wall time = 102.514025 Test 030 fv3_rap PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_hrrr -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_hrrr +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_hrrr Checking test 031 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -900,13 +901,13 @@ Checking test 031 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.564445 +The total amount of wall time = 103.425167 Test 031 fv3_hrrr PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_rrfs_v1beta Checking test 032 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -971,13 +972,13 @@ Checking test 032 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.500429 +The total amount of wall time = 102.719930 Test 032 fv3_rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_HAFS_v0_hwrf_thompson Checking test 033 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1042,13 +1043,13 @@ Checking test 033 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 165.610634 +The total amount of wall time = 164.432067 Test 033 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_esg_HAFS_v0_hwrf_thompson Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1063,26 +1064,26 @@ Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 306.343136 +The total amount of wall time = 309.128039 Test 034 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_debug Checking test 035 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 142.180785 +The total amount of wall time = 142.564878 Test 035 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_CubedSphereGrid_debug Checking test 036 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1109,221 +1110,221 @@ Checking test 036 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 150.112054 +The total amount of wall time = 150.444919 Test 036 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_wrtGauss_netcdf_parallel_debug Checking test 037 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.574799 +The total amount of wall time = 142.428843 Test 037 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_stochy_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_stochy_debug Checking test 038 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 163.628703 +The total amount of wall time = 167.205313 Test 038 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ca_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ca_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ca_debug Checking test 039 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 143.512331 +The total amount of wall time = 142.292566 Test 039 control_ca_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_lndp_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_lndp_debug Checking test 040 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.901846 +The total amount of wall time = 145.265311 Test 040 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lheatstrg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_lheatstrg_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_lheatstrg_debug Checking test 041 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 139.799238 +The total amount of wall time = 140.179491 Test 041 control_lheatstrg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_merra2_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_merra2_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_merra2_debug Checking test 042 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 210.684302 +The total amount of wall time = 227.077857 Test 042 control_merra2_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_rrtmgp_debug Checking test 043 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.053954 +The total amount of wall time = 160.891636 Test 043 control_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_csawmg_debug Checking test 044 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 254.008314 +The total amount of wall time = 250.533533 Test 044 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_csawmgt_debug Checking test 045 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 279.252654 +The total amount of wall time = 285.260583 Test 045 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ugwpv1_debug Checking test 046 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.896557 +The total amount of wall time = 153.289477 Test 046 control_ugwpv1_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_ras_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_ras_debug Checking test 047 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.532571 +The total amount of wall time = 145.078475 Test 047 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_noahmp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_noahmp_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_noahmp_debug Checking test 048 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 139.744666 +The total amount of wall time = 142.193989 Test 048 control_noahmp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_diag_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_diag_debug Checking test 049 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.863991 +The total amount of wall time = 149.457024 Test 049 control_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_thompson_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_thompson_debug Checking test 050 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.830543 +The total amount of wall time = 170.830486 Test 050 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_thompson_no_aero_debug Checking test 051 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.187371 +The total amount of wall time = 160.961467 Test 051 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/control_thompson_extdiag_debug Checking test 052 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.817467 +The total amount of wall time = 176.561305 Test 052 control_thompson_extdiag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/regional_control_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/regional_control_debug Checking test 053 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1331,13 +1332,13 @@ Checking test 053 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 246.327948 +The total amount of wall time = 244.254652 Test 053 regional_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_gsd_debug Checking test 054 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1402,13 +1403,13 @@ Checking test 054 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 242.257430 +The total amount of wall time = 241.929486 Test 054 fv3_gsd_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_gsd_diag_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_gsd_diag_debug Checking test 055 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1435,13 +1436,13 @@ Checking test 055 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 434.970658 +The total amount of wall time = 466.315596 Test 055 fv3_gsd_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_rrfs_v1beta_debug Checking test 056 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1506,13 +1507,13 @@ Checking test 056 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 191.835579 +The total amount of wall time = 190.315982 Test 056 fv3_rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_rrfs_v1alpha_debug Checking test 057 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1577,13 +1578,13 @@ Checking test 057 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.522905 +The total amount of wall time = 194.397641 Test 057 fv3_rrfs_v1alpha_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_HAFS_v0_hwrf_thompson_debug Checking test 058 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1648,13 +1649,13 @@ Checking test 058 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 196.737682 +The total amount of wall time = 199.906253 Test 058 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_5653/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 059 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1669,11 +1670,35 @@ Checking test 059 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 353.023453 +The total amount of wall time = 358.106528 Test 059 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/hafs_regional_atm +Checking test 060 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +The total amount of wall time = 183.977694 + +Test 060 hafs_regional_atm PASS + + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Bin.Liu/FV3_RT/rt_35704/hafs_regional_atm_ocn +Checking test 061 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +The total amount of wall time = 354.966480 + +Test 061 hafs_regional_atm_ocn PASS + + REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 17:15:29 UTC 2021 +Wed Aug 4 17:49:10 UTC 2021 Elapsed time: 00h:29m:19s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index d465d6cea2..f3eb46c87b 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,26 +1,25 @@ -Thu Jul 29 18:47:31 UTC 2021 +Wed Aug 4 18:00:24 UTC 2021 Start Regression test -Compile 001 elapsed time 2155 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 2518 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 642 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 004 elapsed time 1148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1636 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1339 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 1563 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 008 elapsed time 1388 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 872 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 688 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1090 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 012 elapsed time 684 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 elapsed time 1281 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 435 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 993 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 016 elapsed time 401 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 017 elapsed time 1139 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 2146 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 610 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 1569 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1386 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 356 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 301 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 323 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 291 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 1412 seconds. -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 1479 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 920 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 344 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 960 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 018 elapsed time 374 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 019 elapsed time 1121 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_control +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +69,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 102.014135 +[0] The total amount of wall time = 101.455202 Test 001 cpld_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_restart +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +125,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 67.372570 +[0] The total amount of wall time = 67.905968 Test 002 cpld_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_2threads +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_2threads Checking test 003 cpld_2threads results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +181,13 @@ Checking test 003 cpld_2threads results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 94.734114 +[0] The total amount of wall time = 96.413717 Test 003 cpld_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_decomp +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_decomp Checking test 004 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +237,13 @@ Checking test 004 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 101.444212 +[0] The total amount of wall time = 99.844245 Test 004 cpld_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_ca -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_ca +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_ca Checking test 005 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -294,13 +293,13 @@ Checking test 005 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 100.154856 +[0] The total amount of wall time = 102.232459 Test 005 cpld_ca PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_control_c192 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_control_c192 Checking test 006 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +349,13 @@ Checking test 006 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 413.503833 +[0] The total amount of wall time = 421.268225 Test 006 cpld_control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_restart_c192 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_restart_c192 Checking test 007 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -406,13 +405,13 @@ Checking test 007 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 309.928779 +[0] The total amount of wall time = 316.500560 Test 007 cpld_restart_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_control_c384 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_control_c384 Checking test 008 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -465,13 +464,13 @@ Checking test 008 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 803.451185 +[0] The total amount of wall time = 807.149172 Test 008 cpld_control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_restart_c384 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_restart_c384 Checking test 009 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -524,13 +523,13 @@ Checking test 009 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 467.558725 +[0] The total amount of wall time = 466.304732 Test 009 cpld_restart_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_bmark_v16 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_bmark_v16 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_bmark_v16 Checking test 010 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -573,13 +572,13 @@ Checking test 010 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 656.677425 +[0] The total amount of wall time = 669.239618 Test 010 cpld_bmark_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_bmark_v16 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_restart_bmark_v16 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_restart_bmark_v16 Checking test 011 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -622,13 +621,13 @@ Checking test 011 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 440.832734 +[0] The total amount of wall time = 438.785652 Test 011 cpld_restart_bmark_v16 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_bmark_v16_nsst -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_bmark_v16_nsst +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_bmark_v16_nsst Checking test 012 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,568 +670,26 @@ Checking test 012 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 659.783128 +[0] The total amount of wall time = 671.344439 Test 012 cpld_bmark_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_bmark_wave_v16 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_bmark_wave_v16 -Checking test 013 cpld_bmark_wave_v16 results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 760.306138 - -Test 013 cpld_bmark_wave_v16 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_bmark_wave_v16_p7b -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_bmark_wave_v16_p7b -Checking test 014 cpld_bmark_wave_v16_p7b results .... - Comparing sfcf006.nc .........OK - Comparing atmf006.nc .........OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - -[0] The total amount of wall time = 822.795839 - -Test 014 cpld_bmark_wave_v16_p7b PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_control_wave -Checking test 015 cpld_control_wave results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-04-00000.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - Comparing 20161004.000000.out_grd.glo_1deg .........OK - Comparing 20161004.000000.out_pnt.points .........OK - Comparing 20161004.000000.restart.glo_1deg .........OK - -[0] The total amount of wall time = 121.947680 - -Test 015 cpld_control_wave PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/cpld_debug -Checking test 016 cpld_debug results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2016-10-03-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - -[0] The total amount of wall time = 310.076364 - -Test 016 cpld_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control -Checking test 017 control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 170.078390 - -Test 017 control PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_decomp -Checking test 018 control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 173.479383 - -Test 018 control_decomp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_2threads -Checking test 019 control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 157.929647 - -Test 019 control_2threads PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_restart -Checking test 020 control_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 77.902824 - -Test 020 control_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_fhzero -Checking test 021 control_fhzero results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 171.409914 - -Test 021 control_fhzero PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_CubedSphereGrid -Checking test 022 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -[0] The total amount of wall time = 136.634944 - -Test 022 control_CubedSphereGrid PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 201.483483 - -Test 023 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_c192 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_c192 -Checking test 024 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 555.172835 - -Test 024 control_c192 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_c384 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_c384 -Checking test 025 control_c384 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 1023.698501 - -Test 025 control_c384 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_c384gdas -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_c384gdas -Checking test 026 control_c384gdas results .... - Comparing sfcf000.nc .........OK - Comparing sfcf006.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf006.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/cpld_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/cpld_debug +Checking test 016 cpld_debug results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1265,129 +722,17 @@ Checking test 026 control_c384gdas results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2016-10-03-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 889.440423 - -Test 026 control_c384gdas PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_stochy -Checking test 027 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 123.516948 - -Test 027 control_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_stochy_restart -Checking test 028 control_stochy_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 62.721421 - -Test 028 control_stochy_restart PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ca -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ca -Checking test 029 control_ca results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 124.918195 - -Test 029 control_ca PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lndp -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_lndp -Checking test 030 control_lndp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 125.847795 - -Test 030 control_lndp PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lheatstrg -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_lheatstrg -Checking test 031 control_lheatstrg results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 175.462047 - -Test 031 control_lheatstrg PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lseaspray -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_lseaspray -Checking test 032 control_lseaspray results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 186.434672 - -Test 032 control_lseaspray PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_merra2 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_merra2 -Checking test 033 control_merra2 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 198.827885 +[0] The total amount of wall time = 308.832806 -Test 033 control_merra2 PASS +Test 016 cpld_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_rrtmgp Checking test 034 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1398,13 +743,13 @@ Checking test 034 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 232.929553 +[0] The total amount of wall time = 232.702303 Test 034 control_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmg -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_csawmg +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_csawmg Checking test 035 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1415,13 +760,13 @@ Checking test 035 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 301.030231 +[0] The total amount of wall time = 300.058465 Test 035 control_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmgt -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_csawmgt +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_csawmgt Checking test 036 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1432,13 +777,13 @@ Checking test 036 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 370.600225 +[0] The total amount of wall time = 369.208080 Test 036 control_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_flake -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_flake +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_flake Checking test 037 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1449,13 +794,13 @@ Checking test 037 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 254.630613 +[0] The total amount of wall time = 252.960616 Test 037 control_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ugwpv1 -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ugwpv1 +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_ugwpv1 Checking test 038 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1466,13 +811,13 @@ Checking test 038 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 210.482571 +[0] The total amount of wall time = 208.048649 Test 038 control_ugwpv1 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ras -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ras +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_ras Checking test 039 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1483,13 +828,13 @@ Checking test 039 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 201.367142 +[0] The total amount of wall time = 200.004313 Test 039 control_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_thompson +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_thompson Checking test 040 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1500,13 +845,13 @@ Checking test 040 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 239.390166 +[0] The total amount of wall time = 238.664380 Test 040 control_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_thompson_no_aero Checking test 041 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1517,13 +862,13 @@ Checking test 041 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 229.579998 +[0] The total amount of wall time = 228.042408 Test 041 control_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_noahmp -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_noahmp +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_noahmp Checking test 042 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1534,13 +879,13 @@ Checking test 042 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 194.891203 +[0] The total amount of wall time = 193.950080 Test 042 control_noahmp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_control +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_control Checking test 043 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1548,25 +893,25 @@ Checking test 043 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 349.308489 +[0] The total amount of wall time = 349.735872 Test 043 regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_restart +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_restart Checking test 044 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 199.719800 +[0] The total amount of wall time = 198.770793 Test 044 regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_quilt +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_quilt Checking test 045 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1577,13 +922,13 @@ Checking test 045 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 344.726139 +[0] The total amount of wall time = 340.702688 Test 045 regional_quilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_quilt_2threads +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_quilt_2threads Checking test 046 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1594,13 +939,13 @@ Checking test 046 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 193.147049 +[0] The total amount of wall time = 191.459973 Test 046 regional_quilt_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_quilt_hafs +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_quilt_hafs Checking test 047 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1609,27 +954,27 @@ Checking test 047 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 344.728005 +[0] The total amount of wall time = 339.737310 Test 047 regional_quilt_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_quilt_netcdf_parallel Checking test 048 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 343.460507 +[0] The total amount of wall time = 342.426788 Test 048 regional_quilt_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_quilt_RRTMGP +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_quilt_RRTMGP Checking test 049 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1640,13 +985,13 @@ Checking test 049 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 467.461262 +[0] The total amount of wall time = 469.449534 Test 049 regional_quilt_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_gsd +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_gsd Checking test 050 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1735,13 +1080,13 @@ Checking test 050 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 255.102475 +[0] The total amount of wall time = 253.214116 Test 050 fv3_gsd PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1alpha -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_rrfs_v1alpha Checking test 051 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1806,13 +1151,13 @@ Checking test 051 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 103.672001 +[0] The total amount of wall time = 102.385017 Test 051 fv3_rrfs_v1alpha PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rap -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_rap +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_rap Checking test 052 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1877,13 +1222,13 @@ Checking test 052 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.343798 +[0] The total amount of wall time = 102.509106 Test 052 fv3_rap PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_hrrr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_hrrr +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_hrrr Checking test 053 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1948,13 +1293,13 @@ Checking test 053 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 101.629129 +[0] The total amount of wall time = 100.528517 Test 053 fv3_hrrr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_rrfs_v1beta Checking test 054 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2019,131 +1364,39 @@ Checking test 054 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 102.229300 +[0] The total amount of wall time = 102.635053 Test 054 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_HAFS_v0_hwrf_thompson -Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.tile1.nc .........OK - Comparing atmos_4xdaily.tile2.nc .........OK - Comparing atmos_4xdaily.tile3.nc .........OK - Comparing atmos_4xdaily.tile4.nc .........OK - Comparing atmos_4xdaily.tile5.nc .........OK - Comparing atmos_4xdaily.tile6.nc .........OK - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - -[0] The total amount of wall time = 172.569521 - -Test 055 fv3_HAFS_v0_hwrf_thompson PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_esg_HAFS_v0_hwrf_thompson -Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... - Comparing atmos_4xdaily.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf012.nc .........OK - Comparing dynf000.nc .........OK - Comparing dynf012.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/sfc_data.nc .........OK - Comparing RESTART/phy_data.nc .........OK - -[0] The total amount of wall time = 320.070288 - -Test 056 fv3_esg_HAFS_v0_hwrf_thompson PASS - - baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_debug Checking test 057 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 165.804494 +[0] The total amount of wall time = 164.905779 Test 057 control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_2threads_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_2threads_debug Checking test 058 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 154.082540 +[0] The total amount of wall time = 153.120390 Test 058 control_2threads_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_CubedSphereGrid_debug Checking test 059 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2170,221 +1423,221 @@ Checking test 059 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 179.816613 +[0] The total amount of wall time = 179.052863 Test 059 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_wrtGauss_netcdf_parallel_debug Checking test 060 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 168.661438 +[0] The total amount of wall time = 168.333173 Test 060 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_stochy_debug Checking test 061 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.962750 +[0] The total amount of wall time = 189.005499 Test 061 control_stochy_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ca_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ca_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_ca_debug Checking test 062 control_ca_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.264239 +[0] The total amount of wall time = 166.806714 Test 062 control_ca_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_lndp_debug Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.861262 +[0] The total amount of wall time = 169.666852 Test 063 control_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_lheatstrg_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_lheatstrg_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_lheatstrg_debug Checking test 064 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 165.355532 +[0] The total amount of wall time = 165.141910 Test 064 control_lheatstrg_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_merra2_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_merra2_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_merra2_debug Checking test 065 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 238.186350 +[0] The total amount of wall time = 235.713180 Test 065 control_merra2_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_rrtmgp_debug Checking test 066 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 188.379088 +[0] The total amount of wall time = 188.297755 Test 066 control_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_csawmg_debug Checking test 067 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 281.931970 +[0] The total amount of wall time = 280.191763 Test 067 control_csawmg_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_csawmgt_debug Checking test 068 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 319.701157 +[0] The total amount of wall time = 315.174033 Test 068 control_csawmgt_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ugwpv1_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_ugwpv1_debug Checking test 069 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 179.282801 +[0] The total amount of wall time = 179.483755 Test 069 control_ugwpv1_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_ras_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_ras_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.029339 +[0] The total amount of wall time = 171.242080 Test 070 control_ras_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_noahmp_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_noahmp_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_noahmp_debug Checking test 071 control_noahmp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 165.001955 +[0] The total amount of wall time = 164.723399 Test 071 control_noahmp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_diag_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_diag_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_diag_debug Checking test 072 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 175.305460 +[0] The total amount of wall time = 175.449582 Test 072 control_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 196.011197 +[0] The total amount of wall time = 193.932253 Test 073 control_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 187.856767 +[0] The total amount of wall time = 186.955919 Test 074 control_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_thompson_extdiag_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 205.127183 +[0] The total amount of wall time = 203.484839 Test 075 control_thompson_extdiag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/regional_control_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/regional_control_debug Checking test 076 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2392,13 +1645,13 @@ Checking test 076 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 276.408553 +[0] The total amount of wall time = 276.423976 Test 076 regional_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_gsd_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_gsd_debug Checking test 077 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2463,13 +1716,13 @@ Checking test 077 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 282.176114 +[0] The total amount of wall time = 281.743542 Test 077 fv3_gsd_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_gsd_diag_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_gsd_diag_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_gsd_diag_debug Checking test 078 fv3_gsd_diag_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2496,13 +1749,13 @@ Checking test 078 fv3_gsd_diag_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 430.371527 +[0] The total amount of wall time = 437.559032 Test 078 fv3_gsd_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_rrfs_v1beta_debug Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2567,13 +1820,13 @@ Checking test 079 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 223.095268 +[0] The total amount of wall time = 223.093202 Test 079 fv3_rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_rrfs_v1alpha_debug Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2638,13 +1891,13 @@ Checking test 080 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 223.590295 +[0] The total amount of wall time = 222.853682 Test 080 fv3_rrfs_v1alpha_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_HAFS_v0_hwrf_thompson_debug Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2709,13 +1962,13 @@ Checking test 081 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 234.421422 +[0] The total amount of wall time = 235.377348 Test 081 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2730,86 +1983,150 @@ Checking test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 434.636368 +[0] The total amount of wall time = 433.941071 Test 082 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/hafs_regional_atm +Checking test 083 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + +[0] The total amount of wall time = 622.521078 + +Test 083 hafs_regional_atm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/hafs_regional_atm_ocn +Checking test 084 hafs_regional_atm_ocn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + +[0] The total amount of wall time = 616.053126 + +Test 084 hafs_regional_atm_ocn PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/hafs_regional_docn +Checking test 085 hafs_regional_docn results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +[0] The total amount of wall time = 615.436561 + +Test 085 hafs_regional_docn PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/hafs_regional_docn_oisst +Checking test 086 hafs_regional_docn_oisst results .... + Comparing atmf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK + +[0] The total amount of wall time = 613.375985 + +Test 086 hafs_regional_docn_oisst PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/hafs_regional_datm_cdeps +Checking test 087 hafs_regional_datm_cdeps results .... + Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK + Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK + +[0] The total amount of wall time = 1084.093596 + +Test 087 hafs_regional_datm_cdeps PASS + + baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_control_cfsr -Checking test 083 datm_control_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_control_cfsr +Checking test 088 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 106.017161 +[0] The total amount of wall time = 105.143770 -Test 083 datm_control_cfsr PASS +Test 088 datm_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_restart_cfsr -Checking test 084 datm_restart_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_restart_cfsr +Checking test 089 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 76.911583 +[0] The total amount of wall time = 78.197635 -Test 084 datm_restart_cfsr PASS +Test 089 datm_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_control_gefs -Checking test 085 datm_control_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_control_gefs +Checking test 090 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 98.207712 +[0] The total amount of wall time = 98.138641 -Test 085 datm_control_gefs PASS +Test 090 datm_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_control_iau_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_control_iau_gefs -Checking test 086 datm_control_iau_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_control_iau_gefs +Checking test 091 datm_control_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 101.042991 +[0] The total amount of wall time = 99.405038 -Test 086 datm_control_iau_gefs PASS +Test 091 datm_control_iau_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_bulk_cfsr -Checking test 087 datm_bulk_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_bulk_cfsr +Checking test 092 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 102.006487 +[0] The total amount of wall time = 102.145875 -Test 087 datm_bulk_cfsr PASS +Test 092 datm_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_bulk_gefs -Checking test 088 datm_bulk_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_bulk_gefs +Checking test 093 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 97.961248 +[0] The total amount of wall time = 97.519043 -Test 088 datm_bulk_gefs PASS +Test 093 datm_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_mx025_cfsr -Checking test 089 datm_mx025_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_mx025_cfsr +Checking test 094 datm_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2817,14 +2134,14 @@ Checking test 089 datm_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 338.578768 +[0] The total amount of wall time = 345.076759 -Test 089 datm_mx025_cfsr PASS +Test 094 datm_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_mx025_gefs -Checking test 090 datm_mx025_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_mx025_gefs +Checking test 095 datm_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2832,86 +2149,86 @@ Checking test 090 datm_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 339.193278 +[0] The total amount of wall time = 335.808030 -Test 090 datm_mx025_gefs PASS +Test 095 datm_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_debug_cfsr -Checking test 091 datm_debug_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_debug_cfsr +Checking test 096 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 295.019649 +[0] The total amount of wall time = 293.550508 -Test 091 datm_debug_cfsr PASS +Test 096 datm_debug_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_control_cfsr -Checking test 092 datm_cdeps_control_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_control_cfsr +Checking test 097 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 172.773743 +[0] The total amount of wall time = 172.124463 -Test 092 datm_cdeps_control_cfsr PASS +Test 097 datm_cdeps_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_restart_cfsr -Checking test 093 datm_cdeps_restart_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_restart_cfsr +Checking test 098 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 118.110907 +[0] The total amount of wall time = 118.421155 -Test 093 datm_cdeps_restart_cfsr PASS +Test 098 datm_cdeps_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_control_gefs -Checking test 094 datm_cdeps_control_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_control_gefs +Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 166.374136 +[0] The total amount of wall time = 166.537919 -Test 094 datm_cdeps_control_gefs PASS +Test 099 datm_cdeps_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_bulk_cfsr -Checking test 095 datm_cdeps_bulk_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_bulk_cfsr +Checking test 100 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 172.044573 +[0] The total amount of wall time = 173.004407 -Test 095 datm_cdeps_bulk_cfsr PASS +Test 100 datm_cdeps_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_bulk_gefs -Checking test 096 datm_cdeps_bulk_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_bulk_gefs +Checking test 101 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 166.940329 +[0] The total amount of wall time = 166.125801 -Test 096 datm_cdeps_bulk_gefs PASS +Test 101 datm_cdeps_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_mx025_cfsr -Checking test 097 datm_cdeps_mx025_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_mx025_cfsr +Checking test 102 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2919,14 +2236,14 @@ Checking test 097 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 337.797150 +[0] The total amount of wall time = 335.843900 -Test 097 datm_cdeps_mx025_cfsr PASS +Test 102 datm_cdeps_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_mx025_gefs -Checking test 098 datm_cdeps_mx025_gefs results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_mx025_gefs +Checking test 103 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK Comparing RESTART/MOM.res_2.nc .........OK @@ -2934,36 +2251,36 @@ Checking test 098 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 334.249079 +[0] The total amount of wall time = 333.671337 -Test 098 datm_cdeps_mx025_gefs PASS +Test 103 datm_cdeps_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_multiple_files_cfsr -Checking test 099 datm_cdeps_multiple_files_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_multiple_files_cfsr +Checking test 104 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.174919 +[0] The total amount of wall time = 171.278128 -Test 099 datm_cdeps_multiple_files_cfsr PASS +Test 104 datm_cdeps_multiple_files_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/datm_cdeps_debug_cfsr -Checking test 100 datm_cdeps_debug_cfsr results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/datm_cdeps_debug_cfsr +Checking test 105 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 493.048204 +[0] The total amount of wall time = 492.666799 -Test 100 datm_cdeps_debug_cfsr PASS +Test 105 datm_cdeps_debug_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_atmwav -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_atmwav -Checking test 101 control_atmwav results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_atmwav +Checking test 106 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3006,14 +2323,14 @@ Checking test 101 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 151.109496 +[0] The total amount of wall time = 154.460210 -Test 101 control_atmwav PASS +Test 106 control_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210729/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Ali.Abdolali/FV3_RT/rt_17044/control_c384gdas_wav -Checking test 102 control_c384gdas_wav results .... +working dir = /gpfs/dell2/ptmp/Bin.Liu/FV3_RT/rt_17982/control_c384gdas_wav +Checking test 107 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK Comparing atmf000.nc .........OK @@ -3058,11 +2375,11 @@ Checking test 102 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK -[0] The total amount of wall time = 1004.144156 +[0] The total amount of wall time = 990.952045 -Test 102 control_c384gdas_wav PASS +Test 107 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jul 29 19:50:06 UTC 2021 -Elapsed time: 01h:02m:37s. Have a nice day! +Wed Aug 4 19:02:56 UTC 2021 +Elapsed time: 01h:02m:33s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index f89ba4768c..909e374152 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -103,7 +103,7 @@ else fi fi - # Check if suites argument is provided or not +# Check if suites argument is provided or not set +ex TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" ) if [[ $? -eq 0 ]]; then diff --git a/tests/default_vars.sh b/tests/default_vars.sh index e69647563e..50a26be9fc 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -411,8 +411,10 @@ export_fv3 () { export FV3=true export S2S=false +export HAFS=false export DATM_NEMS=false export DATM_CDEPS=false +export DOCN_CDEPS=false export THRD=1 export WLCLK=$WLCLK_dflt export POSTAPP='global' @@ -627,8 +629,10 @@ export_cpl () { export FV3=true export S2S=true +export HAFS=false export DATM_NEMS=false export DATM_CDEPS=false +export DOCN_CDEPS=false export DAYS="1" export FHMAX="24" @@ -772,8 +776,10 @@ export_datm () { export FV3=false export S2S=false +export HAFS=false export DATM_NEMS=true export DATM_CDEPS=false +export DOCN_CDEPS=false export CPLWAV=.F. export DAYS=1 export FHMAX=24 @@ -885,8 +891,10 @@ export_datm_cdeps () { export FV3=false export S2S=false +export HAFS=false export DATM_NEMS=false export DATM_CDEPS=true +export DOCN_CDEPS=false export CPLWAV=.F. export DAYS=1 export FHMAX=24 @@ -1000,3 +1008,103 @@ export TFREEZE_OPTION='linear_salt' export BL_SUFFIX="" export RT_SUFFIX="" } +export_hafs_datm_cdeps () +{ +export FV3=false +export S2S=false +export HAFS=true +export DATM_CDEPS=true +export DATM_NEMS=false +export DOCN_CDEPS=false +export THRD=1 +export WLCLK=30 +export INPES=$INPES_dflt +export JNPES=$JNPES_dflt +export TASKS=$TASKS_dflt +export TPN=$TPN_dflt + +export atm_model="datm" + +export DATM_IN_CONFIGURE="datm_in" +export DATM_STREAM_CONFIGURE="hafs_datm.streams.era5.IN" +} +export_hafs_docn_cdeps () +{ +export FV3=true +export S2S=false +export HAFS=true +export DOCN_CDEPS=true +export THRD=1 +export WLCLK=$WLCLK_dflt +export INPES=$INPES_dflt +export JNPES=$JNPES_dflt +export TASKS=$TASKS_dflt +export TPN=$TPN_dflt + +export ocn_model="docn" +export ocn_datamode="sstdata" + +export DOCN_IN_CONFIGURE="docn_in" +export DOCN_STREAM_CONFIGURE="hafs_docn.streams.IN" +} +export_hafs_regional () +{ +export FV3=true +export S2S=false +export HAFS=true +export DATM_NEMS=false +export DATM_CDEPS=false +export DOCN_CDEPS=false +export THRD=1 +export WLCLK=$WLCLK_dflt +export INPES=$INPES_dflt +export JNPES=$JNPES_dflt +export TASKS=$TASKS_dflt +export TPN=$TPN_dflt + +# model_configure +export SYEAR='2019' +export SMONTH='08' +export SDAY='29' +export SHOUR='00' +export FHMAX=6 +export ENS_NUM=1 +export DT_ATMOS='900' +export CPL='.true.' +export RESTART_INTERVAL=0 +export FHROT=0 +export coupling_interval_fast_sec=0 +export QUILTING=.true. +export WRITE_GROUP=1 +export WRTTASK_PER_GROUP=6 +export OUTPUT_HISTORY=.true. +export WRITE_DOPOST=.false. +export NUM_FILES=2 +export FILENAME_BASE="'atm' 'sfc'" +export OUTPUT_GRID="'regional_latlon'" +export OUTPUT_FILE="'netcdf'" +export IDEFLATE=0 +export NBITS=0 +export NFHOUT=3 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export CEN_LON=-62.0 +export CEN_LAT=25.0 +export LON1=-114.5 +export LAT1=-5.0 +export LON2=-9.5 +export LAT2=55.0 +export DLON=0.03 +export DLAT=0.03 + +# input.nml +export MERGE_IMPORT=.true. + +# nems.configure +export med_model="cmeps" +export CAP_DBUG_FLAG="0" +export RESTART_N=${FHMAX} +export CPLMODE="hafs" +export RUNTYPE="startup" +export USE_COLDSTART="false" +} diff --git a/tests/fv3_conf/hafs_datm_cdeps_era5.IN b/tests/fv3_conf/hafs_datm_cdeps_era5.IN new file mode 100644 index 0000000000..66ffd43aa4 --- /dev/null +++ b/tests/fv3_conf/hafs_datm_cdeps_era5.IN @@ -0,0 +1,5 @@ +mkdir -p INPUT_DATM + +cd INPUT_DATM +rsync -arv @[INPUTDATA_ROOT]/DATM_ERA5_input_data/. . +cd - diff --git a/tests/fv3_conf/hafs_docn_cdeps_mom6.IN b/tests/fv3_conf/hafs_docn_cdeps_mom6.IN new file mode 100644 index 0000000000..108ced32d4 --- /dev/null +++ b/tests/fv3_conf/hafs_docn_cdeps_mom6.IN @@ -0,0 +1,5 @@ +mkdir -p INPUT_DOCN + +cd INPUT_DOCN +rsync -arv @[INPUTDATA_ROOT]/DOCN_MOM6_input_data/. . +cd - diff --git a/tests/fv3_conf/hafs_docn_cdeps_oisst.IN b/tests/fv3_conf/hafs_docn_cdeps_oisst.IN new file mode 100644 index 0000000000..7fb2706777 --- /dev/null +++ b/tests/fv3_conf/hafs_docn_cdeps_oisst.IN @@ -0,0 +1,5 @@ +mkdir -p INPUT_DOCN + +cd INPUT_DOCN +rsync -arv @[INPUTDATA_ROOT]/DOCN_OISST_input_data/. . +cd - diff --git a/tests/fv3_conf/hafs_regional_run.IN b/tests/fv3_conf/hafs_regional_run.IN new file mode 100644 index 0000000000..59d06a657b --- /dev/null +++ b/tests/fv3_conf/hafs_regional_run.IN @@ -0,0 +1,4 @@ +rm -rf INPUT RESTART +mkdir INPUT RESTART + +rsync -arv @[INPUTDATA_ROOT]/FV3_hafs_regional_input_data/. . diff --git a/tests/fv3_conf/hycom_hat10_run.IN b/tests/fv3_conf/hycom_hat10_run.IN new file mode 100644 index 0000000000..34a84e10b3 --- /dev/null +++ b/tests/fv3_conf/hycom_hat10_run.IN @@ -0,0 +1,2 @@ + +rsync -arv @[INPUTDATA_ROOT]/HYCOM_regional_input_data/. ./ diff --git a/tests/parm/docn_in b/tests/parm/docn_in new file mode 100644 index 0000000000..c8165c75ba --- /dev/null +++ b/tests/parm/docn_in @@ -0,0 +1,9 @@ +&docn_nml + datamode = "@[ocn_datamode]" + model_maskfile = "@[ocn_mesh]" + model_meshfile = "@[ocn_mesh]" + nx_global = @[ocn_nx_global] + ny_global = @[ocn_ny_global] + restfilm = "null" + sst_constant_value = -1.0 +/ diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 71b5fe7f56..51ddad99d1 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -86,6 +86,7 @@ description: atmosphere export # - standard_name: Faxa_swnet + alias: mean_net_sw_flx canonical_units: W m-2 description: atmosphere export # @@ -138,6 +139,8 @@ canonical_units: K description: atmosphere export - bottom layer temperature # + - standard_name: Sa_tskn + alias: inst_temp_height_surface - standard_name: Sa_tskn alias: inst_temp_skin_temperature canonical_units: K @@ -197,11 +200,20 @@ alias: inst_zonal_wind_height10m canonical_units: m s-1 description: atmosphere export - zonal wind height 10m + - standard_name: Sa_u10m + alias: eastward_wind_at_10m_height # - standard_name: Sa_v10m alias: inst_merid_wind_height10m canonical_units: m s-1 description: atmosphere export - meridional wind height 10m + - standard_name: Sa_v10m + alias: northward_wind_at_10m_height + # + - standard_name: Sa_wspd10m + alias: inst_wind_speed_height10m + canonical_units: m s-1 + description: atmosphere export - wind speed height 10m # - standard_name: Sa_t2m alias: inst_temp_height2m @@ -755,7 +767,8 @@ canonical_units: 1 description: ww3 export # - - standard_name: wave_z0_roughness_length + - standard_name: Sw_zo + alias: wave_z0_roughness_length canonical_units: 1 description: ww3 export # diff --git a/tests/parm/hafs_datm.streams.era5.IN b/tests/parm/hafs_datm.streams.era5.IN new file mode 100644 index 0000000000..2ff5456953 --- /dev/null +++ b/tests/parm/hafs_datm.streams.era5.IN @@ -0,0 +1,15 @@ +stream_info: ERA5_HOURLY01 +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: 0 +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: "u:v" +stream_mesh_file01: @[MESH_ATM] +stream_lev_dimname01: null +stream_data_files01: @[DATA_ATM]" +stream_data_variables01: "u10 Sa_u10m" "v10 Sa_v10m" "t2m Sa_t2m" "skt Sa_tskn" "d2m Sa_tdew" "msl Sa_pslv" "tp Faxa_rain" "cp Faxa_rainc" "lsp Faxa_rainl" "csf Faxa_snowc" "lsf Faxa_snowl" "ssrd Faxa_swdn" "ssr Faxa_swnet" "strd Faxa_lwdn" "str Faxa_lwnet" "aluvp Faxa_swvdr" "aluvd Faxa_swvdf" "alnip Faxa_swndr" "alnid Faxa_swndf" "sshf Faxa_sen" "slhf Faxa_lat" "ewss Faxa_taux" "nsss Faxa_tauy" diff --git a/tests/parm/hafs_docn.streams.IN b/tests/parm/hafs_docn.streams.IN new file mode 100644 index 0000000000..3b037ee77f --- /dev/null +++ b/tests/parm/hafs_docn.streams.IN @@ -0,0 +1,15 @@ +stream_info: PRESCRIBED01 +taxmode01: limit +mapalgo01: bilinear +tInterpAlgo01: linear +readMode01: single +dtlimit01: 1.5 +stream_offset01: 0 +yearFirst01: @[SYEAR] +yearLast01: @[SYEAR] +yearAlign01: @[SYEAR] +stream_vectors01: "null" +stream_mesh_file01: @[ocn_mesh] +stream_lev_dimname01: null +stream_data_files01: @[ocn_data] +stream_data_variables01: "@[ocn_data_var] So_t" diff --git a/tests/parm/input_hafs_regional.nml.IN b/tests/parm/input_hafs_regional.nml.IN new file mode 100644 index 0000000000..cebb74d354 --- /dev/null +++ b/tests/parm/input_hafs_regional.nml.IN @@ -0,0 +1,360 @@ + &atmos_model_nml + blocksize = 40 + chksum_debug = .false. + dycore_only = .false. + avg_max_length = 3600. + ccpp_suite = '@[CCPP_SUITE]' +/ + + &diag_manager_nml + prepend_date = .false. +/ + + &mpp_io_nml + header_buffer_val = 16384, + global_field_on_root_pe = .true., + io_clocks_on = .false., + shuffle = 0, + deflate_level = -1, + cf_compliance = .false. +/ + + &fms_io_nml + checksum_required = .false. + max_files_r = 100, + max_files_w = 100, +/ + + &fms_nml + clock_grain = 'ROUTINE', + domains_stack_size = 12000000, + print_memory_usage = .false. +/ + + &fv_grid_nml + grid_file = 'INPUT/grid_spec.nc' +/ + + &fv_core_nml + layout = @[INPES],@[JNPES] + io_layout = 1,1 + npx = 721 + npy = 601 + ntiles = 1 + npz = 91 + !grid_type = -1 + make_nh = .F. + fv_debug = .F. + range_warn = .T. + reset_eta = .F. + n_sponge = 24 + nudge_qv = .F. + nudge_dz = .F. + tau = 5. + rf_cutoff = 50.e2 + d2_bg_k1 = 0.20 + d2_bg_k2 = 0.15 + kord_tm = -11 + kord_mt = 11 + kord_wz = 11 + kord_tr = 11 + hydrostatic = .F. + phys_hydrostatic = .F. + use_hydro_pressure = .F. + beta = 0. + a_imp = 1. + p_fac = 0.1 + k_split = 2 + n_split = 5 + nwat = 6 + na_init = 1 + d_ext = 0.0 + dnats = 1 + fv_sg_adj = 300 + d2_bg = 0. + nord = 2 + dddmp = 0.1 + d4_bg = 0.15 + vtdm4 = 0.04 + delt_max = 0.008 + ke_bg = 0. + do_vort_damp = .T. + external_ic = .true. + external_eta = .T. + gfs_phil = .false. + nggps_ic = .true. + mountain = .false. + ncep_ic = .F. + d_con = 1.0 + hord_mt = 6 + hord_vt = 6 + hord_tm = 6 + hord_dp = -6 + hord_tr = 8 + adjust_dry_mass = .F. + consv_te = 0. + do_sat_adj = .T. + consv_am = .F. + fill = .T. + dwind_2d = .F. + print_freq = 3 + warm_start = .false. + no_dycore = .false. + z_tracer = .T. + agrid_vel_rst = .true. + read_increment = .F. + res_latlon_dynamics = "fv3_increment.nc" + write_3d_diags = .true. + + do_schmidt = .true. + target_lat = 22.0 + target_lon = -62.0 + stretch_fac = 1.0001 + regional = .true. + bc_update_interval = 3 + nrows_blend = 10 + + full_zs_filter = .F. !unreleased feature + n_zs_filter = 0 ! safety + nord_zs_filter = 4 +/ + + &surf_map_nml + zero_ocean = .F. + cd4 = 0.15 + cd2 = -1 + n_del2_strong = 0 + n_del2_weak = 15 + n_del4 = 2 + max_slope = 0.4 + peak_fac = 1. +/ + + &external_ic_nml + filtered_terrain = .true. + levp = 92 + gfs_dwinds = .true. + checker_tr = .F. + nt_checker = 0 +/ + + &gfs_physics_nml + fhzero = 3. + ldiag3d = .false. + lradar = .true. + avg_max_length = 3600. + h2o_phys = .true. + fhcyc = 24. + use_ufo = .true. + pre_rad = .false. + imp_physics = 11 + pdfcld = .false. + fhswr = 1800. + fhlwr = 1800. + ialb = 1 + iems = 1 + iaer = 111 + ico2 = 2 + isubc_sw = 2 + isubc_lw = 2 + isol = 2 + lwhtr = .true. + swhtr = .true. + cnvgwd = .false. + shal_cnv = .true. !Shallow convection + cal_pre = .false. + redrag = .true. + dspheat = .true. + hybedmf = .false. + hurr_pbl = .T. ! HWRF moninedmf + moninq_fac = -1.0 ! HWRF_moninedmf + satmedmf = .true. + isatmedmf = 1 + rlmx = 300. + elmx = 300. + sfc_rlm = 1 + random_clds = .false. + trans_trac = .true. + cnvcld = .true. + imfshalcnv = 2 + imfdeepcnv = 2 + cdmbgwd = 0.88, 0.04 + sfc_z0_type = 6 + prslrd0 = 0. + ivegsrc = 1 + isot = 1 + lsm = 1 + iopt_dveg = 2 + iopt_crs = 1 + iopt_btr = 1 + iopt_run = 1 + iopt_sfc = 1 + iopt_frz = 1 + iopt_inf = 1 + iopt_rad = 1 + iopt_alb = 2 + iopt_snf = 4 + iopt_tbot = 2 + iopt_stc = 1 + debug = .false. + oz_phys = .F. + oz_phys_2015 = .T. + nst_anl = .true. + nstf_name = @[NSTF_NAME] + cplflx = @[CPLFLX] + cplice = .false. + cplwav = @[CPLWAV] + cplwav2atm = @[CPLWAV2ATM] + cpl_imp_mrg = @[MERGE_IMPORT] + psautco = 0.0008, 0.0005 + prautco = 0.00015, 0.00015 + iau_delthrs = 6 + iaufhrs = 30 + iau_inc_files = '' + iau_drymassfixer = .false. + do_deep = .true. + lgfdlmprad = .true. + effr_in = .true. + do_sppt = .F. + do_shum = .F. + do_skeb = .F. + lndp_type = 0 + n_var_lndp = 0 + do_ca = .false. + ca_sgs = .false. + nca = 1 + scells = 2600 + tlives = 1800 + nseed = 1 + nfracseed = 0.5 + ca_trigger = .false. + ca_entr = .false. + ca_closure = .false. + ca_global = .false. + nca_g = 1 + ncells_g = 1 + nlives_g = 100 + nseed_g = 100 + ca_smooth = .false. + nspinup = 1 + iseed_ca = 1 + nsmooth = 100 + ca_amplitude = 0.35 +/ + + &gfdl_cloud_microphysics_nml + sedi_transport = .false. + do_sedi_heat = .false. + rad_snow = .true. + rad_graupel = .true. + rad_rain = .true. + const_vi = .F. + const_vs = .F. + const_vg = .F. + const_vr = .F. + vi_max = 1. + vs_max = 2. + vg_max = 12. + vr_max = 12. + qi_lim = 1. + prog_ccn = .false. + do_qa = .true. + fast_sat_adj = .true. + tau_l2v = 180. + tau_v2l = 90. + tau_g2v = 900. + rthresh = 10.e-6 ! This is a key parameter for cloud water + dw_land = 0.16 + dw_ocean = 0.10 + ql_gen = 1.0e-3 + ql_mlt = 1.0e-3 + qi0_crt = 8.0E-5 + qs0_crt = 1.0e-3 + tau_i2s = 1000. + c_psaci = 0.05 + c_pgacs = 0.01 + rh_inc = 0.30 + rh_inr = 0.30 + rh_ins = 0.30 + ccn_l = 300. + ccn_o = 100. + c_paut = 0.5 + c_cracw = 0.8 + use_ppm = .false. + use_ccn = .true. + mono_prof = .true. + z_slope_liq = .true. + z_slope_ice = .true. + de_ice = .false. + fix_negative = .true. + icloud_f = 1 + mp_time = 90. +/ + + &interpolator_nml + interp_method = 'conserve_great_circle' +/ + + &namsfc + FNGLAC = "global_glacier.2x2.grb", + FNMXIC = "global_maxice.2x2.grb", + FNTSFC = "RTGSST.1982.2012.monthly.clim.grb", + FNSNOC = "global_snoclim.1.875.grb", + FNZORC = "igbp" + !FNZORC = "global_zorclim.1x1.grb", + FNALBC = "global_snowfree_albedo.bosu.t1534.3072.1536.rg.grb", + FNALBC2 = "global_albedo4.1x1.grb", + FNAISC = "CFSR.SEAICE.1982.2012.monthly.clim.grb", + FNTG3C = "global_tg3clim.2.6x1.5.grb", + FNVEGC = "global_vegfrac.0.144.decpercent.grb", + FNVETC = "global_vegtype.igbp.t1534.3072.1536.rg.grb", + FNSOTC = "global_soiltype.statsgo.t1534.3072.1536.rg.grb", + FNSMCC = "global_soilmgldas.t1534.3072.1536.grb", + FNMSKH = "seaice_newland.grb", + FNTSFA = "", + FNACNA = "", + FNSNOA = "", + FNVMNC = "global_shdmin.0.144x0.144.grb", + FNVMXC = "global_shdmax.0.144x0.144.grb", + FNSLPC = "global_slope.1x1.grb", + FNABSC = "global_mxsnoalb.uariz.t1534.3072.1536.rg.grb", + LDEBUG =.true., + FSMCL(2) = 99999 + FSMCL(3) = 99999 + FSMCL(4) = 99999 + FTSFS = 90 + FAISS = 99999 + FSNOL = 99999 + FSICL = 99999 + FTSFL = 99999 + FAISL = 99999 + FVETL = 99999, + FSOTL = 99999, + FvmnL = 99999, + FvmxL = 99999, + FSLPL = 99999, + FABSL = 99999, + FSNOS = 99999, + FSICS = 99999, +/ + + &nam_stochy +/ + + &nam_sfcperts +/ + + &cires_ugwp_nml + knob_ugwp_solver = 2 + knob_ugwp_source = 1,1,0,0 + knob_ugwp_wvspec = 1,25,25,25 + knob_ugwp_azdir = 2,4,4,4 + knob_ugwp_stoch = 0,0,0,0 + knob_ugwp_effac = 1,1,1,1 + knob_ugwp_doaxyz = 1 + knob_ugwp_doheat = 1 + knob_ugwp_dokdis = 1 + knob_ugwp_ndx4lh = 1 + knob_ugwp_version = 0 + launch_level = 25 +/ diff --git a/tests/parm/model_configure_hafs_regional.IN b/tests/parm/model_configure_hafs_regional.IN new file mode 100644 index 0000000000..03d914c390 --- /dev/null +++ b/tests/parm/model_configure_hafs_regional.IN @@ -0,0 +1,43 @@ +print_esmf: .false. +start_year: @[SYEAR] +start_month: @[SMONTH] +start_day: @[SDAY] +start_hour: @[SHOUR] +start_minute: 0 +start_second: 0 +nhours_fcst: @[FHMAX] +dt_atmos: @[DT_ATMOS] +calendar: 'julian' +restart_interval: @[RESTART_INTERVAL] +output_1st_tstep_rst: .false. + +quilting: @[QUILTING] +write_groups: @[WRITE_GROUP] +write_tasks_per_group: @[WRTTASK_PER_GROUP] +num_files: @[NUM_FILES] +filename_base: @[FILENAME_BASE] +output_file: @[OUTPUT_FILE] +ichunk2d: -1 +jchunk2d: -1 +ichunk3d: -1 +jchunk3d: -1 +kchunk3d: -1 +ideflate: @[IDEFLATE] +nbits: @[NBITS] + +app_domain: 'regional' +output_grid: @[OUTPUT_GRID] +cen_lon: @[CEN_LON] # central longitude +cen_lat: @[CEN_LAT] # central latitude +lon1: @[LON1] # longitude of lower-left +lat1: @[LAT1] # latitude of lower-left +lon2: @[LON2] # longitude of upper-right +lat2: @[LAT2] # latitude of upper-right +dlon: @[DLON] +dlat: @[DLAT] + +nfhout: @[NFHOUT] +nfhmax_hf: @[NFHMAX_HF] +nfhout_hf: @[NFHOUT_HF] +nsout: -1 +output_fh: -1 diff --git a/tests/parm/nems.configure.hafs_atm.IN b/tests/parm/nems.configure.hafs_atm.IN new file mode 100644 index 0000000000..e44cdabd7a --- /dev/null +++ b/tests/parm/nems.configure.hafs_atm.IN @@ -0,0 +1,17 @@ + EARTH_component_list: ATM + + ATM_model: fv3 + ATM_attributes:: + :: + + runSeq:: + ATM + :: + + DRIVER_attributes:: + start_type = @[RUNTYPE] + :: + + ALLCOMP_attributes:: + mediator_read_restart = @[USE_COLDSTART] + :: diff --git a/tests/parm/nems.configure.hafs_atm_docn.IN b/tests/parm/nems.configure.hafs_atm_docn.IN new file mode 100644 index 0000000000..1c38776174 --- /dev/null +++ b/tests/parm/nems.configure.hafs_atm_docn.IN @@ -0,0 +1,108 @@ +############################################## +##### NEMS Run-Time Configuration File ##### +############################################## + +# EARTH # +EARTH_component_list: MED ATM OCN +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_attributes:: + Verbosity = 1 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 1 + Diagnostic = 0 +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 1 + Diagnostic = 0 + mesh_ocn = @[ocn_mesh] +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_prep_atm + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + ATM + OCN + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: + start_type = @[RUNTYPE] +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + MED_model = cmeps + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxNextSwCday = 3 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 6 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 20 + use_coldstart = true + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_read_restart = @[USE_COLDSTART] + mediator_present = true +:: + +ATM_modelio:: + diro = . + logfile = atm.log +:: + +OCN_modelio:: + diro = . + logfile = ocn.log +:: + +MED_modelio:: + diro = . + logfile = med.log +:: diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/nems.configure.hafs_atm_ocn.IN new file mode 100644 index 0000000000..5a64442462 --- /dev/null +++ b/tests/parm/nems.configure.hafs_atm_ocn.IN @@ -0,0 +1,146 @@ +############################################## +##### NEMS Run-Time Configuration File ##### +############################################## + +# EARTH # +EARTH_component_list: MED ATM OCN +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +MED_attributes:: + Verbosity = 1 + Diagnostic = 0 + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + MED_model = cmeps + history_n = 6 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + normalization = none + merge_type = copy +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 1 + Diagnostic = 0 + mesh_atm = @[MESH_ATM] +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 1 + Diagnostic = 0 + cdf_impexp_freq = 3 + cpl_hour = 0 + cpl_min = 0 + cpl_sec = @[coupling_interval_sec] + base_dtg = @[SYEAR]@[SMONTH]@[SDAY]@[SHOUR] + merge_import = .true. + skip_first_import = .true. + hycom_arche_output = .false. + hyc_esmf_exp_output = .true. + hyc_esmf_imp_output = .true. + import_diagnostics = .false. + import_setting = flexible + hyc_impexp_file = nems.configure + espc_show_impexp_minmax = .true. + ocean_start_dtg = @[OCEAN_START_DTG] + start_hour = 0 + start_min = 0 + start_sec = 0 + end_hour = @[FHMAX] + end_min = 0 + end_sec = 0 +:: + +# Run Sequence # +runSeq:: +@@[coupling_interval_sec] + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_prep_atm + MED med_phases_prep_ocn_accum + MED med_phases_prep_ocn_avg + MED -> ATM :remapMethod=redist + MED -> OCN :remapMethod=redist + ATM + OCN + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# Other Attributes # +DRIVER_attributes:: + start_type = @[RUNTYPE] +:: + +ALLCOMP_attributes:: + ATM_model = @[atm_model] + OCN_model = @[ocn_model] + MED_model = cmeps + ScalarFieldCount = 3 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldIdxNextSwCday = 3 + ScalarFieldName = cpl_scalars + start_type = startup + case_name = ufs.hafs + restart_n = 6 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 20 + use_coldstart = true + orb_eccen = 1.e36 + orb_iyear = 2000 + orb_iyear_align = 2000 + orb_mode = fixed_year + orb_mvelp = 1.e36 + orb_obliq = 1.e36 + mediator_read_restart = @[USE_COLDSTART] + mediator_present = true +:: + +ATM_modelio:: + diro = . + logfile = atm.log +:: + +OCN_modelio:: + diro = . + logfile = ocn.log +:: + +MED_modelio:: + diro = . + logfile = med.log +:: + +ocn_export_fields:: + 'sst' 'sea_surface_temperature' 'K' + 'mask' 'ocean_mask' '1' + 'cpl_scalars' 'cpl_scalars' '1' +:: + +ocn_import_fields:: + 'taux10' 'mean_zonal_moment_flx_atm' 'N_m-2' + 'tauy10' 'mean_merid_moment_flx_atm' 'N_m-2' + 'prcp' 'mean_prec_rate' 'kg_m-2_s-1' + 'swflxd' 'mean_net_sw_flx' 'W_m-2' + 'lwflxd' 'mean_net_lw_flx' 'W_m-2' + 'mslprs' 'inst_pres_height_surface' 'Pa' + 'sensflx' 'mean_sensi_heat_flx' 'W_m-2' + 'latflx' 'mean_laten_heat_flx' 'W_m-2' +:: diff --git a/tests/rt.conf b/tests/rt.conf index 3a47f27fd4..f4eb200d3d 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -98,7 +98,7 @@ RUN | fv3_rap RUN | fv3_hrrr | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -137,7 +137,7 @@ RUN | fv3_gsd_diag_debug RUN | fv3_rrfs_v1beta_debug | | fv3 | RUN | fv3_rrfs_v1alpha_debug | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | @@ -145,6 +145,19 @@ RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug #COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | #RUN | fv3_multigases_debug | | fv3 | +################################################################################################################################################################################### +# HAFS tests # +################################################################################################################################################################################### + +COMPILE | -DAPP=HAFS -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON | | fv3 | +RUN | hafs_regional_atm | | fv3 | +RUN | hafs_regional_atm_ocn | | fv3 | + +COMPILE | -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON | - wcoss_cray | fv3 | +RUN | hafs_regional_docn | - wcoss_cray | fv3 | +RUN | hafs_regional_docn_oisst | - wcoss_cray | fv3 | +RUN | hafs_regional_datm_cdeps | - wcoss_cray | fv3 | + ################################################################################################################################################################################### # NEMS Data Atmosphere tests # ################################################################################################################################################################################### diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 16b77d4d76..5cf4e3461e 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -19,7 +19,7 @@ RUN | fv3_gsd RUN | fv3_rrfs_v1alpha | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -52,7 +52,7 @@ RUN | control_ras_debug #RUN | control_ca_debug | | fv3 | RUN | control_noahmp_debug | | fv3 | -COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson,FV3_HAFS_v0_hwrf -DDEBUG=ON | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson_debug | | fv3 | #RUN | fv3_HAFS_v0_hwrf_debug | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug | | fv3 | diff --git a/tests/run_test.sh b/tests/run_test.sh index 96914c3cd3..a0e685fa16 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -86,9 +86,17 @@ cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh SRCD="${PATHTR}" RUND="${RUNDIR}" -atparse < ${PATHRT}/fv3_conf/${FV3_RUN:-fv3_run.IN} > fv3_run - -atparse < ${PATHRT}/parm/${INPUT_NML:-input.nml.IN} > input.nml +# FV3_RUN could have multiple entry seperated by space +for i in ${FV3_RUN:-fv3_run.IN} +do + atparse < ${PATHRT}/fv3_conf/${i} >> fv3_run +done + +if [[ $DATM_NEMS = 'true' ]] || [[ $DATM_CDEPS = 'true' ]] || [[ $FV3 = 'true' ]] || [[ $S2S = 'true' ]]; then + if [[ $HAFS = 'false' ]] || [[ $FV3 = 'true' && $HAFS = 'true' ]]; then + atparse < ${PATHRT}/parm/${INPUT_NML:-input.nml.IN} > input.nml + fi +fi atparse < ${PATHRT}/parm/${MODEL_CONFIGURE:-model_configure.IN} > model_configure @@ -109,11 +117,14 @@ if [[ $CPLWAV == .T. ]]; then fi if [[ $DATM_NEMS = 'true' ]] || [[ $DATM_CDEPS = 'true' ]] || [[ $S2S = 'true' ]]; then - edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in - edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input - edit_diag_table < ${PATHRT}/parm/${DIAG_TABLE:-diag_table_template} > diag_table - edit_data_table < ${PATHRT}/parm/data_table_template > data_table + if [[ $HAFS = 'false' ]]; then + edit_ice_in < ${PATHRT}/parm/ice_in_template > ice_in + edit_mom_input < ${PATHRT}/parm/${MOM_INPUT:-MOM_input_template_$OCNRES} > INPUT/MOM_input + edit_diag_table < ${PATHRT}/parm/${DIAG_TABLE:-diag_table_template} > diag_table + edit_data_table < ${PATHRT}/parm/data_table_template > data_table + fi fi + if [[ $DATM_NEMS = 'true' ]]; then cp ${PATHRT}/parm/datm_data_table.IN datm_data_table fi @@ -125,7 +136,12 @@ fi if [[ $DATM_CDEPS = 'true' ]]; then atparse < ${PATHRT}/parm/${DATM_IN_CONFIGURE:-datm_in} > datm_in - atparse < ${PATHRT}/parm/datm.streams.IN > datm.streams + atparse < ${PATHRT}/parm/${DATM_STREAM_CONFIGURE:-datm.streams.IN} > datm.streams +fi + +if [[ $DOCN_CDEPS = 'true' ]]; then + atparse < ${PATHRT}/parm/${DOCN_IN_CONFIGURE:-docn_in} > docn_in + atparse < ${PATHRT}/parm/${DOCN_STREAM_CONFIGURE:-docn.streams.IN} > docn.streams fi if [[ $SCHEDULER = 'pbs' ]]; then diff --git a/tests/tests/fv3_HAFS_v0_hwrf b/tests/tests/fv3_HAFS_v0_hwrf index c43a6836c4..e949fda1d9 100644 --- a/tests/tests/fv3_HAFS_v0_hwrf +++ b/tests/tests/fv3_HAFS_v0_hwrf @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP HAFS v0 HWRF compiled with 32-bit dynamics test +# FV3 HAFS v0 HWRF compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF suite results with previous trunk version" export CNTL_DIR=HAFS_v0_HWRF @@ -78,7 +78,7 @@ export NODES=$(expr $TASKS / $TPN + 1) DT_ATMOS="600" export FV3_RUN=c96_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf +export CCPP_SUITE=FV3_HAFS_v0_hwrf export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_HAFS_v0_hwrf_debug b/tests/tests/fv3_HAFS_v0_hwrf_debug index df5deac1b4..cd1afc1f31 100644 --- a/tests/tests/fv3_HAFS_v0_hwrf_debug +++ b/tests/tests/fv3_HAFS_v0_hwrf_debug @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP HAFS v0 HWRF compiled with 32-bit dynamics test +# FV3 HAFS v0 HWRF compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF suite results with previous trunk version" export CNTL_DIR=HAFS_v0_HWRF @@ -80,7 +80,7 @@ export FHMAX=3 DT_ATMOS="600" export FV3_RUN=c96_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf +export CCPP_SUITE=FV3_HAFS_v0_hwrf export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_HAFS_v0_hwrf_thompson b/tests/tests/fv3_HAFS_v0_hwrf_thompson index 0453d25068..b3e81840ab 100644 --- a/tests/tests/fv3_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_HAFS_v0_hwrf_thompson @@ -1,10 +1,10 @@ ############################################################################### # -# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics test +# FV3 HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics test # ############################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF suite results with previous trunk version" export CNTL_DIR=HAFS_v0_HWRF_thompson @@ -78,7 +78,7 @@ export NODES=$(expr $TASKS / $TPN + 1) DT_ATMOS="600" export FV3_RUN=c96_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_SUITE=FV3_HAFS_v0_hwrf_thompson export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug index f4bdd746e9..d9401dc3c2 100644 --- a/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_HAFS_v0_hwrf_thompson_debug @@ -1,10 +1,10 @@ ########################################################################################### # -# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# FV3 HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test # ########################################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF DEBU suite results with previous trunk version" export CNTL_DIR=HAFS_v0_HWRF_thompson_debug @@ -80,7 +80,7 @@ export FHMAX=3 DT_ATMOS="600" export FV3_RUN=c96_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_SUITE=FV3_HAFS_v0_hwrf_thompson export INPUT_NML=c96_HAFS_v0_hwrf.nml.IN export OZ_PHYS_OLD=.F. diff --git a/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson index 7cd38bae07..07f438fdef 100644 --- a/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson +++ b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson @@ -1,10 +1,10 @@ ########################################################################################### # -# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# FV3 HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test # ########################################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF DEBU suite results with previous trunk version" export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson @@ -30,7 +30,7 @@ export FHMAX=12 DT_ATMOS="300" export FV3_RUN=esg_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_SUITE=FV3_HAFS_v0_hwrf_thompson export INPUT_NML=esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug index 09cb6f792a..3dc37d873f 100644 --- a/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug +++ b/tests/tests/fv3_esg_HAFS_v0_hwrf_thompson_debug @@ -1,10 +1,10 @@ ########################################################################################### # -# FV3 CCPP HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test +# FV3 HAFS v0 HWRF with Thompson MP, compiled with 32-bit dynamics in DEBUG mode test # ########################################################################################### -export TEST_DESCR="Compare HAFS 32bit CCPP HWRF DEBU suite results with previous trunk version" +export TEST_DESCR="Compare HAFS 32bit HWRF DEBU suite results with previous trunk version" export CNTL_DIR=ESG_HAFS_v0_HWRF_thompson_debug @@ -30,7 +30,7 @@ export FHMAX=1 DT_ATMOS="300" export FV3_RUN=esg_HAFS_v0_hwrf_run.IN -export CCPP_SUITE=HAFS_v0_hwrf_thompson +export CCPP_SUITE=FV3_HAFS_v0_hwrf_thompson export INPUT_NML=esg_HAFS_v0_hwrf.nml.IN export MODEL_CONFIGURE=esg_HAFS_v0_hwrf-model_configure.IN diff --git a/tests/tests/hafs_regional_atm b/tests/tests/hafs_regional_atm new file mode 100644 index 0000000000..6262b28547 --- /dev/null +++ b/tests/tests/hafs_regional_atm @@ -0,0 +1,58 @@ +############################################################################### +# +# HAFS regional atmosphere only +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional atmosphere only results with previous trunk version" + +export CNTL_DIR=hafs_regional_atm + +export LIST_FILES="atmf006.nc \ + sfcf006.nc" + +export_fv3 + +export WLCLK=30 +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=300 +export THRD=2 +export TPN=$TPN_thrd +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export OUTPUT_GRID='regional_latlon' +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 + +export CPLFLX=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MERGE_IMPORT=.false. +export NSTF_NAME=2,0,0,0,0 +export INPES=20 +export JNPES=12 + +export CMEPS=false +export RUNTYPE="startup" +export USE_COLDSTART="false" + +export CCPP_SUITE=FV3_HAFS_v0_gfdlmp_tedmf +export INPUT_NML=input_hafs_regional.nml.IN +export MODEL_CONFIGURE="model_configure_hafs_regional.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm.IN" +export FV3_RUN="hafs_regional_run.IN" diff --git a/tests/tests/hafs_regional_atm_ocn b/tests/tests/hafs_regional_atm_ocn new file mode 100644 index 0000000000..5ea8faa98b --- /dev/null +++ b/tests/tests/hafs_regional_atm_ocn @@ -0,0 +1,65 @@ +############################################################################### +# +# HAFS regional atmosphere-ocean coupled with HYCOM +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional atmosphere-ocean coupled HYCOM results with previous trunk version" + +export CNTL_DIR=hafs_regional_atm_ocn + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + ufs.hafs.cpl.hi.2019-08-29-21600.nc \ + ufs.hafs.cpl.r.2019-08-29-21600.nc" + +export_fv3 +export_hafs_regional + +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=360 +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export OUTPUT_GRID='regional_latlon' +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 + +export CPLFLX=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MERGE_IMPORT=.true. +export NSTF_NAME=0,0,0,0,0 +export INPES=20 +export JNPES=12 + +export CDEPS_DOCN=false +export OCEAN_START_DTG=43340.00000 + +export atm_model="fv3" +export ocn_model="hycom" +export atm_petlist_bounds="0000 0299" +export ocn_petlist_bounds="0300 0359" +export med_petlist_bounds="0300 0359" +export coupling_interval_sec=360 +export MESH_ATM="unset" + +export CCPP_SUITE=FV3_HAFS_v0_gfdlmp_tedmf_nonsst +export INPUT_NML=input_hafs_regional.nml.IN +export MODEL_CONFIGURE="model_configure_hafs_regional.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export FV3_RUN="hafs_regional_run.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_datm_cdeps b/tests/tests/hafs_regional_datm_cdeps new file mode 100644 index 0000000000..71e646d03f --- /dev/null +++ b/tests/tests/hafs_regional_datm_cdeps @@ -0,0 +1,39 @@ +############################################################################### +# +# HAFS regional coupled CDEPS data atmosphere from ERA5 with regional HYCOM +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional coupled CDEPS data atmosphere from ERA5 with regional HYCOM results with previous trunk version" + +export CNTL_DIR=hafs_regional_datm_cdeps + +export LIST_FILES="ufs.hafs.cpl.hi.2019-08-30-00000.nc \ + ufs.hafs.cpl.r.2019-08-30-00000.nc \ + ufs.hafs.datm.r.2019-08-30-00000.nc" + +export_hafs_regional +export_hafs_datm_cdeps + +export FHMAX=24 +export RESTART_N=${FHMAX} +export TASKS=120 +export CPLWAV=.false. +export OCEAN_START_DTG=43340.00000 +export DOCN_CDEPS=false + +export ocn_model="hycom" +export med_petlist_bounds="0 59" +export atm_petlist_bounds="0 59" +export ocn_petlist_bounds="60 119" +export coupling_interval_sec=360 + +export atm_datamode="ERA5" +export MESH_ATM="INPUT_DATM/TL639_200618_ESMFmesh.nc" +export DATA_ATM="\"INPUT_DATM/ERA5.TL639.2019.08.200618_subset.nc\" \"INPUT_DATM/ERA5.TL639.2019.09.200618_subset.nc\"" +export ATM_NX_GLB=1440 +export ATM_NY_GLB=721 + +export MODEL_CONFIGURE="model_configure_hafs_regional.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_ocn.IN" +export FV3_RUN="hafs_datm_cdeps_era5.IN hycom_hat10_run.IN" diff --git a/tests/tests/hafs_regional_docn b/tests/tests/hafs_regional_docn new file mode 100644 index 0000000000..a2ff49b9c8 --- /dev/null +++ b/tests/tests/hafs_regional_docn @@ -0,0 +1,70 @@ +############################################################################### +# +# HAFS regional coupled with regional data ocean from MOM6 +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional coupled with regional data ocean from MOM6 results with previous trunk version" + +export CNTL_DIR=hafs_regional_docn + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + ufs.hafs.cpl.hi.2019-08-29-21600.nc \ + ufs.hafs.cpl.r.2019-08-29-21600.nc \ + ufs.hafs.docn.r.2019-08-29-21600.nc" + +export_fv3 +export_hafs_regional +export_hafs_docn_cdeps + +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=360 +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export OUTPUT_GRID='regional_latlon' +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 + +export CPLFLX=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MERGE_IMPORT=.true. +export NSTF_NAME=0,0,0,0,0 +export INPES=20 +export JNPES=12 + +export atm_model="fv3" +export ocn_model="docn" +export atm_petlist_bounds="0000 0299" +export ocn_petlist_bounds="0300 0359" +export med_petlist_bounds="0300 0359" +export coupling_interval_sec=360 + +export MESH_ATM="unset" +export ocn_mesh="INPUT_DOCN/hat10_210129_ESMFmesh_py.nc" +export ocn_data="INPUT_DOCN/hycom_201908_surf_nolev.nc" +export ocn_data_var="temp" +export ocn_nx_global=1135 +export ocn_ny_global=633 + +export CCPP_SUITE=FV3_HAFS_v0_gfdlmp_tedmf_nonsst +export INPUT_NML=input_hafs_regional.nml.IN +export MODEL_CONFIGURE="model_configure_hafs_regional.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" +export FV3_RUN="hafs_regional_run.IN hafs_docn_cdeps_mom6.IN" diff --git a/tests/tests/hafs_regional_docn_oisst b/tests/tests/hafs_regional_docn_oisst new file mode 100644 index 0000000000..410060a15e --- /dev/null +++ b/tests/tests/hafs_regional_docn_oisst @@ -0,0 +1,70 @@ +############################################################################### +# +# HAFS regional coupled with global data ocean from OISST +# +############################################################################### + +export TEST_DESCR="Compare HAFS regional coupled with global data ocean from OISST results with previous trunk version" + +export CNTL_DIR=hafs_regional_docn_oisst + +export LIST_FILES="atmf006.nc \ + sfcf006.nc \ + ufs.hafs.cpl.hi.2019-08-29-21600.nc \ + ufs.hafs.cpl.r.2019-08-29-21600.nc \ + ufs.hafs.docn.r.2019-08-29-21600.nc" + +export_fv3 +export_hafs_regional +export_hafs_docn_cdeps + +export FHMAX=6 +export RESTART_N=${FHMAX} +export TASKS=360 +export CEN_LON=-62.0 +export CEN_LAT=22.0 +export LON1=-116.90 +export LAT1=-14.45 +export LON2=-7.10 +export LAT2=58.45 +export DLON=0.1 +export DLAT=0.1 +export DT_ATMOS=180 +export IDEFLATE=1 +export NFHMAX_HF=-1 +export NFHOUT_HF=3 +export OUTPUT_FILE="'netcdf_parallel' 'netcdf_parallel'" +export OUTPUT_GRID='regional_latlon' +export SDAY=29 +export SHOUR=00 +export SMONTH=08 +export SYEAR=2019 +export WRTTASK_PER_GROUP=60 + +export CPLFLX=.true. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export MERGE_IMPORT=.true. +export NSTF_NAME=0,0,0,0,0 +export INPES=20 +export JNPES=12 + +export atm_model="fv3" +export ocn_model="docn" +export atm_petlist_bounds="0000 0299" +export ocn_petlist_bounds="0300 0359" +export med_petlist_bounds="0300 0359" +export coupling_interval_sec=360 + +export MESH_ATM="unset" +export ocn_mesh="INPUT_DOCN/TX025_210327_ESMFmesh_py.nc" +export ocn_data="INPUT_DOCN/sst.day.mean.2019.nc" +export ocn_data_var="sst" +export ocn_nx_global=1440 +export ocn_ny_global=720 + +export CCPP_SUITE=FV3_HAFS_v0_gfdlmp_tedmf_nonsst +export INPUT_NML=input_hafs_regional.nml.IN +export MODEL_CONFIGURE="model_configure_hafs_regional.IN" +export NEMS_CONFIGURE="nems.configure.hafs_atm_docn.IN" +export FV3_RUN="hafs_regional_run.IN hafs_docn_cdeps_oisst.IN"