From 0dbb6f6ad25c58833d83d5e00955d7dc0b9463ac Mon Sep 17 00:00:00 2001 From: "Jun.Wang" Date: Mon, 21 Oct 2019 14:32:25 +0000 Subject: [PATCH 01/22] point to Jun fv3atm personal fork --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 5acc46d0ab..0078deeae6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm + url = https://github.com/junwang-noaa/fv3atm branch = develop [submodule "NEMS"] path = NEMS From 302d428e3a32ed250d50e86238cbb3f0f8f5107d Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Tue, 1 Jun 2021 16:47:05 -0400 Subject: [PATCH 02/22] build full CDEPS library and link against it instead of data components Change-Id: Ie2103eab6d91105f9cd0e9bb069c2d95bef2b6b8 --- CDEPS-interface/CMakeLists.txt | 131 +++++++++++++++------------------ CMakeLists.txt | 5 +- 2 files changed, 62 insertions(+), 74 deletions(-) diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index cc52a64435..2874fa20a7 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -16,103 +16,92 @@ endif() include("cdeps_files.cmake") # CDEPS/share -add_library(share STATIC ${cdeps_share_files} ${ufs_cdeps_share_files}) -add_library(cdeps::share ALIAS share) +add_library(share OBJECT ${cdeps_share_files} ${ufs_cdeps_share_files}) set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) -target_include_directories(share PUBLIC $ - $) -target_link_libraries(share PUBLIC esmf) -list(APPEND LIB_TARGETS share) +target_include_directories(share PRIVATE $) +target_link_libraries(share PRIVATE esmf) # CDEPS/streams -add_library(streams STATIC ${cdeps_streams_files}) -add_library(cdeps::streams ALIAS streams) -add_dependencies(streams cdeps::share) +add_library(streams OBJECT ${cdeps_streams_files}) +add_dependencies(streams share) set_target_properties(streams PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(streams PUBLIC $ - $) -target_compile_definitions(streams PUBLIC "DISABLE_FoX") -target_link_libraries(streams PUBLIC cdeps::share) -target_link_libraries(streams PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS streams) +target_include_directories(streams PRIVATE $) +target_compile_definitions(streams PRIVATE "DISABLE_FoX") +target_link_libraries(streams PRIVATE share) +target_link_libraries(streams PRIVATE esmf PIO::PIO_Fortran) # CDEPS/dshr -add_library(dshr STATIC ${cdeps_dshr_files}) -add_library(cdeps::dshr ALIAS dshr) -add_dependencies(dshr cdeps::share cdeps::streams) +add_library(dshr OBJECT ${cdeps_dshr_files}) +add_dependencies(dshr share streams) set_target_properties(dshr PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dshr PUBLIC $ - $) -target_link_libraries(dshr PUBLIC cdeps::share cdeps::streams) -target_link_libraries(dshr PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS dshr) +target_include_directories(dshr PRIVATE $) +target_link_libraries(dshr PRIVATE share streams) +target_link_libraries(dshr PRIVATE esmf PIO::PIO_Fortran) # CDEPS/datm -add_library(datm STATIC ${cdeps_datm_files}) -add_library(cdeps::datm ALIAS datm) -add_dependencies(datm cdeps::share cdeps::streams cdeps::dshr) +add_library(datm OBJECT ${cdeps_datm_files}) +add_dependencies(datm share streams dshr) set_target_properties(datm PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(datm PUBLIC $ - $) -target_link_libraries(datm PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(datm PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS datm) +target_include_directories(datm PRIVATE $) +target_link_libraries(datm PRIVATE dshr share streams) +target_link_libraries(datm PRIVATE esmf PIO::PIO_Fortran) # CDEPS/dice -add_library(dice STATIC ${cdeps_dice_files}) -add_library(cdeps::dice ALIAS dice) -add_dependencies(dice cdeps::share cdeps::streams cdeps::dshr) +add_library(dice OBJECT ${cdeps_dice_files}) +add_dependencies(dice share streams dshr) set_target_properties(dice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dice PUBLIC $ - $) -target_link_libraries(dice PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dice PUBLIC esmf) -list(APPEND LIB_TARGETS dice) +target_include_directories(dice PRIVATE $) +target_link_libraries(dice PRIVATE dshr share streams) +target_link_libraries(dice PRIVATE esmf) # CDEPS/dlnd -add_library(dlnd STATIC ${cdeps_dlnd_files}) -add_library(cdeps::dlnd ALIAS dlnd) -add_dependencies(dlnd cdeps::share cdeps::streams cdeps::dshr) +add_library(dlnd OBJECT ${cdeps_dlnd_files}) +add_dependencies(dlnd share streams dshr) set_target_properties(dlnd PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dlnd PUBLIC $ - $) -target_link_libraries(dlnd PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dlnd PUBLIC esmf) -list(APPEND LIB_TARGETS dlnd) +target_include_directories(dlnd PRIVATE $) +target_link_libraries(dlnd PRIVATE dshr share streams) +target_link_libraries(dlnd PRIVATE esmf) # CDEPS/docn -add_library(docn STATIC ${cdeps_docn_files}) -add_library(cdeps::docn ALIAS docn) -add_dependencies(docn cdeps::share cdeps::streams cdeps::dshr) +add_library(docn OBJECT ${cdeps_docn_files}) +add_dependencies(docn share streams dshr) set_target_properties(docn PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(docn PUBLIC $ - $) -target_link_libraries(docn PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(docn PUBLIC esmf) -list(APPEND LIB_TARGETS docn) +target_include_directories(docn PRIVATE $) +target_link_libraries(docn PRIVATE dshr share streams) +target_link_libraries(docn PRIVATE esmf) # CDEPS/drof -add_library(drof STATIC ${cdeps_drof_files}) -add_library(cdeps::drof ALIAS drof) -add_dependencies(drof cdeps::share cdeps::streams cdeps::dshr) +add_library(drof OBJECT ${cdeps_drof_files}) +add_dependencies(drof share streams dshr) set_target_properties(drof PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(drof PUBLIC $ - $) -target_link_libraries(drof PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(drof PUBLIC esmf) -list(APPEND LIB_TARGETS drof) +target_include_directories(drof PRIVATE $) +target_link_libraries(drof PRIVATE dshr share streams) +target_link_libraries(drof PRIVATE esmf) # CDEPS/dwav -add_library(dwav STATIC ${cdeps_dwav_files}) -add_library(cdeps::dwav ALIAS dwav) -add_dependencies(dwav cdeps::share cdeps::streams cdeps::dshr) +add_library(dwav OBJECT ${cdeps_dwav_files}) +add_dependencies(dwav share streams dshr) set_target_properties(dwav PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dwav PUBLIC $ - $) -target_link_libraries(dwav PUBLIC cdeps::dshr cdeps::share cdeps::streams) -target_link_libraries(dwav PUBLIC esmf) -list(APPEND LIB_TARGETS dwav) +target_include_directories(dwav PRIVATE $) +target_link_libraries(dwav PRIVATE dshr share streams) +target_link_libraries(dwav PRIVATE esmf) + +# CDEPS +add_library(cdeps STATIC $ + $ + $ + $ + $ + $ + $ + $ + $) +add_library(cdeps::cdeps ALIAS cdeps) +target_include_directories(cdeps PUBLIC $ + $) +target_link_libraries(cdeps PUBLIC esmf PIO::PIO_Fortran) +list(APPEND LIB_TARGETS cdeps) ############################################################################### ### Install diff --git a/CMakeLists.txt b/CMakeLists.txt index b1a1f6ddb2..d476c8a8fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,11 +278,10 @@ if(CMEPS) endif() if(CDEPS) - add_dependencies(ufs cdeps::datm) + add_dependencies(ufs cdeps::cdeps) list(APPEND _ufs_defs_private CDEPS-interface/CDEPS FRONT_CDEPS_DATM=atm_comp_nuopc) - include_directories(${CMAKE_CURRENT_BINARY_DIR}/CDEPS-interface/CDEPS/datm) - target_link_libraries(ufs PUBLIC cdeps::datm) + target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") From e9210f8d2d88659cacfee98aac4f49718f974fd8 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Tue, 1 Jun 2021 16:53:47 -0400 Subject: [PATCH 03/22] remove erroneous PRIVATE compiler definition Change-Id: I7d848f4cd91bea74b04d8b43ab1f45a1ace8cda2 --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d476c8a8fd..fac4eb02ef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -279,8 +279,7 @@ endif() if(CDEPS) add_dependencies(ufs cdeps::cdeps) - list(APPEND _ufs_defs_private CDEPS-interface/CDEPS - FRONT_CDEPS_DATM=atm_comp_nuopc) + list(APPEND _ufs_defs_private FRONT_CDEPS_DATM=atm_comp_nuopc) target_link_libraries(ufs PUBLIC cdeps::cdeps) endif() From 28a53f4abec35b8c70d2f68d5d07a5ba80650551 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Tue, 1 Jun 2021 17:27:34 -0400 Subject: [PATCH 04/22] cleanup rt.conf and pass directly as CMAKE_FLAGS to compile.sh Change-Id: I92025fbae25785f84abf7fa1a08bfbca901bffa6 --- build.sh | 2 -- tests/compile.sh | 76 +++++++++++++---------------------------------- tests/rt.conf | 46 ++++++++++++++-------------- tests/rt_35d.conf | 38 ++++++++++++------------ tests/rt_gnu.conf | 22 +++++++------- 5 files changed, 73 insertions(+), 111 deletions(-) diff --git a/build.sh b/build.sh index 360f58ce5b..c2124336d0 100755 --- a/build.sh +++ b/build.sh @@ -16,8 +16,6 @@ export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} -[[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" - cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} make -j ${BUILD_JOBS:-4} VERBOSE=${BUILD_VERBOSE:-} diff --git a/tests/compile.sh b/tests/compile.sh index 811d196fa8..2ab7e69c37 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -68,7 +68,7 @@ else # Load fv3 module module use $PATHTR/modulefiles modulefile="ufs_${MACHINE_ID}" - if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then + if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then [[ -f $PATHTR/modulefiles/ufs_${MACHINE_ID}_debug ]] && modulefile="ufs_${MACHINE_ID}_debug" fi module load $modulefile @@ -80,27 +80,7 @@ echo "Compiling ${MAKE_OPT} into $BUILD_NAME.exe on $MACHINE_ID" # set CMAKE_FLAGS based on $MAKE_OPT -CMAKE_FLAGS='' - -if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DDEBUG=ON -DCMAKE_BUILD_TYPE=Debug" -elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DREPRO=ON" -fi - -if [[ "${MAKE_OPT}" == *"32BIT=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -D32BIT=ON" -fi - -if [[ "${MAKE_OPT}" == *"OPENMP=N"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DOPENMP=OFF" -fi - -if [[ "${MAKE_OPT}" == *"MULTI_GASES=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=ON" -else - CMAKE_FLAGS="${CMAKE_FLAGS} -DMULTI_GASES=OFF" -fi +CMAKE_FLAGS=$MAKE_OPT # FIXME - create CCPP include directory before building FMS to avoid # gfortran warnings of non-existent include directory (adding @@ -109,55 +89,40 @@ fi # this line can be removed once FMS becomes a pre-installed library mkdir -p $PATHTR/FV3/ccpp/include -CMAKE_FLAGS="${CMAKE_FLAGS} -DMPI=ON" +CMAKE_FLAGS+=" -DMPI=ON" -if [[ "${MAKE_OPT}" == *"DEBUG=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Debug" -elif [[ "${MAKE_OPT}" == *"REPRO=Y"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Bitforbit" +if [[ "${MAKE_OPT}" == *"-DDEBUG=ON"* ]]; then + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Debug" +elif [[ "${MAKE_OPT}" == *"-DREPRO=ON"* ]]; then + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Bitforbit" else - CMAKE_FLAGS="${CMAKE_FLAGS} -DCMAKE_BUILD_TYPE=Release" + CMAKE_FLAGS+=" -DCMAKE_BUILD_TYPE=Release" if [[ "${MACHINE_ID}" == "jet.intel" ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DSIMDMULTIARCH=ON" + CMAKE_FLAGS+=" -DSIMDMULTIARCH=ON" fi fi # Check if suites argument is provided or not set +ex -TEST=$( echo $MAKE_OPT | grep -e "SUITES=" ) +TEST=$( echo $MAKE_OPT | grep -e "-DCCPP_SUITES=" ) if [[ $? -eq 0 ]]; then - CCPP_SUITES=$( echo $MAKE_OPT | sed 's/.*SUITES=//' | sed 's/ .*//' ) - echo "Compiling suites ${CCPP_SUITES}" + SUITES=$( echo $MAKE_OPT | sed 's/.*-DCCPP_SUITES=//' | sed 's/ .*//' ) + echo "Compiling suites ${SUITES}" fi set -ex # Valid applications -if [[ "${MAKE_OPT}" == *"APP=ATM"* ]]; then - echo "MAKE_OPT = ${MAKE_OPT}" - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATM" -fi - -if [[ "${MAKE_OPT}" == *"APP=ATMW"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=ATMW" -fi - -if [[ "${MAKE_OPT}" == *"APP=S2S"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2S -DMOM6SOLO=ON" -fi - -if [[ "${MAKE_OPT}" == *"APP=S2SW"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=S2SW -DMOM6SOLO=ON" -fi -if [[ "${MAKE_OPT}" == *"APP=NG-GODAS"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS" +if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" fi -if [[ "${MAKE_OPT}" == *"APP=NG-GODAS-NEMSDATM"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DAPP=NG-GODAS-NEMSDATM" +if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then + CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") +echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" if [ $clean_before = YES ] ; then rm -rf ${BUILD_DIR} @@ -166,13 +131,12 @@ fi export BUILD_VERBOSE=1 export BUILD_DIR export BUILD_JOBS -export CCPP_SUITES export CMAKE_FLAGS bash -x ${PATHTR}/build.sh mv ${BUILD_DIR}/ufs_model ${PATHTR}/tests/${BUILD_NAME}.exe -if [[ "${MAKE_OPT}" == "DEBUG=Y" ]]; then +if [[ "${MAKE_OPT}" == "-DDEBUG=ON" ]]; then cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID}_debug ${PATHTR}/tests/modules.${BUILD_NAME} else cp ${PATHTR}/modulefiles/ufs_${MACHINE_ID} ${PATHTR}/tests/modules.${BUILD_NAME} @@ -183,5 +147,5 @@ if [ $clean_after = YES ] ; then fi elapsed=$SECONDS -echo "Elapsed time $elapsed seconds. Compiling ${MAKE_OPT} finished" -echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${MAKE_OPT}" > compile${COMPILE_NR}_time.log +echo "Elapsed time $elapsed seconds. Compiling ${CMAKE_FLAGS} finished" +echo "Compile ${COMPILE_NR/#_} elapsed time $elapsed seconds. ${CMAKE_FLAGS}" > compile${COMPILE_NR}_time.log diff --git a/tests/rt.conf b/tests/rt.conf index 3daf5f35d7..dbf1ab3826 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -2,7 +2,7 @@ # CPLD tests # ################################################################################################################################################################################### -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst | - wcoss_cray | fv3 | RUN | cpld_control | - wcoss_cray | fv3 | RUN | cpld_restart | - wcoss_cray | | cpld_control RUN | cpld_controlfrac | - wcoss_cray | fv3 | @@ -35,14 +35,14 @@ RUN | cpld_bmarkfrac_v16 RUN | cpld_bmarkfrac_v16_nsst | - wcoss_cray | fv3 | RUN | cpld_restart_bmarkfrac_v16 | - wcoss_cray | | cpld_bmarkfrac_v16 -COMPILE | APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp | - wcoss_cray | fv3 | RUN | cpld_bmark_wave | - wcoss_cray | fv3 | RUN | cpld_bmarkfrac_wave | - wcoss_cray | fv3 | RUN | cpld_bmarkfrac_wave_v16 | - wcoss_cray | fv3 | RUN | cpld_bmarkfrac_wave_v16_noahmp | - wcoss_cray | fv3 | RUN | cpld_control_wave | - wcoss_cray | fv3 | -COMPILE | APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray | fv3 | +COMPILE | -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled | - wcoss_cray | fv3 | RUN | cpld_debug | - wcoss_cray | fv3 | RUN | cpld_debugfrac | - wcoss_cray | fv3 | @@ -50,7 +50,7 @@ RUN | cpld_debugfrac # PROD tests # ################################################################################################################################################################################### -COMPILE | APP=ATM SUITES=FV3_GFS_2017 | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017 | | fv3 | RUN | fv3_control | | fv3 | RUN | fv3_decomp | - jet.intel | | @@ -71,15 +71,15 @@ RUN | fv3_iau RUN | fv3_lheatstrg | | fv3 | # Run multigases test in REPRO mode to avoid numerical instability in the deep atmosphere -COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON | | fv3 | RUN | fv3_multigases | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017,FV3_GFS_2017_stretched -D32BIT=ON | | fv3 | RUN | fv3_control_32bit | | fv3 | RUN | fv3_stretched | | fv3 | RUN | fv3_stretched_nest | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON | | fv3 | RUN | fv3_regional_control | | fv3 | RUN | fv3_regional_restart | | fv3 | fv3_regional_control RUN | fv3_regional_quilt | | fv3 | @@ -92,19 +92,19 @@ RUN | fv3_regional_quilt_RRTMGP #RUN | fv3_regional_c768 | jet.intel | fv3 | #RUN | fv3_regional_c768 | orion.intel | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | RUN | fv3_gfdlmprad_gwd | | fv3 | RUN | fv3_gfdlmprad_noahmp | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_csawmgshoc,FV3_GFS_2017_csawmg,FV3_GFS_2017_satmedmf,FV3_GFS_2017_satmedmfq | | fv3 | #RUN | fv3_csawmgshoc | | fv3 | #RUN | fv3_csawmg3shoc127 | | fv3 | RUN | fv3_csawmg | | fv3 | RUN | fv3_satmedmf | | fv3 | RUN | fv3_satmedmfq | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_gfdlmp,FV3_CPT_v0,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON | | fv3 | RUN | fv3_gfdlmp_32bit | | fv3 | RUN | fv3_gfdlmprad_32bit_post | | fv3 | RUN | fv3_cpt | | fv3 | @@ -118,7 +118,7 @@ RUN | fv3_thompson_no_aero # This test crashes with NaNs on jet.intel RUN | fv3_rrfs_v1beta | - jet.intel | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | @@ -126,16 +126,16 @@ RUN | fv3_gfs_v16_RRTMGP #RUN | fv3_gfs_v16_RRTMGP_c192L127 | | fv3 | #RUN | fv3_gfs_v16_RRTMGP_2thrd | | | -COMPILE | APP=ATM SUITES=FV3_GFS_v16_csawmg | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg | | fv3 | # fv3_gfsv16_csawmg crashes with a "bus error" on cheyenne.intel, turn off both tests RUN | fv3_gfsv16_csawmg | - cheyenne.intel | fv3 | RUN | fv3_gfsv16_csawmgt | - cheyenne.intel | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_gfdlmp,FV3_GFS_2017_gfdlmp_noahmp,FV3_GFS_v16_flake | | fv3 | RUN | fv3_gocart_clm | | fv3 | RUN | fv3_gfs_v16_flake | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -146,11 +146,11 @@ RUN | fv3_gfs_v16_ras # DEBUG tests # ################################################################################################################################################################################### -COMPILE | APP=ATM DEBUG=Y SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_2017,FV3_GFS_2017_stretched,FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_stretched_nest_debug | | fv3 | @@ -161,21 +161,21 @@ RUN | fv3_thompson_no_aero_debug RUN | fv3_rrfs_v1beta_debug | | fv3 | RUN | fv3_rrfs_v1alpha_debug | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -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 | RUN | fv3_gfsv16_ugwpv1_debug | | fv3 | RUN | fv3_gfs_v16_ras_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | fv3_multigases_debug | | fv3 | ################################################################################################################################################################################### # NEMS Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | APP=NG-GODAS-NEMSDATM | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM | - wcoss_cray | fv3 | RUN | datm_control_cfsr | - wcoss_cray | fv3 | RUN | datm_restart_cfsr | - wcoss_cray | | datm_control_cfsr RUN | datm_control_gefs | - wcoss_cray | fv3 | @@ -186,14 +186,14 @@ RUN | datm_bulk_gefs RUN | datm_mx025_cfsr | - wcoss_cray gaea.intel | fv3 | RUN | datm_mx025_gefs | - wcoss_cray | fv3 | -COMPILE | APP=NG-GODAS-NEMSDATM DEBUG=Y | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON | - wcoss_cray | fv3 | RUN | datm_debug_cfsr | - wcoss_cray | fv3 | ################################################################################################################################################################################### # CDEPS Data Atmosphere tests # ################################################################################################################################################################################### -COMPILE | APP=NG-GODAS | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS | - wcoss_cray | fv3 | RUN | datm_cdeps_control_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_restart_cfsr | - wcoss_cray | | datm_cdeps_control_cfsr RUN | datm_cdeps_control_gefs | - wcoss_cray | fv3 | @@ -206,14 +206,14 @@ RUN | datm_cdeps_mx025_gefs RUN | datm_cdeps_multiple_files_cfsr | - wcoss_cray | | -COMPILE | APP=NG-GODAS DEBUG=Y | - wcoss_cray | fv3 | +COMPILE | -DAPP=NG-GODAS -DDEBUG=ON | - wcoss_cray | fv3 | RUN | datm_cdeps_debug_cfsr | - wcoss_cray | fv3 | ################################################################################################################################################################################### # ATM-WAV tests # ################################################################################################################################################################################### -COMPILE | APP=ATMW SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp | - wcoss_cray | fv3 | +COMPILE | -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_2017,FV3_GFS_2017_gfdlmp | - wcoss_cray | fv3 | RUN | fv3_gfdlmprad | - wcoss_cray | fv3 | RUN | fv3_gfdlmprad_atmwav | - wcoss_cray | fv3 | RUN | fv3_wrtGauss_nemsio_c768 | + hera.intel | fv3 | diff --git a/tests/rt_35d.conf b/tests/rt_35d.conf index 685998a3d4..33c75ea371 100644 --- a/tests/rt_35d.conf +++ b/tests/rt_35d.conf @@ -1,23 +1,23 @@ ############################################################################################################################################################################### -# CPLD Benchmark 35d tests # +# CPLD Benchmark 35d tests # ############################################################################################################################################################################### -COMPILE | APP=S2SW SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + hera.intel orion.intel | fv3 | | -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012100100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013010100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013040100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013070100 -#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013100100 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + hera.intel orion.intel | fv3 | | +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012010100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012040100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012070100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2012100100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013010100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013040100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013070100 +#RUN | cpld_bmarkfrac_wave_v16_35d | | fv3 | | 2013100100 -COMPILE | APP=S2SW SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + hera.intel orion.intel +gaea.intel | fv3 | | -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012010100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012040100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012070100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012100100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013010100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013040100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013070100 -RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013100100 +COMPILE | -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp | + hera.intel orion.intel +gaea.intel | fv3 | | +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012010100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012040100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012070100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2012100100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013010100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013040100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013070100 +RUN | cpld_bmarkfrac_wave_v16_noahmp_35d | | fv3 | | 2013100100 diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index 820a84ab2b..4567c1e381 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -2,24 +2,24 @@ # CCPP PROD tests # ################################################################################################################################################################## -COMPILE | APP=ATM SUITES=FV3_GFS_2017_gfdlmp | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_gfdlmp | | fv3 | RUN | fv3_gfdlmp | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP | | fv3 | RUN | fv3_gfs_v16 | | fv3 | RUN | fv3_gfs_v16_restart | | | fv3_gfs_v16 RUN | fv3_gfs_v16_stochy | | fv3 | RUN | fv3_gfs_v16_flake | | fv3 | RUN | fv3_gfs_v16_RRTMGP | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON | | fv3 | RUN | fv3_gsd | | fv3 | RUN | fv3_thompson | | fv3 | RUN | fv3_thompson_no_aero | | fv3 | RUN | fv3_rrfs_v1alpha | | fv3 | RUN | fv3_rrfs_v1beta | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras | | fv3 | RUN | fv3_HAFS_v0_hwrf_thompson | | fv3 | #RUN | fv3_HAFS_v0_hwrf | | fv3 | RUN | fv3_esg_HAFS_v0_hwrf_thompson | | fv3 | @@ -27,7 +27,7 @@ RUN | fv3_gfsv16_ugwpv1 RUN | fv3_gfs_v16_ras | | fv3 | # This crashes with 'NaN in input field of mpp_reproducing_sum(_2d)' after 64 time steps -#COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y | | fv3 | +#COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON | | fv3 | #RUN | fv3_multigases | | fv3 | ################################################################################################################################################################## @@ -35,7 +35,7 @@ RUN | fv3_gfs_v16_ras ################################################################################################################################################################## # Exercise compilation without specifying suites (i.e. compile all suites) in DEBUG mode (faster than in PROD mode) -COMPILE | APP=ATM 32BIT=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -D32BIT=ON -DDEBUG=ON | | fv3 | RUN | fv3_control_debug | | fv3 | RUN | fv3_regional_control_debug | | fv3 | RUN | fv3_rrfs_v1alpha_debug | | fv3 | @@ -44,29 +44,29 @@ RUN | fv3_gsd_debug RUN | fv3_thompson_debug | | fv3 | RUN | fv3_thompson_no_aero_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15p2,FV3_GFS_v16,FV3_GFS_v16_RRTMGP -DDEBUG=ON | | fv3 | RUN | fv3_gfs_v15p2_debug | | fv3 | RUN | fv3_gfs_v16_debug | | fv3 | RUN | fv3_gfs_v16_RRTMGP_debug | | fv3 | -COMPILE | APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -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 | RUN | fv3_gfsv16_ugwpv1_debug | | fv3 | RUN | fv3_gfs_v16_ras_debug | | fv3 | -COMPILE | APP=ATM SUITES=FV3_GFS_2017_fv3wam 32BIT=Y MULTI_GASES=Y DEBUG=Y | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_2017_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON | | fv3 | RUN | fv3_multigases_debug | | fv3 | ################################################################################################################################################################## # S2S tests # ################################################################################################################################################################## -COMPILE | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | ################################################################################################################################################################## # Data Atmosphere tests # ################################################################################################################################################################## -COMPILE | APP=NG-GODAS-NEMSDATM | | fv3 | +COMPILE | -DAPP=NG-GODAS-NEMSDATM | | fv3 | From 0905841eda9667ca505228b75a97ba076d265b71 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Wed, 2 Jun 2021 13:15:25 -0400 Subject: [PATCH 05/22] fix rt.sh following reviewer comments Change-Id: I9619f724e12e36607ea84a009134e9997d9bddf0 --- tests/rt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/rt.sh b/tests/rt.sh index d4872f5f3d..95a3795794 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -632,7 +632,7 @@ EOF # Set RT_SUFFIX (regression test run directories and log files) and BL_SUFFIX # (regression test baseline directories) for REPRO or PROD runs - if [[ ${MAKE_OPT^^} =~ "REPRO=Y" ]]; then + if [[ ${MAKE_OPT^^} =~ "-DREPRO=ON" ]]; then RT_SUFFIX="_repro" BL_SUFFIX="_repro" else @@ -640,7 +640,7 @@ EOF BL_SUFFIX="" fi - if [[ ${MAKE_OPT^^} =~ "WW3=Y" ]]; then + if [[ ${MAKE_OPT^^} =~ "-DAPP=ATMW" ]] || [[ ${MAKE_OPT^^} =~ "-DAPP=S2SW" ]]; then COMPILE_PREV_WW3_NR=${COMPILE_NR} fi From 9c35a0a8094c308cd150d74c529174aa5170a4c7 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Wed, 2 Jun 2021 14:00:49 -0400 Subject: [PATCH 06/22] revert CDEPS changes to develop Change-Id: Ide8e962ffc1f1304c042bb79907789442180338f --- CDEPS-interface/CMakeLists.txt | 131 ++++++++++++++++++--------------- CMakeLists.txt | 8 +- 2 files changed, 76 insertions(+), 63 deletions(-) diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index 2874fa20a7..cc52a64435 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -16,92 +16,103 @@ endif() include("cdeps_files.cmake") # CDEPS/share -add_library(share OBJECT ${cdeps_share_files} ${ufs_cdeps_share_files}) +add_library(share STATIC ${cdeps_share_files} ${ufs_cdeps_share_files}) +add_library(cdeps::share ALIAS share) set_target_properties(share PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(share PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/ufs/cdeps_share) -target_include_directories(share PRIVATE $) -target_link_libraries(share PRIVATE esmf) +target_include_directories(share PUBLIC $ + $) +target_link_libraries(share PUBLIC esmf) +list(APPEND LIB_TARGETS share) # CDEPS/streams -add_library(streams OBJECT ${cdeps_streams_files}) -add_dependencies(streams share) +add_library(streams STATIC ${cdeps_streams_files}) +add_library(cdeps::streams ALIAS streams) +add_dependencies(streams cdeps::share) set_target_properties(streams PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(streams PRIVATE $) -target_compile_definitions(streams PRIVATE "DISABLE_FoX") -target_link_libraries(streams PRIVATE share) -target_link_libraries(streams PRIVATE esmf PIO::PIO_Fortran) +target_include_directories(streams PUBLIC $ + $) +target_compile_definitions(streams PUBLIC "DISABLE_FoX") +target_link_libraries(streams PUBLIC cdeps::share) +target_link_libraries(streams PUBLIC esmf PIO::PIO_Fortran) +list(APPEND LIB_TARGETS streams) # CDEPS/dshr -add_library(dshr OBJECT ${cdeps_dshr_files}) -add_dependencies(dshr share streams) +add_library(dshr STATIC ${cdeps_dshr_files}) +add_library(cdeps::dshr ALIAS dshr) +add_dependencies(dshr cdeps::share cdeps::streams) set_target_properties(dshr PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dshr PRIVATE $) -target_link_libraries(dshr PRIVATE share streams) -target_link_libraries(dshr PRIVATE esmf PIO::PIO_Fortran) +target_include_directories(dshr PUBLIC $ + $) +target_link_libraries(dshr PUBLIC cdeps::share cdeps::streams) +target_link_libraries(dshr PUBLIC esmf PIO::PIO_Fortran) +list(APPEND LIB_TARGETS dshr) # CDEPS/datm -add_library(datm OBJECT ${cdeps_datm_files}) -add_dependencies(datm share streams dshr) +add_library(datm STATIC ${cdeps_datm_files}) +add_library(cdeps::datm ALIAS datm) +add_dependencies(datm cdeps::share cdeps::streams cdeps::dshr) set_target_properties(datm PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(datm PRIVATE $) -target_link_libraries(datm PRIVATE dshr share streams) -target_link_libraries(datm PRIVATE esmf PIO::PIO_Fortran) +target_include_directories(datm PUBLIC $ + $) +target_link_libraries(datm PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(datm PUBLIC esmf PIO::PIO_Fortran) +list(APPEND LIB_TARGETS datm) # CDEPS/dice -add_library(dice OBJECT ${cdeps_dice_files}) -add_dependencies(dice share streams dshr) +add_library(dice STATIC ${cdeps_dice_files}) +add_library(cdeps::dice ALIAS dice) +add_dependencies(dice cdeps::share cdeps::streams cdeps::dshr) set_target_properties(dice PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dice PRIVATE $) -target_link_libraries(dice PRIVATE dshr share streams) -target_link_libraries(dice PRIVATE esmf) +target_include_directories(dice PUBLIC $ + $) +target_link_libraries(dice PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(dice PUBLIC esmf) +list(APPEND LIB_TARGETS dice) # CDEPS/dlnd -add_library(dlnd OBJECT ${cdeps_dlnd_files}) -add_dependencies(dlnd share streams dshr) +add_library(dlnd STATIC ${cdeps_dlnd_files}) +add_library(cdeps::dlnd ALIAS dlnd) +add_dependencies(dlnd cdeps::share cdeps::streams cdeps::dshr) set_target_properties(dlnd PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dlnd PRIVATE $) -target_link_libraries(dlnd PRIVATE dshr share streams) -target_link_libraries(dlnd PRIVATE esmf) +target_include_directories(dlnd PUBLIC $ + $) +target_link_libraries(dlnd PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(dlnd PUBLIC esmf) +list(APPEND LIB_TARGETS dlnd) # CDEPS/docn -add_library(docn OBJECT ${cdeps_docn_files}) -add_dependencies(docn share streams dshr) +add_library(docn STATIC ${cdeps_docn_files}) +add_library(cdeps::docn ALIAS docn) +add_dependencies(docn cdeps::share cdeps::streams cdeps::dshr) set_target_properties(docn PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(docn PRIVATE $) -target_link_libraries(docn PRIVATE dshr share streams) -target_link_libraries(docn PRIVATE esmf) +target_include_directories(docn PUBLIC $ + $) +target_link_libraries(docn PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(docn PUBLIC esmf) +list(APPEND LIB_TARGETS docn) # CDEPS/drof -add_library(drof OBJECT ${cdeps_drof_files}) -add_dependencies(drof share streams dshr) +add_library(drof STATIC ${cdeps_drof_files}) +add_library(cdeps::drof ALIAS drof) +add_dependencies(drof cdeps::share cdeps::streams cdeps::dshr) set_target_properties(drof PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(drof PRIVATE $) -target_link_libraries(drof PRIVATE dshr share streams) -target_link_libraries(drof PRIVATE esmf) +target_include_directories(drof PUBLIC $ + $) +target_link_libraries(drof PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(drof PUBLIC esmf) +list(APPEND LIB_TARGETS drof) # CDEPS/dwav -add_library(dwav OBJECT ${cdeps_dwav_files}) -add_dependencies(dwav share streams dshr) +add_library(dwav STATIC ${cdeps_dwav_files}) +add_library(cdeps::dwav ALIAS dwav) +add_dependencies(dwav cdeps::share cdeps::streams cdeps::dshr) set_target_properties(dwav PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) -target_include_directories(dwav PRIVATE $) -target_link_libraries(dwav PRIVATE dshr share streams) -target_link_libraries(dwav PRIVATE esmf) - -# CDEPS -add_library(cdeps STATIC $ - $ - $ - $ - $ - $ - $ - $ - $) -add_library(cdeps::cdeps ALIAS cdeps) -target_include_directories(cdeps PUBLIC $ - $) -target_link_libraries(cdeps PUBLIC esmf PIO::PIO_Fortran) -list(APPEND LIB_TARGETS cdeps) +target_include_directories(dwav PUBLIC $ + $) +target_link_libraries(dwav PUBLIC cdeps::dshr cdeps::share cdeps::streams) +target_link_libraries(dwav PUBLIC esmf) +list(APPEND LIB_TARGETS dwav) ############################################################################### ### Install diff --git a/CMakeLists.txt b/CMakeLists.txt index fac4eb02ef..b1a1f6ddb2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,9 +278,11 @@ if(CMEPS) endif() if(CDEPS) - add_dependencies(ufs cdeps::cdeps) - list(APPEND _ufs_defs_private FRONT_CDEPS_DATM=atm_comp_nuopc) - target_link_libraries(ufs PUBLIC cdeps::cdeps) + add_dependencies(ufs cdeps::datm) + list(APPEND _ufs_defs_private CDEPS-interface/CDEPS + FRONT_CDEPS_DATM=atm_comp_nuopc) + include_directories(${CMAKE_CURRENT_BINARY_DIR}/CDEPS-interface/CDEPS/datm) + target_link_libraries(ufs PUBLIC cdeps::datm) endif() target_compile_definitions(ufs PRIVATE "${_ufs_defs_private}") From 86c28b3719e9371b7207ffb47ffd6d265ab80611 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Thu, 3 Jun 2021 13:34:49 -0400 Subject: [PATCH 07/22] make DISABLE_FoX a PUBLIC compiler definition. --- CDEPS-interface/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index 2874fa20a7..3ba29b577b 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -27,7 +27,7 @@ add_library(streams OBJECT ${cdeps_streams_files}) add_dependencies(streams share) set_target_properties(streams PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(streams PRIVATE $) -target_compile_definitions(streams PRIVATE "DISABLE_FoX") +target_compile_definitions(streams PUBLIC "DISABLE_FoX") target_link_libraries(streams PRIVATE share) target_link_libraries(streams PRIVATE esmf PIO::PIO_Fortran) From 59d0459086c78fd060a474d8e0cf5e947c34e373 Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Mon, 14 Jun 2021 23:11:38 +0000 Subject: [PATCH 08/22] * update CDEPS * revise rt.conf * revise datm_cdeps_mx025_cfsr * revise datm_cdeps_mx025_gefs --- CDEPS-interface/CDEPS | 2 +- CMakeLists.txt | 2 +- tests/rt.conf | 2 +- tests/tests/datm_cdeps_mx025_cfsr | 9 ++++++--- tests/tests/datm_cdeps_mx025_gefs | 9 ++++++--- 5 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 07ca4a33eb..8d9b9ecfdc 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 07ca4a33eb47be20629fdf30e72f2eaf690a5110 +Subproject commit 8d9b9ecfdcb790bc19a58a9611a27bd43c9ebd2d diff --git a/CMakeLists.txt b/CMakeLists.txt index f53dad4eba..40cd29dae8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -278,7 +278,7 @@ endif() if(CDEPS) add_dependencies(ufs cdeps::datm) list(APPEND _ufs_defs_private CDEPS-interface/CDEPS - FRONT_CDEPS_DATM=atm_comp_nuopc) + FRONT_CDEPS_DATM=cdeps_datm_comp) include_directories(${CMAKE_CURRENT_BINARY_DIR}/CDEPS-interface/CDEPS/datm) target_link_libraries(ufs PUBLIC cdeps::datm) endif() diff --git a/tests/rt.conf b/tests/rt.conf index 4aec8fa0e3..98544c728e 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -173,7 +173,7 @@ RUN | datm_cdeps_control_gefs RUN | datm_cdeps_bulk_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_bulk_gefs | - wcoss_cray | fv3 | -RUN | datm_cdeps_mx025_cfsr | - wcoss_cray gaea.intel wcoss_dell_p3 orion.intel | fv3 | +RUN | datm_cdeps_mx025_cfsr | - wcoss_cray | fv3 | RUN | datm_cdeps_mx025_gefs | - wcoss_cray | fv3 | RUN | datm_cdeps_multiple_files_cfsr | - wcoss_cray | | diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index d291ca5b02..45385852b9 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -10,15 +10,18 @@ export LIST_FILES="RESTART/MOM.res.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" export_datm_cdeps -export WLCLK=40 export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export DT_DYNAM_MOM6='900' +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} export TASKS=$TASKS_cdeps_025 export TPN=$TPN_cdeps_025 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 082229a115..77f76bcd72 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -10,13 +10,16 @@ export LIST_FILES="RESTART/MOM.res.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc" export_datm_cdeps export atm_datamode="GEFS" +export DT_DYNAM_MOM6='900' +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} -export WLCLK=40 export IATM=1536 export JATM=768 export ATM_NX_GLB=$IATM From c5ca77ac59f76502041141aaf74c64e464eb46f4 Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Tue, 29 Jun 2021 19:44:08 +0000 Subject: [PATCH 09/22] update rt_gnu.conf --- tests/rt_gnu.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt_gnu.conf b/tests/rt_gnu.conf index b5dea0d36d..def9a58262 100644 --- a/tests/rt_gnu.conf +++ b/tests/rt_gnu.conf @@ -57,7 +57,7 @@ RUN | fv3_esg_HAFS_v0_hwrf_thompson_debug ################################################################################################################################################################## # S2S tests # ################################################################################################################################################################## -COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled 1 | | fv3 | +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled | | fv3 | RUN | cpld_control | | fv3 | COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON | | fv3 | From 3808ddc4baf11f10d041aea58114c590808b24d3 Mon Sep 17 00:00:00 2001 From: Bin Li Date: Wed, 30 Jun 2021 09:04:28 -0500 Subject: [PATCH 10/22] Update the following tests: datm_cdeps_mx025_cfsr datm_cdeps_mx025_gefs datm_mx025_cfsr datm_mx025_gefs --- tests/tests/datm_cdeps_mx025_cfsr | 4 +++- tests/tests/datm_cdeps_mx025_gefs | 4 +++- tests/tests/datm_mx025_cfsr | 11 ++++++++--- tests/tests/datm_mx025_gefs | 11 ++++++++--- 4 files changed, 22 insertions(+), 8 deletions(-) diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index 45385852b9..eecec87747 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -18,10 +18,12 @@ export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 -export DT_DYNAM_MOM6='900' export DAYS="0.5" export FHMAX=12 export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_cdeps_025 export TPN=$TPN_cdeps_025 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 77f76bcd72..7b6d02d35c 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -15,10 +15,12 @@ export LIST_FILES="RESTART/MOM.res.nc \ export_datm_cdeps export atm_datamode="GEFS" -export DT_DYNAM_MOM6='900' export DAYS="0.5" export FHMAX=12 export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} export IATM=1536 export JATM=768 diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index 78aaab184d..d1e87d24e2 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -10,15 +10,20 @@ export LIST_FILES="RESTART/MOM.res.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc" export_datm -export WLCLK=40 export DATM_SRC="CFSR" export FILENAME_BASE='cfsr.' export IATM=1760 export JATM=880 +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025 diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index a7e6201ab8..48c6c1198a 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -10,11 +10,16 @@ export LIST_FILES="RESTART/MOM.res.nc \ RESTART/MOM.res_1.nc \ RESTART/MOM.res_2.nc \ RESTART/MOM.res_3.nc \ - RESTART/iced.2011-10-02-00000.nc \ - RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc" + RESTART/iced.2011-10-01-43200.nc \ + RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc" export_datm -export WLCLK=40 +export DAYS="0.5" +export FHMAX=12 +export RESTART_N=${FHMAX} +export DT_DYNAM_MOM6='900' +export DT_THERM_MOM6='1800' +export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025 From 34183f0059b9abd1ff49366228ceb8dbd1a51d1f Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Tue, 6 Jul 2021 16:44:31 +0000 Subject: [PATCH 11/22] update rt.sh --- tests/rt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.sh b/tests/rt.sh index e0240af185..87cd7caeed 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -414,7 +414,7 @@ if [[ $TESTS_FILE =~ '35d' ]]; then TEST_35D=true fi -BL_DATE=20210616 +BL_DATE=20210706 if [[ $MACHINE_ID = hera.* ]] || [[ $MACHINE_ID = orion.* ]] || [[ $MACHINE_ID = cheyenne.* ]] || [[ $MACHINE_ID = gaea.* ]] || [[ $MACHINE_ID = jet.* ]]; then RTPWD=${RTPWD:-$DISKNM/NEMSfv3gfs/develop-${BL_DATE}/${RT_COMPILER^^}} else From f20123bb1409d9d251333c8e6b74623cb6f8eecb Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Tue, 6 Jul 2021 18:21:17 +0000 Subject: [PATCH 12/22] add wcoss_cray log --- tests/RegressionTests_wcoss_cray.log | 338 +++++++++++++-------------- 1 file changed, 169 insertions(+), 169 deletions(-) diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 8e1a050aef..6858ef6151 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Wed Jun 30 20:26:26 UTC 2021 +Tue Jul 6 17:35:03 UTC 2021 Start Regression test -Compile 001 elapsed time 845 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 002 elapsed time 942 seconds. APP=ATM 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 -Compile 003 elapsed time 843 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 004 elapsed time 904 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 005 elapsed time 854 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 006 elapsed time 469 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 007 elapsed time 457 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 008 elapsed time 460 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 009 elapsed time 458 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y - -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control +Compile 001 elapsed time 963 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 954 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 887 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 947 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 870 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 488 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 465 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 490 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 466 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug + +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -55,13 +55,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 191.755587 +The total amount of wall time = 187.565227 Test 001 control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_decomp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -104,13 +104,13 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 192.464003 +The total amount of wall time = 188.146789 Test 002 control_decomp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -149,13 +149,13 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 68.670998 +The total amount of wall time = 69.461825 Test 003 control_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_CubedSphereGrid +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_CubedSphereGrid Checking test 004 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 004 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 131.436204 +The total amount of wall time = 138.464133 Test 004 control_CubedSphereGrid PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_wrtGauss_netcdf_parallel Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -199,13 +199,13 @@ Checking test 005 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 195.253100 +The total amount of wall time = 187.826821 Test 005 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_c192 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_c192 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_c192 Checking test 006 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -216,13 +216,13 @@ Checking test 006 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 514.736516 +The total amount of wall time = 514.663265 Test 006 control_c192 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_stochy +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_stochy Checking test 007 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -233,13 +233,13 @@ Checking test 007 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 146.586946 +The total amount of wall time = 155.671747 Test 007 control_stochy PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ca -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ca +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ca +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ca Checking test 008 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -250,13 +250,13 @@ Checking test 008 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 144.606269 +The total amount of wall time = 139.427989 Test 008 control_ca PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lndp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lndp Checking test 009 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -267,13 +267,13 @@ Checking test 009 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 157.571607 +The total amount of wall time = 144.351798 Test 009 control_lndp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lheatstrg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lheatstrg Checking test 010 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -284,13 +284,13 @@ Checking test 010 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 179.764994 +The total amount of wall time = 188.346533 Test 010 control_lheatstrg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_merra2 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_merra2 Checking test 011 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -301,13 +301,13 @@ Checking test 011 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 244.775653 +The total amount of wall time = 258.367444 Test 011 control_merra2 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_rrtmgp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_rrtmgp Checking test 012 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -318,13 +318,13 @@ Checking test 012 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 233.869189 +The total amount of wall time = 233.086537 Test 012 control_rrtmgp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmg +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmg Checking test 013 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,13 +335,13 @@ Checking test 013 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 324.954248 +The total amount of wall time = 342.896517 Test 013 control_csawmg PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmgt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmgt Checking test 014 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -352,13 +352,13 @@ Checking test 014 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 391.857081 +The total amount of wall time = 403.747037 Test 014 control_csawmgt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_flake -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_flake +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_flake +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_flake Checking test 015 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -369,13 +369,13 @@ Checking test 015 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.113724 +The total amount of wall time = 246.549131 Test 015 control_flake PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1 -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ugwpv1 +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ugwpv1 Checking test 016 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -386,13 +386,13 @@ Checking test 016 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 224.894870 +The total amount of wall time = 218.032589 Test 016 control_ugwpv1 PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ras +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ras Checking test 017 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -403,13 +403,13 @@ Checking test 017 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 209.269467 +The total amount of wall time = 215.073259 Test 017 control_ras PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_noahmp -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_noahmp +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_noahmp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_noahmp Checking test 018 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -420,13 +420,13 @@ Checking test 018 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 200.577467 +The total amount of wall time = 212.615449 Test 018 control_noahmp PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_control +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_control Checking test 019 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -434,25 +434,25 @@ Checking test 019 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 350.427034 +The total amount of wall time = 340.679847 Test 019 regional_control PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_restart -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_restart +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_restart Checking test 020 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 213.444946 +The total amount of wall time = 224.895392 Test 020 regional_restart PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt Checking test 021 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -463,13 +463,13 @@ Checking test 021 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 325.680086 +The total amount of wall time = 323.825377 Test 021 regional_quilt PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_hafs -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_hafs +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_hafs +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_hafs Checking test 022 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -478,13 +478,13 @@ Checking test 022 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 338.474401 +The total amount of wall time = 328.699193 Test 022 regional_quilt_hafs PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_netcdf_parallel +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_netcdf_parallel Checking test 023 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -492,13 +492,13 @@ Checking test 023 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 326.898848 +The total amount of wall time = 326.909437 Test 023 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_RRTMGP -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_quilt_RRTMGP +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_quilt_RRTMGP Checking test 024 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -509,13 +509,13 @@ Checking test 024 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 445.315047 +The total amount of wall time = 439.580693 Test 024 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd Checking test 025 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -604,13 +604,13 @@ Checking test 025 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 194.061687 +The total amount of wall time = 192.634477 Test 025 fv3_gsd PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1alpha -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1alpha +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1alpha Checking test 026 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -675,13 +675,13 @@ Checking test 026 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 98.410383 +The total amount of wall time = 99.417528 Test 026 fv3_rrfs_v1alpha PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rap -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rap +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rap +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rap Checking test 027 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -746,13 +746,13 @@ Checking test 027 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 104.580142 +The total amount of wall time = 99.739933 Test 027 fv3_rap PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_hrrr -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_hrrr +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_hrrr +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_hrrr Checking test 028 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -817,13 +817,13 @@ Checking test 028 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 102.784885 +The total amount of wall time = 98.576916 Test 028 fv3_hrrr PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1beta -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1beta +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1beta Checking test 029 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -888,13 +888,13 @@ Checking test 029 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 99.165413 +The total amount of wall time = 97.331139 Test 029 fv3_rrfs_v1beta PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_HAFS_v0_hwrf_thompson Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -959,13 +959,13 @@ Checking test 030 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 168.170976 +The total amount of wall time = 163.422811 Test 030 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_esg_HAFS_v0_hwrf_thompson Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -980,26 +980,26 @@ Checking test 031 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 304.533620 +The total amount of wall time = 314.192665 Test 031 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_debug Checking test 032 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 140.121195 +The total amount of wall time = 141.500478 Test 032 control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_CubedSphereGrid_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_CubedSphereGrid_debug Checking test 033 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1026,169 +1026,169 @@ Checking test 033 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 150.178274 +The total amount of wall time = 151.405651 Test 033 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_wrtGauss_netcdf_parallel_debug Checking test 034 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 142.401569 +The total amount of wall time = 143.494519 Test 034 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_stochy_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_stochy_debug Checking test 035 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.435843 +The total amount of wall time = 165.995497 Test 035 control_stochy_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lndp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lndp_debug Checking test 036 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.554918 +The total amount of wall time = 144.513810 Test 036 control_lndp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_lheatstrg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_lheatstrg_debug Checking test 037 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.316518 +The total amount of wall time = 145.266464 Test 037 control_lheatstrg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_merra2_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_merra2_debug Checking test 038 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 192.910898 +The total amount of wall time = 202.289040 Test 038 control_merra2_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_rrtmgp_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_rrtmgp_debug Checking test 039 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 159.487673 +The total amount of wall time = 159.982163 Test 039 control_rrtmgp_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmg_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmg_debug Checking test 040 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 235.465011 +The total amount of wall time = 245.857498 Test 040 control_csawmg_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_csawmgt_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_csawmgt_debug Checking test 041 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.863925 +The total amount of wall time = 283.844216 Test 041 control_csawmgt_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ugwpv1_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ugwpv1_debug Checking test 042 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 153.308149 +The total amount of wall time = 156.098209 Test 042 control_ugwpv1_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_ras_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_ras_debug Checking test 043 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.116431 +The total amount of wall time = 143.868975 Test 043 control_ras_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_thompson_debug Checking test 044 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.517733 +The total amount of wall time = 167.417451 Test 044 control_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/control_thompson_no_aero_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/control_thompson_no_aero_debug Checking test 045 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.557055 +The total amount of wall time = 163.438877 Test 045 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/regional_control_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/regional_control_debug Checking test 046 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1196,13 +1196,13 @@ Checking test 046 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 = 243.647559 +The total amount of wall time = 243.730892 Test 046 regional_control_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd_debug Checking test 047 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1267,13 +1267,13 @@ Checking test 047 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 197.479359 +The total amount of wall time = 197.988299 Test 047 fv3_gsd_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_diag3d_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_gsd_diag3d_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_diag3d_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_gsd_diag3d_debug Checking test 048 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1338,13 +1338,13 @@ Checking test 048 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 245.319748 +The total amount of wall time = 243.453122 Test 048 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1beta_debug Checking test 049 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1409,13 +1409,13 @@ Checking test 049 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.856937 +The total amount of wall time = 190.078110 Test 049 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1alpha_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_rrfs_v1alpha_debug Checking test 050 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1480,13 +1480,13 @@ Checking test 050 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 190.229090 +The total amount of wall time = 189.737436 Test 050 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_HAFS_v0_hwrf_thompson_debug Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1551,13 +1551,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 197.407797 +The total amount of wall time = 196.331793 Test 051 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_23074/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_37238/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1572,11 +1572,11 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 357.809882 +The total amount of wall time = 365.886595 Test 052 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 20:54:56 UTC 2021 -Elapsed time: 00h:28m:30s. Have a nice day! +Tue Jul 6 18:03:30 UTC 2021 +Elapsed time: 00h:28m:27s. Have a nice day! From b555b4590e1eb88e2f4cf9a473704535360fb053 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 6 Jul 2021 12:41:44 -0600 Subject: [PATCH 13/22] RT JOBS PASSED: cheyenne.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 614 +++++++++++------------ 1 file changed, 307 insertions(+), 307 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index b1e380235a..9b9efef907 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,26 +1,26 @@ -Tue Jun 29 20:46:03 MDT 2021 +Tue Jul 6 11:47:15 MDT 2021 Start Regression test -Compile 001 elapsed time 980 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 1054 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 355 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 709 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 852 seconds. APP=ATM 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 -Compile 006 elapsed time 717 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 787 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 715 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 259 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 238 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 227 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 220 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 376 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 190 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 390 seconds. APP=NG-GODAS -Compile 016 elapsed time 201 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 715 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control +Compile 001 elapsed time 982 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1037 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 354 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 705 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 854 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 708 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 716 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 252 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 238 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 225 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 388 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 191 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 389 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 193 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 709 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 95.575088 +0:The total amount of wall time = 96.646810 Test 001 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 53.708983 +0:The total amount of wall time = 55.298212 Test 002 cpld_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 92.199075 +0:The total amount of wall time = 91.775317 Test 003 cpld_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 96.836781 +0:The total amount of wall time = 91.746387 Test 004 cpld_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 406.436359 +0:The total amount of wall time = 408.903203 Test 005 cpld_control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -0:The total amount of wall time = 290.678763 +0:The total amount of wall time = 291.346043 Test 006 cpld_restart_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 862.871547 +0:The total amount of wall time = 867.023736 Test 007 cpld_control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -0:The total amount of wall time = 471.393011 +0:The total amount of wall time = 449.111156 Test 008 cpld_restart_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 857.140583 +0:The total amount of wall time = 842.933319 Test 009 cpld_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_restart_bmark_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 477.935158 +0:The total amount of wall time = 456.729787 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_v16_nsst +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 870.069515 +0:The total amount of wall time = 811.141139 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_wave_v16 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 891.353407 +0:The total amount of wall time = 934.843337 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_bmark_wave_v16_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 945.292461 +0:The total amount of wall time = 931.339787 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_control_wave +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -0:The total amount of wall time = 140.557478 +0:The total amount of wall time = 124.394873 Test 014 cpld_control_wave PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 298.282086 +0:The total amount of wall time = 295.901331 Test 015 cpld_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 165.665723 +0:The total amount of wall time = 166.438170 Test 016 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_decomp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 171.400027 +0:The total amount of wall time = 167.537203 Test 017 control_decomp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 351.151900 +0:The total amount of wall time = 348.521521 Test 018 control_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 74.380280 +0:The total amount of wall time = 74.245569 Test 019 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_CubedSphereGrid +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,30 +1057,30 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 140.928659 +0:The total amount of wall time = 138.714387 Test 020 control_CubedSphereGrid PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_wrtGauss_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 185.085230 +0:The total amount of wall time = 185.126714 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c192 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 578.442540 +0:The total amount of wall time = 577.442181 Test 022 control_c192 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c384 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1045.756913 +0:The total amount of wall time = 1040.271392 Test 023 control_c384 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_c384gdas +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 887.034770 +0:The total amount of wall time = 905.433796 Test 024 control_c384gdas PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 112.579159 +0:The total amount of wall time = 113.975550 Test 025 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ca +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 110.791355 +0:The total amount of wall time = 109.815445 Test 026 control_ca PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lndp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 113.921703 +0:The total amount of wall time = 113.414028 Test 027 control_lndp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lheatstrg +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 166.610485 +0:The total amount of wall time = 164.979798 Test 028 control_lheatstrg PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_merra2 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.457474 +0:The total amount of wall time = 195.200564 Test 029 control_merra2 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 247.467731 +0:The total amount of wall time = 248.794848 Test 030 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.313632 +0:The total amount of wall time = 268.442588 Test 031 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 223.569192 +0:The total amount of wall time = 224.251449 Test 032 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 191.013740 +0:The total amount of wall time = 198.473293 Test 033 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 253.804796 +0:The total amount of wall time = 253.722050 Test 034 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 244.709153 +0:The total amount of wall time = 243.838593 Test 035 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_noahmp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 203.337171 +0:The total amount of wall time = 200.359228 Test 036 control_noahmp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1375,25 +1375,25 @@ Checking test 037 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 349.299777 +0:The total amount of wall time = 348.962456 Test 037 regional_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -0:The total amount of wall time = 191.170652 +0:The total amount of wall time = 190.421215 Test 038 regional_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,13 +1404,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 348.110215 +0:The total amount of wall time = 347.207076 Test 039 regional_quilt PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_2threads +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1421,13 +1421,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 930.234928 +0:The total amount of wall time = 928.145524 Test 040 regional_quilt_2threads PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_hafs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1436,27 +1436,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 347.806330 +0:The total amount of wall time = 347.623896 Test 041 regional_quilt_hafs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_netcdf_parallel +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_netcdf_parallel Checking test 042 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 348.387571 +0:The total amount of wall time = 347.503049 Test 042 regional_quilt_netcdf_parallel PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_quilt_RRTMGP +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1467,13 +1467,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 528.905950 +0:The total amount of wall time = 531.185287 Test 043 regional_quilt_RRTMGP PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1562,13 +1562,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 197.045785 +0:The total amount of wall time = 196.261995 Test 044 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1633,13 +1633,13 @@ Checking test 045 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.338064 +0:The total amount of wall time = 99.464409 Test 045 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rap +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1704,13 +1704,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 100.122702 +0:The total amount of wall time = 99.320397 Test 046 fv3_rap PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_hrrr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1775,13 +1775,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 98.873260 +0:The total amount of wall time = 97.186456 Test 047 fv3_hrrr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1846,13 +1846,13 @@ Checking test 048 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.166084 +0:The total amount of wall time = 97.446812 Test 048 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1917,13 +1917,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 197.945313 +0:The total amount of wall time = 197.724231 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1938,39 +1938,39 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 340.717885 +0:The total amount of wall time = 320.722410 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.490350 +0:The total amount of wall time = 156.273499 Test 051 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_2threads_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 273.945274 +0:The total amount of wall time = 273.311596 Test 052 control_2threads_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_CubedSphereGrid_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1997,169 +1997,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 170.184198 +0:The total amount of wall time = 170.133525 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_wrtGauss_netcdf_parallel_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.859434 +0:The total amount of wall time = 158.997231 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_stochy_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.465151 +0:The total amount of wall time = 178.548356 Test 055 control_stochy_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lndp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.634695 +0:The total amount of wall time = 160.228664 Test 056 control_lndp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_lheatstrg_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 156.342565 +0:The total amount of wall time = 156.349951 Test 057 control_lheatstrg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_merra2_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_merra2_debug Checking test 058 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 202.274067 +0:The total amount of wall time = 202.424401 Test 058 control_merra2_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_rrtmgp_debug Checking test 059 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.399407 +0:The total amount of wall time = 176.313726 Test 059 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_csawmg_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_csawmg_debug Checking test 060 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 246.058507 +0:The total amount of wall time = 244.216892 Test 060 control_csawmg_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_csawmgt_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_csawmgt_debug Checking test 061 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.652128 +0:The total amount of wall time = 281.901918 Test 061 control_csawmgt_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.721841 +0:The total amount of wall time = 173.192379 Test 062 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_ras_debug Checking test 063 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.615159 +0:The total amount of wall time = 158.728233 Test 063 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_debug Checking test 064 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.237886 +0:The total amount of wall time = 183.182511 Test 064 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_thompson_no_aero_debug Checking test 065 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 176.850179 +0:The total amount of wall time = 176.707407 Test 065 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2167,13 +2167,13 @@ Checking test 066 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 255.669475 +0:The total amount of wall time = 255.493585 Test 066 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd_debug Checking test 067 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2238,13 +2238,13 @@ Checking test 067 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 217.629931 +0:The total amount of wall time = 216.843986 Test 067 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_gsd_diag3d_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_gsd_diag3d_debug Checking test 068 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2309,13 +2309,13 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 267.526675 +0:The total amount of wall time = 265.610914 Test 068 fv3_gsd_diag3d_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2380,13 +2380,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 210.115222 +0:The total amount of wall time = 210.266386 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2451,13 +2451,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.813043 +0:The total amount of wall time = 209.529445 Test 070 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2522,13 +2522,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 219.130156 +0:The total amount of wall time = 220.381839 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2543,227 +2543,227 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 398.631394 +0:The total amount of wall time = 398.727132 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_control_cfsr Checking test 073 datm_control_cfsr results .... 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.195093 +0:The total amount of wall time = 101.935732 Test 073 datm_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... 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 = 65.692255 +0:The total amount of wall time = 64.899839 Test 074 datm_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_control_gefs Checking test 075 datm_control_gefs results .... 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.834019 +0:The total amount of wall time = 95.770104 Test 075 datm_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... 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.352816 +0:The total amount of wall time = 99.060373 Test 076 datm_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... 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.229966 +0:The total amount of wall time = 95.619978 Test 077 datm_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_mx025_cfsr Checking test 078 datm_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 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 = 388.232184 +0:The total amount of wall time = 351.531453 Test 078 datm_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_mx025_gefs Checking test 079 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 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 = 386.490874 +0:The total amount of wall time = 349.582372 Test 079 datm_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_debug_cfsr Checking test 080 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 274.604355 +0:The total amount of wall time = 274.541940 Test 080 datm_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_control_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_control_cfsr Checking test 081 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.609250 +0:The total amount of wall time = 166.449775 Test 081 datm_cdeps_control_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_restart_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_restart_cfsr Checking test 082 datm_cdeps_restart_cfsr results .... 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.936158 +0:The total amount of wall time = 103.673323 Test 082 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_control_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_control_gefs Checking test 083 datm_cdeps_control_gefs results .... 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 = 154.020336 +0:The total amount of wall time = 159.815007 Test 083 datm_cdeps_control_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_bulk_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_bulk_cfsr Checking test 084 datm_cdeps_bulk_cfsr results .... 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 = 167.037352 +0:The total amount of wall time = 166.906776 Test 084 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_bulk_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_bulk_gefs Checking test 085 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 159.631581 +0:The total amount of wall time = 160.314467 Test 085 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_mx025_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_mx025_cfsr Checking test 086 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 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 = 387.021104 +0:The total amount of wall time = 352.522850 Test 086 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_mx025_gefs +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_mx025_gefs Checking test 087 datm_cdeps_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 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 = 381.491976 +0:The total amount of wall time = 351.586603 Test 087 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_multiple_files_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_multiple_files_cfsr Checking test 088 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 165.215275 +0:The total amount of wall time = 166.343994 Test 088 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/datm_cdeps_debug_cfsr +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/datm_cdeps_debug_cfsr Checking test 089 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 454.429561 +0:The total amount of wall time = 454.638553 Test 089 datm_cdeps_debug_cfsr PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_38497/control_atmwav +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_57916/control_atmwav Checking test 090 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2806,11 +2806,11 @@ Checking test 090 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 374.491964 +0:The total amount of wall time = 373.235775 Test 090 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jun 29 21:56:35 MDT 2021 -Elapsed time: 01h:10m:32s. Have a nice day! +Tue Jul 6 12:41:42 MDT 2021 +Elapsed time: 00h:54m:28s. Have a nice day! From b6de63582f930750d4ebdcbb1afbda712cf86db2 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 6 Jul 2021 13:00:49 -0600 Subject: [PATCH 14/22] RT JOBS PASSED: cheyenne.gnu. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 192 ++++++++++++------------- 1 file changed, 96 insertions(+), 96 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 11bf63008a..ee2005e619 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,17 +1,17 @@ -Wed Jun 30 14:01:05 MDT 2021 +Tue Jul 6 12:35:50 MDT 2021 Start Regression test -Compile 001 elapsed time 334 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 324 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 292 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 361 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 157 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 432 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 225 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 229 seconds. APP=NG-GODAS-NEMSDATM - -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control +Compile 001 elapsed time 333 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 321 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 367 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 440 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 235 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 008 elapsed time 231 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 289.905966 +0:The total amount of wall time = 290.529663 Test 001 control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_restart +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 140.965748 +0:The total amount of wall time = 137.955903 Test 002 control_restart PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_stochy +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 178.340538 +0:The total amount of wall time = 173.847392 Test 003 control_stochy PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_flake +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 361.302259 +0:The total amount of wall time = 349.487808 Test 004 control_flake PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_rrtmgp +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 355.425132 +0:The total amount of wall time = 354.923567 Test 005 control_rrtmgp PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 370.128567 +0:The total amount of wall time = 363.207061 Test 006 control_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_no_aero +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 356.810522 +0:The total amount of wall time = 355.963558 Test 007 control_thompson_no_aero PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ugwpv1 +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 312.131756 +0:The total amount of wall time = 305.018485 Test 008 control_ugwpv1 PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ras +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 287.039152 +0:The total amount of wall time = 286.301957 Test 009 control_ras PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_gsd +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 354.071203 +0:The total amount of wall time = 353.728089 Test 010 fv3_gsd PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1alpha +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.549595 +0:The total amount of wall time = 170.109601 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1beta +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 170.263919 +0:The total amount of wall time = 170.760229 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 259.130913 +0:The total amount of wall time = 258.847625 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 461.233643 +0:The total amount of wall time = 446.311585 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_debug 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 = 84.337414 +0:The total amount of wall time = 83.529121 Test 015 control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_regional_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/regional_control_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_regional_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 133.756392 +0:The total amount of wall time = 134.842504 Test 016 regional_control_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1alpha_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 111.559268 +0:The total amount of wall time = 111.720937 Test 017 fv3_rrfs_v1alpha_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_rrfs_v1beta_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 111.964929 +0:The total amount of wall time = 112.150393 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_gsd_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,78 +787,78 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 117.541968 +0:The total amount of wall time = 117.939222 Test 019 fv3_gsd_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_debug Checking test 020 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 102.249995 +0:The total amount of wall time = 102.485383 Test 020 control_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_thompson_no_aero_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_thompson_no_aero_debug Checking test 021 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 99.555862 +0:The total amount of wall time = 99.002400 Test 021 control_thompson_no_aero_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_rrtmgp_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_rrtmgp_debug Checking test 022 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.107423 +0:The total amount of wall time = 91.883983 Test 022 control_rrtmgp_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ugwpv1_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ugwpv1_debug Checking test 023 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.769672 +0:The total amount of wall time = 89.860752 Test 023 control_ugwpv1_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/control_ras_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/control_ras_debug Checking test 024 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.742877 +0:The total amount of wall time = 84.415407 Test 024 control_ras_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_HAFS_v0_hwrf_thompson_debug Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -923,13 +923,13 @@ Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 112.967988 +0:The total amount of wall time = 113.321813 Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -944,13 +944,13 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 217.201958 +0:The total amount of wall time = 217.853859 Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/cpld_control +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/cpld_control Checking test 027 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1000,13 +1000,13 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -0:The total amount of wall time = 120.769741 +0:The total amount of wall time = 119.187661 Test 027 cpld_control PASS -baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_55456/cpld_debug +baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33195/cpld_debug Checking test 028 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1056,11 +1056,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -0:The total amount of wall time = 149.902263 +0:The total amount of wall time = 150.330488 Test 028 cpld_debug PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 14:27:20 MDT 2021 -Elapsed time: 00h:26m:15s. Have a nice day! +Tue Jul 6 13:00:47 MDT 2021 +Elapsed time: 00h:24m:57s. Have a nice day! From c0322923e00a29b5365561e4e1aac3314cd96bca Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 6 Jul 2021 14:39:25 -0500 Subject: [PATCH 15/22] RT JOBS PASSED: orion.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 633 +++++++++++++------------- 1 file changed, 324 insertions(+), 309 deletions(-) diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index fb2fea9fcf..5943080f99 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,26 +1,26 @@ -Wed Jun 30 08:51:38 CDT 2021 +Tue Jul 6 13:34:19 CDT 2021 Start Regression test -Compile 001 elapsed time 593 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 628 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 172 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 518 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 550 seconds. APP=ATM 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 -Compile 006 elapsed time 521 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 525 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 535 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 141 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 168 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 149 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 149 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 176 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 96 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 190 seconds. APP=NG-GODAS -Compile 016 elapsed time 102 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 544 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control +Compile 001 elapsed time 631 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 850 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 397 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 530 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 541 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 157 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 145 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 202 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 238 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 142 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 237 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 163 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 120.386166 + 0: The total amount of wall time = 103.332941 Test 001 cpld_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 68.249641 + 0: The total amount of wall time = 65.165575 Test 002 cpld_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 107.230216 + 0: The total amount of wall time = 97.877128 Test 003 cpld_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 104.825002 + 0: The total amount of wall time = 103.601924 Test 004 cpld_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 388.345877 + 0: The total amount of wall time = 423.395980 Test 005 cpld_control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 282.008841 + 0: The total amount of wall time = 293.556083 Test 006 cpld_restart_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 769.312714 + 0: The total amount of wall time = 782.550158 Test 007 cpld_control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 424.819461 + 0: The total amount of wall time = 442.746065 Test 008 cpld_restart_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 769.255661 + 0: The total amount of wall time = 764.244373 Test 009 cpld_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_restart_bmark_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 429.079390 + 0: The total amount of wall time = 430.884126 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_v16_nsst +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 762.727159 + 0: The total amount of wall time = 775.947626 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_wave_v16 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 803.357095 + 0: The total amount of wall time = 816.744509 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_bmark_wave_v16_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 798.666198 + 0: The total amount of wall time = 798.308705 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_control_wave +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 130.532692 + 0: The total amount of wall time = 138.960301 Test 014 cpld_control_wave PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/cpld_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 315.647303 + 0: The total amount of wall time = 319.546598 Test 015 cpld_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.551749 + 0: The total amount of wall time = 161.326959 Test 016 control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_decomp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.191792 + 0: The total amount of wall time = 162.843554 Test 017 control_decomp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.678237 + 0: The total amount of wall time = 163.910336 Test 018 control_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 73.859870 + 0: The total amount of wall time = 68.944657 Test 019 control_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_CubedSphereGrid +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 141.265818 + 0: The total amount of wall time = 128.693539 Test 020 control_CubedSphereGrid PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_wrtGauss_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 224.179294 + 0: The total amount of wall time = 194.517982 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c192 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 466.089111 + 0: The total amount of wall time = 468.359444 Test 022 control_c192 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c384 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 727.973834 + 0: The total amount of wall time = 737.238864 Test 023 control_c384 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_c384gdas +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1157,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 642.566715 + 0: The total amount of wall time = 638.079447 Test 024 control_c384gdas PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_stochy +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1174,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.891735 + 0: The total amount of wall time = 118.155953 Test 025 control_stochy PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ca +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1191,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.982825 + 0: The total amount of wall time = 118.302241 Test 026 control_ca PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lndp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1208,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.433230 + 0: The total amount of wall time = 120.367369 Test 027 control_lndp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lheatstrg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1225,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 161.678488 + 0: The total amount of wall time = 160.142655 Test 028 control_lheatstrg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_merra2 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 259.223610 + 0: The total amount of wall time = 231.851219 Test 029 control_merra2 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_rrtmgp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1259,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.316774 + 0: The total amount of wall time = 204.549662 Test 030 control_rrtmgp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmg +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1276,13 +1276,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 327.933448 + 0: The total amount of wall time = 347.366293 Test 031 control_csawmg PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmgt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1293,13 +1293,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 368.959866 + 0: The total amount of wall time = 367.816237 Test 032 control_csawmgt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_flake +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1310,13 +1310,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 237.207170 + 0: The total amount of wall time = 230.354557 Test 033 control_flake PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ugwpv1 +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.819358 + 0: The total amount of wall time = 197.548481 Test 034 control_ugwpv1 PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ras +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1344,13 +1344,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 184.887248 + 0: The total amount of wall time = 195.336756 Test 035 control_ras PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1361,13 +1361,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 206.808879 + 0: The total amount of wall time = 208.808820 Test 036 control_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_no_aero +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1378,13 +1378,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 207.258907 + 0: The total amount of wall time = 201.104568 Test 037 control_thompson_no_aero PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_noahmp +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1395,13 +1395,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.649805 + 0: The total amount of wall time = 185.940732 Test 038 control_noahmp PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_control +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1409,25 +1409,25 @@ Checking test 039 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 292.251890 + 0: The total amount of wall time = 290.674261 Test 039 regional_control PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_restart +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_restart Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 166.917617 + 0: The total amount of wall time = 158.190849 Test 040 regional_restart PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1438,13 +1438,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 305.161822 + 0: The total amount of wall time = 313.328013 Test 041 regional_quilt PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_2threads +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1455,13 +1455,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 215.781300 + 0: The total amount of wall time = 219.284950 Test 042 regional_quilt_2threads PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_hafs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1470,27 +1470,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 297.675695 + 0: The total amount of wall time = 307.424684 Test 043 regional_quilt_hafs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_netcdf_parallel +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 306.340192 + 0: The total amount of wall time = 309.417051 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_quilt_RRTMGP +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1501,13 +1501,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 397.371157 + 0: The total amount of wall time = 394.616576 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1596,13 +1596,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.541080 + 0: The total amount of wall time = 182.566459 Test 046 fv3_gsd PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1alpha +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1667,13 +1667,13 @@ Checking test 047 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 103.428369 + 0: The total amount of wall time = 98.465711 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rap +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1738,13 +1738,13 @@ Checking test 048 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.097968 + 0: The total amount of wall time = 94.914603 Test 048 fv3_rap PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_hrrr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1809,13 +1809,13 @@ Checking test 049 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.843796 + 0: The total amount of wall time = 97.165562 Test 049 fv3_hrrr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1beta +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1880,13 +1880,13 @@ Checking test 050 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 98.034036 + 0: The total amount of wall time = 96.894606 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1951,13 +1951,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 155.158489 + 0: The total amount of wall time = 164.997102 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1972,39 +1972,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 290.664105 + 0: The total amount of wall time = 291.354907 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.605568 + 0: The total amount of wall time = 158.610504 Test 053 control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_2threads_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_2threads_debug Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.839546 + 0: The total amount of wall time = 232.523421 Test 054 control_2threads_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_CubedSphereGrid_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2031,169 +2031,169 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 176.082324 + 0: The total amount of wall time = 177.778157 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_wrtGauss_netcdf_parallel_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.313444 + 0: The total amount of wall time = 167.830268 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_stochy_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_stochy_debug Checking test 057 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.211869 + 0: The total amount of wall time = 187.080712 Test 057 control_stochy_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lndp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.204324 + 0: The total amount of wall time = 161.956236 Test 058 control_lndp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_lheatstrg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.506386 + 0: The total amount of wall time = 158.217292 Test 059 control_lheatstrg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_merra2_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 241.408410 + 0: The total amount of wall time = 247.078451 Test 060 control_merra2_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_rrtmgp_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_rrtmgp_debug Checking test 061 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 185.489607 + 0: The total amount of wall time = 180.229046 Test 061 control_rrtmgp_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmg_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmg_debug Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.740133 + 0: The total amount of wall time = 275.798694 Test 062 control_csawmg_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_csawmgt_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_csawmgt_debug Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 304.753180 + 0: The total amount of wall time = 314.001063 Test 063 control_csawmgt_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ugwpv1_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.098374 + 0: The total amount of wall time = 183.735435 Test 064 control_ugwpv1_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_ras_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.749000 + 0: The total amount of wall time = 162.546949 Test 065 control_ras_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_debug Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 187.023094 + 0: The total amount of wall time = 185.500740 Test 066 control_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_thompson_no_aero_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_thompson_no_aero_debug Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.484188 + 0: The total amount of wall time = 182.884681 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/regional_control_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/regional_control_debug Checking test 068 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2201,13 +2201,13 @@ Checking test 068 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 = 248.189272 + 0: The total amount of wall time = 241.319606 Test 068 regional_control_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd_debug Checking test 069 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2272,13 +2272,13 @@ Checking test 069 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.649846 + 0: The total amount of wall time = 221.421845 Test 069 fv3_gsd_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_gsd_diag3d_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_gsd_diag3d_debug Checking test 070 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2343,13 +2343,13 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 362.368427 + 0: The total amount of wall time = 347.887256 Test 070 fv3_gsd_diag3d_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1beta_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1beta_debug Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2414,13 +2414,13 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 210.944670 + 0: The total amount of wall time = 218.300674 Test 071 fv3_rrfs_v1beta_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_rrfs_v1alpha_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_rrfs_v1alpha_debug Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2485,13 +2485,13 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 212.780258 + 0: The total amount of wall time = 211.695610 Test 072 fv3_rrfs_v1alpha_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2556,13 +2556,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 220.708292 + 0: The total amount of wall time = 219.253165 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2577,213 +2577,228 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 402.083354 + 0: The total amount of wall time = 411.386448 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_control_cfsr Checking test 075 datm_control_cfsr results .... 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.913262 + 0: The total amount of wall time = 104.487213 Test 075 datm_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_restart_cfsr Checking test 076 datm_restart_cfsr results .... 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 = 77.055802 + 0: The total amount of wall time = 74.860746 Test 076 datm_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_control_gefs Checking test 077 datm_control_gefs results .... 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.267816 + 0: The total amount of wall time = 94.947500 Test 077 datm_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_bulk_cfsr Checking test 078 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 99.114909 + 0: The total amount of wall time = 103.182252 Test 078 datm_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_bulk_gefs Checking test 079 datm_bulk_gefs results .... 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.344357 + 0: The total amount of wall time = 95.384838 Test 079 datm_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_mx025_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_mx025_cfsr Checking test 080 datm_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 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 = 400.251413 + 0: The total amount of wall time = 353.150960 Test 080 datm_mx025_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_mx025_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_mx025_gefs Checking test 081 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 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 = 387.132643 + 0: The total amount of wall time = 334.935643 Test 081 datm_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_debug_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_debug_cfsr Checking test 082 datm_debug_cfsr results .... 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 = 283.014467 + 0: The total amount of wall time = 280.800983 Test 082 datm_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_control_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_control_cfsr Checking test 083 datm_cdeps_control_cfsr results .... 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.677337 + 0: The total amount of wall time = 156.035237 Test 083 datm_cdeps_control_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_restart_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_restart_cfsr Checking test 084 datm_cdeps_restart_cfsr results .... 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.854627 + 0: The total amount of wall time = 97.116173 Test 084 datm_cdeps_restart_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_control_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_control_gefs Checking test 085 datm_cdeps_control_gefs results .... 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 = 146.365578 + 0: The total amount of wall time = 149.414000 Test 085 datm_cdeps_control_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_bulk_cfsr +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_bulk_cfsr Checking test 086 datm_cdeps_bulk_cfsr results .... 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.217466 + 0: The total amount of wall time = 151.900707 Test 086 datm_cdeps_bulk_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_bulk_gefs +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_bulk_gefs Checking test 087 datm_cdeps_bulk_gefs results .... 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 = 148.580770 + 0: The total amount of wall time = 152.598635 Test 087 datm_cdeps_bulk_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_mx025_gefs -Checking test 088 datm_cdeps_mx025_gefs results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_mx025_cfsr +Checking test 088 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + + 0: The total amount of wall time = 346.722854 + +Test 088 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_mx025_gefs +Checking test 089 datm_cdeps_mx025_gefs results .... + 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.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 = 387.037570 + 0: The total amount of wall time = 356.639202 -Test 088 datm_cdeps_mx025_gefs PASS +Test 089 datm_cdeps_mx025_gefs PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_multiple_files_cfsr -Checking test 089 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_multiple_files_cfsr +Checking test 090 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 154.715990 + 0: The total amount of wall time = 147.787697 -Test 089 datm_cdeps_multiple_files_cfsr PASS +Test 090 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/datm_cdeps_debug_cfsr -Checking test 090 datm_cdeps_debug_cfsr results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/datm_cdeps_debug_cfsr +Checking test 091 datm_cdeps_debug_cfsr results .... 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 = 453.486751 + 0: The total amount of wall time = 462.572874 -Test 090 datm_cdeps_debug_cfsr PASS +Test 091 datm_cdeps_debug_cfsr PASS -baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_98602/control_atmwav -Checking test 091 control_atmwav results .... +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_56818/control_atmwav +Checking test 092 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2825,11 +2840,11 @@ Checking test 091 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 353.736708 + 0: The total amount of wall time = 361.480207 -Test 091 control_atmwav PASS +Test 092 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 09:55:18 CDT 2021 -Elapsed time: 01h:03m:40s. Have a nice day! +Tue Jul 6 14:39:15 CDT 2021 +Elapsed time: 01h:04m:56s. Have a nice day! From 609d40a14487880e57d1ce6f6f4d8e5feafdaed0 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 6 Jul 2021 20:13:47 +0000 Subject: [PATCH 16/22] RT JOBS PASSED: hera.gnu. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_hera.gnu.log | 248 ++++++++++++----------------- 1 file changed, 105 insertions(+), 143 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 519d36f2cb..a1bbac7fa4 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,17 +1,17 @@ -Wed Jun 30 14:43:04 UTC 2021 +Tue Jul 6 17:32:43 UTC 2021 Start Regression test -Compile 001 elapsed time 177 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 177 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta 32BIT=Y -Compile 003 elapsed time 171 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 004 elapsed time 161 seconds. APP=ATM 32BIT=Y DEBUG=Y -Compile 005 elapsed time 88 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 006 elapsed time 195 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -Compile 007 elapsed time 110 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled DEBUG=Y -Compile 008 elapsed time 93 seconds. APP=NG-GODAS-NEMSDATM - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control +Compile 001 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 175 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_GFS_v16_thompson,FV3_RRFS_v1alpha,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 174 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 162 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 93 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 197 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 111 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 008 elapsed time 94 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -54,13 +54,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 834.485162 + 0: The total amount of wall time = 825.558834 Test 001 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -99,13 +99,13 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 394.106925 + 0: The total amount of wall time = 403.420102 Test 002 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_stochy Checking test 003 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -116,13 +116,13 @@ Checking test 003 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 659.721010 + 0: The total amount of wall time = 654.632666 Test 003 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_flake Checking test 004 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -133,13 +133,13 @@ Checking test 004 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1407.446660 + 0: The total amount of wall time = 1420.966866 Test 004 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_rrtmgp Checking test 005 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -150,13 +150,13 @@ Checking test 005 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 853.275715 + 0: The total amount of wall time = 862.990139 Test 005 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -167,13 +167,13 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1018.030544 + 0: The total amount of wall time = 1020.295869 Test 006 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -184,13 +184,13 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 973.859375 + 0: The total amount of wall time = 992.222416 Test 007 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ugwpv1 Checking test 008 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -201,13 +201,13 @@ Checking test 008 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 958.185512 + 0: The total amount of wall time = 959.089264 Test 008 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -218,13 +218,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 847.117174 + 0: The total amount of wall time = 828.327600 Test 009 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_gsd Checking test 010 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -313,13 +313,13 @@ Checking test 010 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 825.325515 + 0: The total amount of wall time = 824.819481 Test 010 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1alpha Checking test 011 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -384,13 +384,13 @@ Checking test 011 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 395.790271 + 0: The total amount of wall time = 400.137584 Test 011 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1beta Checking test 012 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -455,13 +455,13 @@ Checking test 012 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 396.363541 + 0: The total amount of wall time = 382.573364 Test 012 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_HAFS_v0_hwrf_thompson Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -526,13 +526,13 @@ Checking test 013 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 614.458585 + 0: The total amount of wall time = 637.196424 Test 013 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_esg_HAFS_v0_hwrf_thompson Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -547,26 +547,26 @@ Checking test 014 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 445.720360 + 0: The total amount of wall time = 439.477006 Test 014 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_debug 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 = 103.401686 + 0: The total amount of wall time = 100.627350 Test 015 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/regional_control_debug Checking test 016 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -574,13 +574,13 @@ Checking test 016 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 118.368426 + 0: The total amount of wall time = 120.252963 Test 016 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1alpha_debug Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -645,13 +645,13 @@ Checking test 017 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.527624 + 0: The total amount of wall time = 122.638242 Test 017 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_rrfs_v1beta_debug Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -716,13 +716,13 @@ Checking test 018 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 119.217557 + 0: The total amount of wall time = 123.735986 Test 018 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_gsd_debug Checking test 019 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -787,67 +787,78 @@ Checking test 019 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.243663 + 0: The total amount of wall time = 129.358538 Test 019 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_debug Checking test 020 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.342652 + 0: The total amount of wall time = 115.794855 Test 020 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_thompson_no_aero_debug Checking test 021 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.566901 + 0: The total amount of wall time = 111.799540 Test 021 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_rrtmgp_debug Checking test 022 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.427783 + 0: The total amount of wall time = 109.558826 Test 022 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/control_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ugwpv1_debug Checking test 023 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 106.400315 + 0: The total amount of wall time = 110.306199 Test 023 control_ugwpv1_debug PASS -Test 024 control_ras_debug FAIL +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/control_ras_debug +Checking test 024 control_ras_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + + 0: The total amount of wall time = 100.576109 -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_HAFS_v0_hwrf_thompson_debug +Test 024 control_ras_debug PASS + + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_HAFS_v0_hwrf_thompson_debug Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -912,13 +923,13 @@ Checking test 025 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 135.406470 + 0: The total amount of wall time = 136.812895 Test 025 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -933,13 +944,13 @@ Checking test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 239.086113 + 0: The total amount of wall time = 234.325745 Test 026 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/cpld_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/cpld_control Checking test 027 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -989,13 +1000,13 @@ Checking test 027 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 673.471875 + 0: The total amount of wall time = 646.190925 Test 027 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_155242/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/GNU/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_88085/cpld_debug Checking test 028 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1045,60 +1056,11 @@ Checking test 028 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 373.354980 + 0: The total amount of wall time = 370.828802 Test 028 cpld_debug PASS -FAILED TESTS: -Test control_ras_debug 024 failed failed -Test control_ras_debug 024 failed in run_test failed - -REGRESSION TEST FAILED -Wed Jun 30 15:30:53 UTC 2021 -Elapsed time: 00h:47m:49s. Have a nice day! - - - -# DOM - RERUNNING RAS TESTS (PROD, DEBUG) AFTER FSCAV UPDATES - - - -Wed Jun 30 17:35:49 UTC 2021 -Start Regression test - -Compile 001 elapsed time 186 seconds. APP=ATM SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras -Compile 002 elapsed time 164 seconds. APP=ATM 32BIT=Y DEBUG=Y - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244554/control_ras -Checking test 001 control_ras 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 = 825.204687 - -Test 001 control_ras PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_244554/control_ras_debug -Checking test 002 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 = 102.332120 - -Test 002 control_ras_debug PASS - REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 18:02:30 UTC 2021 -Elapsed time: 00h:26m:42s. Have a nice day! +Tue Jul 6 20:13:44 UTC 2021 +Elapsed time: 02h:41m:01s. Have a nice day! From 75f7ae4a7f8bbcda187881357b79f179a693bc50 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 6 Jul 2021 21:16:15 +0000 Subject: [PATCH 17/22] RT JOBS PASSED: hera.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_hera.intel.log | 620 +++++++++++++-------------- 1 file changed, 310 insertions(+), 310 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7ff9554351..61ec569ccd 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,27 +1,27 @@ -Wed Jun 30 21:25:07 UTC 2021 +Tue Jul 6 17:46:21 UTC 2021 Start Regression test -Compile 001 elapsed time 1103 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 981 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 181 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 1626 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 1355 seconds. APP=ATM 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 -Compile 006 elapsed time 1421 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 1462 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 613 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 475 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 194 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 1137 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 1137 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 237 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 227 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 230 seconds. APP=NG-GODAS -Compile 016 elapsed time 186 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 547 seconds. APP=ATMW SUITES=FV3_GFS_v16 -Compile 018 elapsed time 542 seconds. APP=ATMAERO SUITES=FV3_GFS_v16 - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control +Compile 001 elapsed time 767 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 692 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 228 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 1205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 710 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1163 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 533 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 559 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 141 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 136 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 162 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 98 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 188 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 98 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 541 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 545 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -71,13 +71,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 88.597053 + 0: The total amount of wall time = 88.249232 Test 001 cpld_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -127,13 +127,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 54.656617 + 0: The total amount of wall time = 52.254250 Test 002 cpld_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -183,13 +183,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 86.679401 + 0: The total amount of wall time = 86.639701 Test 003 cpld_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -239,13 +239,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK - 0: The total amount of wall time = 87.107841 + 0: The total amount of wall time = 86.802845 Test 004 cpld_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -295,13 +295,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 378.663938 + 0: The total amount of wall time = 369.612707 Test 005 cpld_control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -351,13 +351,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK - 0: The total amount of wall time = 262.687371 + 0: The total amount of wall time = 265.097730 Test 006 cpld_restart_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -410,13 +410,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 762.165681 + 0: The total amount of wall time = 761.656631 Test 007 cpld_control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -469,13 +469,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK - 0: The total amount of wall time = 410.617738 + 0: The total amount of wall time = 399.757704 Test 008 cpld_restart_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -518,13 +518,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 728.437756 + 0: The total amount of wall time = 739.140314 Test 009 cpld_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_restart_bmark_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -567,13 +567,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 419.521945 + 0: The total amount of wall time = 400.086037 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_v16_nsst +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -616,13 +616,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 747.422347 + 0: The total amount of wall time = 719.307393 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_wave_v16 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -667,13 +667,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 741.917179 + 0: The total amount of wall time = 735.241509 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_bmark_wave_v16_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -718,13 +718,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 765.591513 + 0: The total amount of wall time = 751.517299 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_control_wave +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -777,13 +777,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK - 0: The total amount of wall time = 111.411137 + 0: The total amount of wall time = 106.068111 Test 014 cpld_control_wave PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/cpld_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -833,13 +833,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK - 0: The total amount of wall time = 276.818230 + 0: The total amount of wall time = 279.562387 Test 015 cpld_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -882,13 +882,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 157.505734 + 0: The total amount of wall time = 149.896099 Test 016 control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_decomp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -931,13 +931,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 158.862240 + 0: The total amount of wall time = 156.252734 Test 017 control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -980,13 +980,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.748637 + 0: The total amount of wall time = 159.806610 Test 018 control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1025,13 +1025,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 62.976971 + 0: The total amount of wall time = 61.728268 Test 019 control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1058,13 +1058,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 121.655004 + 0: The total amount of wall time = 113.076012 Test 020 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1075,13 +1075,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 169.588926 + 0: The total amount of wall time = 168.770376 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c192 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1092,13 +1092,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 467.319446 + 0: The total amount of wall time = 449.747202 Test 022 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c384 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1109,13 +1109,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 756.701094 + 0: The total amount of wall time = 758.988476 Test 023 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_c384gdas +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1158,13 +1158,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 851.201381 + 0: The total amount of wall time = 629.076090 Test 024 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_stochy +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1175,13 +1175,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.010166 + 0: The total amount of wall time = 107.537281 Test 025 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ca +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1192,13 +1192,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 110.258127 + 0: The total amount of wall time = 105.064505 Test 026 control_ca PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lndp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1209,13 +1209,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 120.891474 + 0: The total amount of wall time = 111.001369 Test 027 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lheatstrg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1226,13 +1226,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 155.766768 + 0: The total amount of wall time = 148.931584 Test 028 control_lheatstrg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_merra2 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1243,13 +1243,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.838570 + 0: The total amount of wall time = 174.444776 Test 029 control_merra2 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_rrtmgp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1260,13 +1260,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 196.260583 + 0: The total amount of wall time = 199.735284 Test 030 control_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmg +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1277,13 +1277,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 265.340603 + 0: The total amount of wall time = 267.012478 Test 031 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmgt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1294,13 +1294,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 316.985778 + 0: The total amount of wall time = 326.178573 Test 032 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_flake +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1311,13 +1311,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 220.524322 + 0: The total amount of wall time = 221.790473 Test 033 control_flake PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ugwpv1 +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1328,13 +1328,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 182.173389 + 0: The total amount of wall time = 184.016531 Test 034 control_ugwpv1 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ras +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1345,13 +1345,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.405757 + 0: The total amount of wall time = 174.816288 Test 035 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1362,13 +1362,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 200.857792 + 0: The total amount of wall time = 201.191860 Test 036 control_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_no_aero +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 198.979806 + 0: The total amount of wall time = 194.059937 Test 037 control_thompson_no_aero PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_noahmp +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1396,13 +1396,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.827550 + 0: The total amount of wall time = 178.011139 Test 038 control_noahmp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_control +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1410,25 +1410,25 @@ Checking test 039 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 291.377977 + 0: The total amount of wall time = 285.866900 Test 039 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_restart +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_restart Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK - 0: The total amount of wall time = 158.998349 + 0: The total amount of wall time = 159.599707 Test 040 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1439,13 +1439,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 292.237623 + 0: The total amount of wall time = 289.250749 Test 041 regional_quilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_2threads +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1456,13 +1456,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 238.057951 + 0: The total amount of wall time = 210.080589 Test 042 regional_quilt_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_hafs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1471,27 +1471,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 294.771585 + 0: The total amount of wall time = 288.430441 Test 043 regional_quilt_hafs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 291.771687 + 0: The total amount of wall time = 292.273253 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_quilt_RRTMGP +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1502,13 +1502,13 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 382.814862 + 0: The total amount of wall time = 381.567181 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd Checking test 046 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1597,13 +1597,13 @@ Checking test 046 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.053002 + 0: The total amount of wall time = 170.405091 Test 046 fv3_gsd PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1alpha +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1alpha Checking test 047 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1668,13 +1668,13 @@ Checking test 047 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.504427 + 0: The total amount of wall time = 91.022385 Test 047 fv3_rrfs_v1alpha PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rap +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rap Checking test 048 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1739,13 +1739,13 @@ Checking test 048 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 88.776564 + 0: The total amount of wall time = 84.498033 Test 048 fv3_rap PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_hrrr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_hrrr Checking test 049 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1810,13 +1810,13 @@ Checking test 049 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.295198 + 0: The total amount of wall time = 84.612915 Test 049 fv3_hrrr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1beta Checking test 050 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1881,13 +1881,13 @@ Checking test 050 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 87.746857 + 0: The total amount of wall time = 85.957369 Test 050 fv3_rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1952,13 +1952,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 150.834692 + 0: The total amount of wall time = 143.703217 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1973,39 +1973,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 286.170029 + 0: The total amount of wall time = 292.006416 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.296846 + 0: The total amount of wall time = 146.276087 Test 053 control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_2threads_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_2threads_debug Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.490819 + 0: The total amount of wall time = 214.144502 Test 054 control_2threads_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2032,169 +2032,169 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 156.880495 + 0: The total amount of wall time = 156.545040 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 148.774775 + 0: The total amount of wall time = 150.187810 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_stochy_debug Checking test 057 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.255981 + 0: The total amount of wall time = 169.111304 Test 057 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.159711 + 0: The total amount of wall time = 145.332627 Test 058 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_lheatstrg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.409033 + 0: The total amount of wall time = 148.336994 Test 059 control_lheatstrg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_merra2_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.672805 + 0: The total amount of wall time = 175.878629 Test 060 control_merra2_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_rrtmgp_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_rrtmgp_debug Checking test 061 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.058955 + 0: The total amount of wall time = 162.202080 Test 061 control_rrtmgp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmg_debug Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.163011 + 0: The total amount of wall time = 212.037516 Test 062 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_csawmgt_debug Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 244.896944 + 0: The total amount of wall time = 245.823677 Test 063 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ugwpv1_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.815456 + 0: The total amount of wall time = 155.207114 Test 064 control_ugwpv1_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_ras_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.293135 + 0: The total amount of wall time = 142.436005 Test 065 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_debug Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.507955 + 0: The total amount of wall time = 171.625983 Test 066 control_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_thompson_no_aero_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_thompson_no_aero_debug Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.534434 + 0: The total amount of wall time = 162.582311 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/regional_control_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/regional_control_debug Checking test 068 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2202,13 +2202,13 @@ Checking test 068 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 = 228.194524 + 0: The total amount of wall time = 226.208815 Test 068 regional_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd_debug Checking test 069 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2273,13 +2273,13 @@ Checking test 069 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.382124 + 0: The total amount of wall time = 195.097747 Test 069 fv3_gsd_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_gsd_diag3d_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_gsd_diag3d_debug Checking test 070 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2344,13 +2344,13 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 248.793580 + 0: The total amount of wall time = 347.347412 Test 070 fv3_gsd_diag3d_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1beta_debug Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2415,13 +2415,13 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.039139 + 0: The total amount of wall time = 190.209874 Test 071 fv3_rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_rrfs_v1alpha_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_rrfs_v1alpha_debug Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2486,13 +2486,13 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 190.159493 + 0: The total amount of wall time = 194.862487 Test 072 fv3_rrfs_v1alpha_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2557,13 +2557,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 206.388232 + 0: The total amount of wall time = 203.101964 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2578,227 +2578,227 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 389.014762 + 0: The total amount of wall time = 398.062119 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_control_cfsr Checking test 075 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 97.433693 + 0: The total amount of wall time = 109.322474 Test 075 datm_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_restart_cfsr Checking test 076 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 63.486323 + 0: The total amount of wall time = 63.702667 Test 076 datm_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_control_gefs Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 89.854401 + 0: The total amount of wall time = 105.078267 Test 077 datm_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_bulk_cfsr Checking test 078 datm_bulk_cfsr results .... 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 = 93.708150 + 0: The total amount of wall time = 106.151483 Test 078 datm_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_bulk_gefs Checking test 079 datm_bulk_gefs results .... 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.871224 + 0: The total amount of wall time = 90.553620 Test 079 datm_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_mx025_cfsr Checking test 080 datm_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 353.595840 + 0: The total amount of wall time = 319.259136 Test 080 datm_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_mx025_gefs Checking test 081 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 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 = 354.497110 + 0: The total amount of wall time = 319.709935 Test 081 datm_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_debug_cfsr Checking test 082 datm_debug_cfsr results .... 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 = 267.704808 + 0: The total amount of wall time = 270.793288 Test 082 datm_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_control_cfsr Checking test 083 datm_cdeps_control_cfsr results .... 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.355581 + 0: The total amount of wall time = 146.895292 Test 083 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_restart_cfsr Checking test 084 datm_cdeps_restart_cfsr results .... 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.685618 + 0: The total amount of wall time = 94.652092 Test 084 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_control_gefs Checking test 085 datm_cdeps_control_gefs results .... 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 = 141.801273 + 0: The total amount of wall time = 145.829138 Test 085 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_bulk_cfsr Checking test 086 datm_cdeps_bulk_cfsr results .... 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.195960 + 0: The total amount of wall time = 152.573039 Test 086 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_bulk_gefs Checking test 087 datm_cdeps_bulk_gefs results .... 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.700738 + 0: The total amount of wall time = 157.986787 Test 087 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_mx025_cfsr Checking test 088 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 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 = 366.183883 + 0: The total amount of wall time = 315.949695 Test 088 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_mx025_gefs Checking test 089 datm_cdeps_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 346.199615 + 0: The total amount of wall time = 304.505160 Test 089 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_multiple_files_cfsr Checking test 090 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.414929 + 0: The total amount of wall time = 150.201491 Test 090 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/datm_cdeps_debug_cfsr Checking test 091 datm_cdeps_debug_cfsr results .... 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 = 441.845516 + 0: The total amount of wall time = 438.857083 Test 091 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_atmwav +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_atmwav Checking test 092 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2841,13 +2841,13 @@ Checking test 092 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.606093 + 0: The total amount of wall time = 329.367421 Test 092 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/Dom.Heinzeller/FV3_RT/rt_153023/control_atm_aerosols +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_224857/control_atm_aerosols Checking test 093 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2894,11 +2894,11 @@ Checking test 093 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 304.598660 + 0: The total amount of wall time = 294.618718 Test 093 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 22:18:49 UTC 2021 -Elapsed time: 00h:53m:42s. Have a nice day! +Tue Jul 6 21:16:13 UTC 2021 +Elapsed time: 03h:29m:52s. Have a nice day! From 6b1d8bc3f4e52961e1923e122fac1362a969de88 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 7 Jul 2021 00:43:30 +0000 Subject: [PATCH 18/22] RT JOBS PASSED: jet.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_jet.intel.log | 574 ++++++++++++++-------------- 1 file changed, 287 insertions(+), 287 deletions(-) diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d4fe2e00d7..e57230f1f9 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,26 +1,26 @@ -Wed Jun 30 02:31:31 GMT 2021 +Tue Jul 6 20:31:42 GMT 2021 Start Regression test -Compile 001 elapsed time 2406 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2480 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 242 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 2213 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 2336 seconds. APP=ATM 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 -Compile 006 elapsed time 2233 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 2237 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 2287 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 235 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 212 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 213 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 200 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 270 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 131 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 264 seconds. APP=NG-GODAS -Compile 016 elapsed time 132 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 2272 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control +Compile 001 elapsed time 2419 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 2453 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 254 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 2246 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 2345 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 2263 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 2266 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 2286 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 009 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 226 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 226 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 236 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 265 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 014 elapsed time 144 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 016 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 2286 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 125.206425 +The total amount of wall time = 154.849375 Test 001 cpld_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 72.349699 +The total amount of wall time = 76.450327 Test 002 cpld_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_ca Checking test 003 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 123.160271 +The total amount of wall time = 133.522498 Test 003 cpld_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_c192 Checking test 004 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 525.241851 +The total amount of wall time = 551.867309 Test 004 cpld_control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_c192 Checking test 005 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 383.344337 +The total amount of wall time = 416.394647 Test 005 cpld_restart_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_c384 Checking test 006 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -353,13 +353,13 @@ Checking test 006 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 614.342621 +The total amount of wall time = 648.395652 Test 006 cpld_control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_c384 Checking test 007 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -412,13 +412,13 @@ Checking test 007 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 361.175688 +The total amount of wall time = 416.766686 Test 007 cpld_restart_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_v16 Checking test 008 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -461,13 +461,13 @@ Checking test 008 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1021.946911 +The total amount of wall time = 1055.106917 Test 008 cpld_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_restart_bmark_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_restart_bmark_v16 Checking test 009 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -510,13 +510,13 @@ Checking test 009 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 533.017847 +The total amount of wall time = 572.396733 Test 009 cpld_restart_bmark_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_v16_nsst +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_v16_nsst Checking test 010 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -559,13 +559,13 @@ Checking test 010 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1012.338900 +The total amount of wall time = 1058.859892 Test 010 cpld_bmark_v16_nsst PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_wave_v16 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_wave_v16 Checking test 011 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -610,13 +610,13 @@ Checking test 011 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1190.094489 +The total amount of wall time = 1230.042726 Test 011 cpld_bmark_wave_v16 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_bmark_wave_v16_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_bmark_wave_v16_noahmp Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -661,13 +661,13 @@ Checking test 012 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 1189.331266 +The total amount of wall time = 1218.039918 Test 012 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_control_wave +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_control_wave Checking test 013 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -720,13 +720,13 @@ Checking test 013 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 1010.463916 +The total amount of wall time = 1058.238399 Test 013 cpld_control_wave PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/cpld_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/cpld_debug Checking test 014 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 388.461897 +The total amount of wall time = 376.111432 Test 014 cpld_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -825,13 +825,13 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 213.976263 +The total amount of wall time = 215.755055 Test 015 control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_2threads +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -874,13 +874,13 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 782.579401 +The total amount of wall time = 791.951378 Test 016 control_2threads PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -919,13 +919,13 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 87.779249 +The total amount of wall time = 89.728954 Test 017 control_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_CubedSphereGrid +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_CubedSphereGrid Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -952,13 +952,13 @@ Checking test 018 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 175.327754 +The total amount of wall time = 175.158626 Test 018 control_CubedSphereGrid PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_wrtGauss_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_wrtGauss_netcdf_parallel Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -969,13 +969,13 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.238103 +The total amount of wall time = 279.688083 Test 019 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c192 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c192 Checking test 020 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -986,13 +986,13 @@ Checking test 020 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 637.747987 +The total amount of wall time = 648.406780 Test 020 control_c192 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c384 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c384 Checking test 021 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1003,13 +1003,13 @@ Checking test 021 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 888.800349 +The total amount of wall time = 900.839597 Test 021 control_c384 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_c384gdas +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_c384gdas Checking test 022 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1052,13 +1052,13 @@ Checking test 022 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 786.546599 +The total amount of wall time = 782.321887 Test 022 control_c384gdas PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_stochy +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1069,13 +1069,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 148.317640 +The total amount of wall time = 164.290937 Test 023 control_stochy PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ca +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1086,13 +1086,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 153.801707 +The total amount of wall time = 150.605034 Test 024 control_ca PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lndp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1103,13 +1103,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 166.241343 +The total amount of wall time = 160.804292 Test 025 control_lndp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lheatstrg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1120,13 +1120,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 217.348124 +The total amount of wall time = 209.911532 Test 026 control_lheatstrg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_merra2 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1137,13 +1137,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 239.096137 +The total amount of wall time = 247.019499 Test 027 control_merra2 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_rrtmgp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1154,13 +1154,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 261.452713 +The total amount of wall time = 272.421456 Test 028 control_rrtmgp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmg +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1171,13 +1171,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 352.147774 +The total amount of wall time = 368.575477 Test 029 control_csawmg PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmgt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,13 +1188,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 423.544418 +The total amount of wall time = 435.220129 Test 030 control_csawmgt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_flake +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1205,13 +1205,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 289.784123 +The total amount of wall time = 297.154636 Test 031 control_flake PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ugwpv1 +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1222,13 +1222,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 251.514896 +The total amount of wall time = 264.951627 Test 032 control_ugwpv1 PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ras +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1239,13 +1239,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 239.067531 +The total amount of wall time = 267.133492 Test 033 control_ras PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1256,13 +1256,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 271.426832 +The total amount of wall time = 285.693072 Test 034 control_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_no_aero +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1273,13 +1273,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 263.593201 +The total amount of wall time = 275.370069 Test 035 control_thompson_no_aero PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_noahmp +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1290,13 +1290,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 237.439336 +The total amount of wall time = 249.693322 Test 036 control_noahmp PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_control +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1304,25 +1304,25 @@ Checking test 037 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 415.293236 +The total amount of wall time = 426.544541 Test 037 regional_control PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_restart +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 227.279873 +The total amount of wall time = 241.234354 Test 038 regional_restart PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1333,13 +1333,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 423.773761 +The total amount of wall time = 416.579092 Test 039 regional_quilt PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_hafs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_hafs Checking test 040 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1348,13 +1348,13 @@ Checking test 040 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 409.535154 +The total amount of wall time = 410.421455 Test 040 regional_quilt_hafs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_netcdf_parallel +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_netcdf_parallel Checking test 041 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK Comparing dynf000.nc .........OK @@ -1362,13 +1362,13 @@ Checking test 041 regional_quilt_netcdf_parallel results .... Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 418.110909 +The total amount of wall time = 419.481466 Test 041 regional_quilt_netcdf_parallel PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_quilt_RRTMGP +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_quilt_RRTMGP Checking test 042 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 042 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 527.827385 +The total amount of wall time = 536.909566 Test 042 regional_quilt_RRTMGP PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd Checking test 043 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1474,13 +1474,13 @@ Checking test 043 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 232.174153 +The total amount of wall time = 275.226056 Test 043 fv3_gsd PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1alpha +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1alpha Checking test 044 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1545,13 +1545,13 @@ Checking test 044 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 119.205151 +The total amount of wall time = 125.101041 Test 044 fv3_rrfs_v1alpha PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_HAFS_v0_hwrf_thompson Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1616,13 +1616,13 @@ Checking test 045 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 193.037178 +The total amount of wall time = 197.709212 Test 045 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_esg_HAFS_v0_hwrf_thompson Checking test 046 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1637,39 +1637,39 @@ Checking test 046 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 364.304396 +The total amount of wall time = 373.669513 Test 046 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_debug Checking test 047 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 200.273946 +The total amount of wall time = 191.636774 Test 047 control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_2threads_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_2threads_debug Checking test 048 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 363.830796 +The total amount of wall time = 366.450628 Test 048 control_2threads_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_CubedSphereGrid_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_CubedSphereGrid_debug Checking test 049 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1696,169 +1696,169 @@ Checking test 049 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 208.690194 +The total amount of wall time = 211.941308 Test 049 control_CubedSphereGrid_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_wrtGauss_netcdf_parallel_debug Checking test 050 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 194.931762 +The total amount of wall time = 200.786586 Test 050 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_stochy_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_stochy_debug Checking test 051 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 218.470420 +The total amount of wall time = 223.533238 Test 051 control_stochy_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lndp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lndp_debug Checking test 052 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 197.017049 +The total amount of wall time = 207.903218 Test 052 control_lndp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_lheatstrg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_lheatstrg_debug Checking test 053 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 190.788649 +The total amount of wall time = 195.315023 Test 053 control_lheatstrg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_merra2_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_merra2_debug Checking test 054 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 235.559684 +The total amount of wall time = 237.849971 Test 054 control_merra2_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_rrtmgp_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_rrtmgp_debug Checking test 055 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 213.168002 +The total amount of wall time = 216.079769 Test 055 control_rrtmgp_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmg_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmg_debug Checking test 056 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 289.861234 +The total amount of wall time = 292.441415 Test 056 control_csawmg_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_csawmgt_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_csawmgt_debug Checking test 057 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 329.238547 +The total amount of wall time = 332.848125 Test 057 control_csawmgt_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ugwpv1_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ugwpv1_debug Checking test 058 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 207.165148 +The total amount of wall time = 208.958137 Test 058 control_ugwpv1_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_ras_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_ras_debug Checking test 059 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 193.563026 +The total amount of wall time = 196.462790 Test 059 control_ras_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_debug Checking test 060 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 226.006848 +The total amount of wall time = 231.574410 Test 060 control_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_thompson_no_aero_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_thompson_no_aero_debug Checking test 061 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 216.555044 +The total amount of wall time = 220.600131 Test 061 control_thompson_no_aero_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/regional_control_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/regional_control_debug Checking test 062 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1866,13 +1866,13 @@ Checking test 062 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 = 329.074665 +The total amount of wall time = 328.586462 Test 062 regional_control_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd_debug Checking test 063 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1937,13 +1937,13 @@ Checking test 063 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 262.647205 +The total amount of wall time = 272.415525 Test 063 fv3_gsd_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_gsd_diag3d_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_gsd_diag3d_debug Checking test 064 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2008,13 +2008,13 @@ Checking test 064 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 347.025647 +The total amount of wall time = 399.908030 Test 064 fv3_gsd_diag3d_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1beta_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1beta_debug Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2079,13 +2079,13 @@ Checking test 065 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.152782 +The total amount of wall time = 264.015904 Test 065 fv3_rrfs_v1beta_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_rrfs_v1alpha_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_rrfs_v1alpha_debug Checking test 066 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2150,13 +2150,13 @@ Checking test 066 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 257.069067 +The total amount of wall time = 260.420650 Test 066 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_HAFS_v0_hwrf_thompson_debug Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2221,13 +2221,13 @@ Checking test 067 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 266.841216 +The total amount of wall time = 269.889157 Test 067 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2242,227 +2242,227 @@ Checking test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 503.116460 +The total amount of wall time = 510.204592 Test 068 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_control_cfsr Checking test 069 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 129.673561 +The total amount of wall time = 133.505420 Test 069 datm_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_restart_cfsr Checking test 070 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 82.701584 +The total amount of wall time = 84.724722 Test 070 datm_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_control_gefs Checking test 071 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 122.773787 +The total amount of wall time = 125.174611 Test 071 datm_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_bulk_cfsr Checking test 072 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 127.001984 +The total amount of wall time = 126.381396 Test 072 datm_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_bulk_gefs Checking test 073 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 122.946481 +The total amount of wall time = 125.434891 Test 073 datm_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_mx025_cfsr Checking test 074 datm_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 472.458728 +The total amount of wall time = 427.951361 Test 074 datm_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_mx025_gefs Checking test 075 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 465.351407 +The total amount of wall time = 419.580295 Test 075 datm_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_debug_cfsr Checking test 076 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 350.138480 +The total amount of wall time = 349.532224 Test 076 datm_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_control_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_control_cfsr Checking test 077 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 209.583993 +The total amount of wall time = 197.987951 Test 077 datm_cdeps_control_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_restart_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_restart_cfsr Checking test 078 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 120.388559 +The total amount of wall time = 127.681243 Test 078 datm_cdeps_restart_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_control_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_control_gefs Checking test 079 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 195.030417 +The total amount of wall time = 200.481021 Test 079 datm_cdeps_control_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_bulk_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_bulk_cfsr Checking test 080 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 200.236785 +The total amount of wall time = 199.005467 Test 080 datm_cdeps_bulk_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_bulk_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_bulk_gefs Checking test 081 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 194.323073 +The total amount of wall time = 193.968537 Test 081 datm_cdeps_bulk_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_mx025_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_mx025_cfsr Checking test 082 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 473.115958 +The total amount of wall time = 420.424513 Test 082 datm_cdeps_mx025_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_mx025_gefs +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_mx025_gefs Checking test 083 datm_cdeps_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 458.275892 +The total amount of wall time = 420.580691 Test 083 datm_cdeps_mx025_gefs PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_multiple_files_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_multiple_files_cfsr Checking test 084 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 198.411894 +The total amount of wall time = 203.147564 Test 084 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/datm_cdeps_debug_cfsr +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/datm_cdeps_debug_cfsr Checking test 085 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 572.995650 +The total amount of wall time = 572.375215 Test 085 datm_cdeps_debug_cfsr PASS -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_306150/control_atmwav +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_199276/control_atmwav Checking test 086 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2505,11 +2505,11 @@ Checking test 086 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 440.154672 +The total amount of wall time = 446.822360 Test 086 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jun 30 06:42:30 GMT 2021 -Elapsed time: 04h:10m:59s. Have a nice day! +Wed Jul 7 00:43:03 GMT 2021 +Elapsed time: 04h:11m:21s. Have a nice day! From 0178662fe05fff4ee56271524b122dfc008d071b Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Wed, 7 Jul 2021 01:27:49 +0000 Subject: [PATCH 19/22] RT JOBS PASSED: gaea.intel. Log file uploaded. on-behalf-of @ufs-community --- tests/RegressionTests_gaea.intel.log | 615 ++++++++++++++------------- 1 file changed, 315 insertions(+), 300 deletions(-) diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index f026737598..b37f5f5943 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,26 +1,26 @@ -Tue Jun 29 22:32:51 EDT 2021 +Tue Jul 6 20:18:35 EDT 2021 Start Regression test -Compile 001 elapsed time 767 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 805 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 309 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 682 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 725 seconds. APP=ATM 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 -Compile 006 elapsed time 681 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 007 elapsed time 684 seconds. APP=ATM SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y -Compile 008 elapsed time 687 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 293 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 263 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 266 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 240 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 307 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 205 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 308 seconds. APP=NG-GODAS -Compile 016 elapsed time 208 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 645 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control +Compile 001 elapsed time 769 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 806 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 304 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 676 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 681 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 686 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 257 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 257 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 243 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 245 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 314 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 214 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 331 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 215 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 685 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 122.719853 +The total amount of wall time = 92.902901 Test 001 cpld_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -126,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 49.325746 +The total amount of wall time = 82.603186 Test 002 cpld_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -182,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 87.968911 +The total amount of wall time = 94.829121 Test 003 cpld_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -238,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -The total amount of wall time = 119.031763 +The total amount of wall time = 89.296794 Test 004 cpld_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -294,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 399.136682 +The total amount of wall time = 402.836136 Test 005 cpld_control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -350,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -The total amount of wall time = 270.326709 +The total amount of wall time = 289.287107 Test 006 cpld_restart_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 813.697675 +The total amount of wall time = 819.461472 Test 007 cpld_control_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_c384 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -468,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -The total amount of wall time = 416.642666 +The total amount of wall time = 429.131060 Test 008 cpld_restart_c384 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 796.748173 +The total amount of wall time = 829.027652 Test 009 cpld_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_restart_bmark_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -566,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 417.769317 +The total amount of wall time = 427.304468 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_v16_nsst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_v16_nsst +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_v16_nsst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -615,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 794.819679 +The total amount of wall time = 826.830621 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_wave_v16 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -666,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 862.192699 +The total amount of wall time = 927.785566 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_bmark_wave_v16_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_bmark_wave_v16_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_bmark_wave_v16_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -717,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -The total amount of wall time = 895.226219 +The total amount of wall time = 958.022630 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_control_wave -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_control_wave +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_control_wave +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -776,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -The total amount of wall time = 167.013118 +The total amount of wall time = 139.970380 Test 014 cpld_control_wave PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/cpld_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/cpld_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/cpld_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -832,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -The total amount of wall time = 265.040526 +The total amount of wall time = 269.356258 Test 015 cpld_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -881,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 178.775097 +The total amount of wall time = 165.871249 Test 016 control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_decomp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -930,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 167.263915 +The total amount of wall time = 168.694263 Test 017 control_decomp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -979,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 224.106927 +The total amount of wall time = 201.596043 Test 018 control_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1024,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 71.514293 +The total amount of wall time = 93.884364 Test 019 control_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_CubedSphereGrid +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1057,13 +1057,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 125.006064 +The total amount of wall time = 130.659394 Test 020 control_CubedSphereGrid PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_wrtGauss_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1074,13 +1074,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 226.578714 +The total amount of wall time = 310.438628 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_c192 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1091,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 528.536575 +The total amount of wall time = 528.551776 Test 022 control_c192 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_stochy +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_stochy Checking test 023 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1108,13 +1108,13 @@ Checking test 023 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 147.751024 +The total amount of wall time = 144.396901 Test 023 control_stochy PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ca -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ca +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ca +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ca Checking test 024 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1125,13 +1125,13 @@ Checking test 024 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 116.344342 +The total amount of wall time = 117.315686 Test 024 control_ca PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lndp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lndp Checking test 025 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1142,13 +1142,13 @@ Checking test 025 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 121.210453 +The total amount of wall time = 120.126557 Test 025 control_lndp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lheatstrg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lheatstrg Checking test 026 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1159,13 +1159,13 @@ Checking test 026 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 164.556919 +The total amount of wall time = 183.098396 Test 026 control_lheatstrg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_merra2 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_merra2 Checking test 027 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1176,13 +1176,13 @@ Checking test 027 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 196.606882 +The total amount of wall time = 223.789317 Test 027 control_merra2 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_rrtmgp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1193,13 +1193,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 240.937015 +The total amount of wall time = 226.465915 Test 028 control_rrtmgp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmg +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmg Checking test 029 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1210,13 +1210,13 @@ Checking test 029 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 306.741750 +The total amount of wall time = 325.333626 Test 029 control_csawmg PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmgt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmgt Checking test 030 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1227,13 +1227,13 @@ Checking test 030 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 357.977548 +The total amount of wall time = 384.491486 Test 030 control_csawmgt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_flake +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_flake Checking test 031 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1244,13 +1244,13 @@ Checking test 031 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 240.761020 +The total amount of wall time = 256.037333 Test 031 control_flake PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ugwpv1 +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ugwpv1 Checking test 032 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1261,13 +1261,13 @@ Checking test 032 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 197.364484 +The total amount of wall time = 198.937744 Test 032 control_ugwpv1 PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ras +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,13 +1278,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 187.664445 +The total amount of wall time = 222.954860 Test 033 control_ras PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson Checking test 034 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1295,13 +1295,13 @@ Checking test 034 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 247.526231 +The total amount of wall time = 247.454341 Test 034 control_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_no_aero +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_no_aero Checking test 035 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1312,13 +1312,13 @@ Checking test 035 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.465675 +The total amount of wall time = 234.072492 Test 035 control_thompson_no_aero PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_noahmp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_noahmp +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_noahmp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_noahmp Checking test 036 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1329,13 +1329,13 @@ Checking test 036 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 216.525671 +The total amount of wall time = 191.652605 Test 036 control_noahmp PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_control +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_control Checking test 037 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1343,25 +1343,25 @@ Checking test 037 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 326.662550 +The total amount of wall time = 329.417590 Test 037 regional_control PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_restart -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_restart +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_restart Checking test 038 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -The total amount of wall time = 208.630832 +The total amount of wall time = 184.377427 Test 038 regional_restart PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt Checking test 039 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1372,13 +1372,13 @@ Checking test 039 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 355.327817 +The total amount of wall time = 331.592076 Test 039 regional_quilt PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_2threads +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_2threads Checking test 040 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1389,13 +1389,13 @@ Checking test 040 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 308.399977 +The total amount of wall time = 284.363096 Test 040 regional_quilt_2threads PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_hafs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_hafs Checking test 041 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1404,27 +1404,27 @@ Checking test 041 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 350.079134 +The total amount of wall time = 329.918643 Test 041 regional_quilt_hafs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_netcdf_parallel +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_netcdf_parallel Checking test 042 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 ............ALT CHECK......OK + Comparing dynf024.nc .........OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK -The total amount of wall time = 348.304698 +The total amount of wall time = 338.866015 Test 042 regional_quilt_netcdf_parallel PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_quilt_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_quilt_RRTMGP +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_quilt_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_quilt_RRTMGP Checking test 043 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1435,13 +1435,13 @@ Checking test 043 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 490.387084 +The total amount of wall time = 464.173020 Test 043 regional_quilt_RRTMGP PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd Checking test 044 fv3_gsd results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1530,13 +1530,13 @@ Checking test 044 fv3_gsd results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 216.104355 +The total amount of wall time = 190.368204 Test 044 fv3_gsd PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1alpha +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1alpha Checking test 045 fv3_rrfs_v1alpha results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1601,13 +1601,13 @@ Checking test 045 fv3_rrfs_v1alpha results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 122.038607 +The total amount of wall time = 95.410109 Test 045 fv3_rrfs_v1alpha PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rap -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rap +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rap +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rap Checking test 046 fv3_rap results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1672,13 +1672,13 @@ Checking test 046 fv3_rap results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 123.582907 +The total amount of wall time = 94.880968 Test 046 fv3_rap PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_hrrr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_hrrr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_hrrr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_hrrr Checking test 047 fv3_hrrr results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1743,13 +1743,13 @@ Checking test 047 fv3_hrrr results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 90.038779 +The total amount of wall time = 90.168232 Test 047 fv3_hrrr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1beta +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1beta Checking test 048 fv3_rrfs_v1beta results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1814,13 +1814,13 @@ Checking test 048 fv3_rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 92.836918 +The total amount of wall time = 92.709085 Test 048 fv3_rrfs_v1beta PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_HAFS_v0_hwrf_thompson Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 049 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 176.528269 +The total amount of wall time = 192.608688 Test 049 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_esg_HAFS_v0_hwrf_thompson Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1906,39 +1906,39 @@ Checking test 050 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 322.857149 +The total amount of wall time = 324.795126 Test 050 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_debug Checking test 051 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.710990 +The total amount of wall time = 145.056559 Test 051 control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_2threads_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_2threads_debug Checking test 052 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.589257 +The total amount of wall time = 261.174615 Test 052 control_2threads_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_CubedSphereGrid_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_CubedSphereGrid_debug Checking test 053 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1965,169 +1965,169 @@ Checking test 053 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.932163 +The total amount of wall time = 155.336661 Test 053 control_CubedSphereGrid_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_wrtGauss_netcdf_parallel_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_wrtGauss_netcdf_parallel_debug Checking test 054 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 151.651468 +The total amount of wall time = 162.345047 Test 054 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_stochy_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_stochy_debug Checking test 055 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.736940 +The total amount of wall time = 166.736824 Test 055 control_stochy_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lndp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lndp_debug Checking test 056 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.844809 +The total amount of wall time = 149.874028 Test 056 control_lndp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_lheatstrg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_lheatstrg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_lheatstrg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_lheatstrg_debug Checking test 057 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.005660 +The total amount of wall time = 145.007126 Test 057 control_lheatstrg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_merra2_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_merra2_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_merra2_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_merra2_debug Checking test 058 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.682915 +The total amount of wall time = 203.408331 Test 058 control_merra2_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_rrtmgp_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_rrtmgp_debug Checking test 059 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 169.880006 +The total amount of wall time = 164.653491 Test 059 control_rrtmgp_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmg_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmg_debug Checking test 060 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 226.471168 +The total amount of wall time = 242.118486 Test 060 control_csawmg_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_csawmgt_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_csawmgt_debug Checking test 061 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 258.920293 +The total amount of wall time = 266.267783 Test 061 control_csawmgt_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ugwpv1_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ugwpv1_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ugwpv1_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ugwpv1_debug Checking test 062 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.660840 +The total amount of wall time = 158.069210 Test 062 control_ugwpv1_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_ras_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_ras_debug Checking test 063 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.259964 +The total amount of wall time = 147.540186 Test 063 control_ras_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_debug Checking test 064 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 172.152541 +The total amount of wall time = 172.803385 Test 064 control_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_thompson_no_aero_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_thompson_no_aero_debug Checking test 065 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.276841 +The total amount of wall time = 165.547300 Test 065 control_thompson_no_aero_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_regional_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/regional_control_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_regional_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/regional_control_debug Checking test 066 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2135,13 +2135,13 @@ Checking test 066 regional_control_debug results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 254.460149 +The total amount of wall time = 286.872202 Test 066 regional_control_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd_debug Checking test 067 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2206,13 +2206,13 @@ Checking test 067 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 203.442195 +The total amount of wall time = 203.281971 Test 067 fv3_gsd_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_gsd_diag3d_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_gsd_diag3d_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_gsd_diag3d_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_gsd_diag3d_debug Checking test 068 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2277,13 +2277,13 @@ Checking test 068 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 243.113909 +The total amount of wall time = 237.983948 Test 068 fv3_gsd_diag3d_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1beta_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1beta_debug Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2348,13 +2348,13 @@ Checking test 069 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.818540 +The total amount of wall time = 197.402985 Test 069 fv3_rrfs_v1beta_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/fv3_rrfs_v1alpha_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_rrfs_v1alpha_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/fv3_rrfs_v1alpha_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_rrfs_v1alpha_debug Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2419,13 +2419,13 @@ Checking test 070 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 196.917048 +The total amount of wall time = 197.068281 Test 070 fv3_rrfs_v1alpha_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_HAFS_v0_hwrf_thompson_debug Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2490,13 +2490,13 @@ Checking test 071 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 210.081800 +The total amount of wall time = 221.824244 Test 071 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2511,198 +2511,213 @@ Checking test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 377.438301 +The total amount of wall time = 378.114033 Test 072 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_control_cfsr Checking test 073 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 97.899444 +The total amount of wall time = 106.007782 Test 073 datm_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_restart_cfsr Checking test 074 datm_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 88.277699 +The total amount of wall time = 90.889672 Test 074 datm_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_control_gefs Checking test 075 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 94.127578 +The total amount of wall time = 123.061562 Test 075 datm_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_bulk_cfsr Checking test 076 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 93.906817 +The total amount of wall time = 129.574976 Test 076 datm_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_bulk_gefs Checking test 077 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 119.726743 +The total amount of wall time = 124.547629 Test 077 datm_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_mx025_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_mx025_gefs Checking test 078 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 373.903287 +The total amount of wall time = 382.824662 Test 078 datm_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_debug_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_debug_cfsr Checking test 079 datm_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 251.542336 +The total amount of wall time = 255.614904 Test 079 datm_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_control_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_control_cfsr Checking test 080 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 150.642223 +The total amount of wall time = 152.725757 Test 080 datm_cdeps_control_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_restart_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_restart_cfsr Checking test 081 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 87.795340 +The total amount of wall time = 88.706103 Test 081 datm_cdeps_restart_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_control_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_control_gefs Checking test 082 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 146.528743 +The total amount of wall time = 181.652641 Test 082 datm_cdeps_control_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_bulk_cfsr +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_bulk_cfsr Checking test 083 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 148.796422 +The total amount of wall time = 151.996590 Test 083 datm_cdeps_bulk_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_bulk_gefs +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_bulk_gefs Checking test 084 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 144.518338 +The total amount of wall time = 145.666962 Test 084 datm_cdeps_bulk_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_mx025_gefs -Checking test 085 datm_cdeps_mx025_gefs results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_mx025_cfsr +Checking test 085 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +The total amount of wall time = 356.944878 + +Test 085 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_mx025_gefs +Checking test 086 datm_cdeps_mx025_gefs results .... + 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.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -The total amount of wall time = 367.580537 +The total amount of wall time = 387.810348 -Test 085 datm_cdeps_mx025_gefs PASS +Test 086 datm_cdeps_mx025_gefs PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_multiple_files_cfsr -Checking test 086 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_multiple_files_cfsr +Checking test 087 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -The total amount of wall time = 149.556686 +The total amount of wall time = 150.615565 -Test 086 datm_cdeps_multiple_files_cfsr PASS +Test 087 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/datm_cdeps_debug_cfsr -Checking test 087 datm_cdeps_debug_cfsr results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/datm_cdeps_debug_cfsr +Checking test 088 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -The total amount of wall time = 360.673360 +The total amount of wall time = 361.688500 -Test 087 datm_cdeps_debug_cfsr PASS +Test 088 datm_cdeps_debug_cfsr PASS -baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_14736/control_atmwav -Checking test 088 control_atmwav results .... +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/INTEL/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_33779/control_atmwav +Checking test 089 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2744,11 +2759,11 @@ Checking test 088 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 374.403968 +The total amount of wall time = 373.753534 -Test 088 control_atmwav PASS +Test 089 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jun 29 23:29:53 EDT 2021 -Elapsed time: 00h:57m:03s. Have a nice day! +Tue Jul 6 21:27:37 EDT 2021 +Elapsed time: 01h:09m:03s. Have a nice day! From 8b0244815ac0d1f6a6c451c5a260e06f8ac852b9 Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Wed, 7 Jul 2021 11:37:05 +0000 Subject: [PATCH 20/22] update utest.bld --- tests/utest.bld | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/utest.bld b/tests/utest.bld index 7a8eade9b5..5a83c1effc 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -1,10 +1,10 @@ -control | APP=ATM SUITES=FV3_GFS_v16 -control_wrtGauss_netcdf_parallel | APP=ATM SUITES=FV3_GFS_v16 -control_stochy | APP=ATM SUITES=FV3_GFS_v16 -control_ca | APP=ATM SUITES=FV3_GFS_v16 -control_lheatstrg | APP=ATM SUITES=FV3_GFS_v16 -control_multigases | APP=ATM SUITES=FV3_GFS_v16_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y -control_csawmg | APP=ATM SUITES=FV3_GFS_v16_csawmg -control_flake | APP=ATM SUITES=FV3_GFS_v16_flake -regional_control | APP=ATM SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y -cpld_control | APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst +control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_wrtGauss_netcdf_parallel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_stochy | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_ca | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_lheatstrg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 +control_multigases | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y +control_csawmg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg +control_flake | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_flake +regional_control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +cpld_control | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst From b91a74050df2d90e9def22d0cc29b64e16a39a93 Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Wed, 7 Jul 2021 08:37:23 -0400 Subject: [PATCH 21/22] update utest.bld --- tests/utest.bld | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/utest.bld b/tests/utest.bld index 5a83c1effc..e9920399ac 100644 --- a/tests/utest.bld +++ b/tests/utest.bld @@ -3,8 +3,7 @@ control_wrtGauss_netcdf_parallel | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 control_stochy | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 control_ca | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 control_lheatstrg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -control_multigases | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam 32BIT=Y MULTI_GASES=Y REPRO=Y control_csawmg | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg control_flake | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_flake -regional_control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn 32BIT=Y +regional_control | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn -D32BIT=ON cpld_control | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst From b58d78180afa9f4107e9796898db3a19a6d758f0 Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Wed, 7 Jul 2021 19:49:45 +0000 Subject: [PATCH 22/22] update build.sh and compile.sh add RegressionTests_wcoss_dell_p3.log update 4 datm tests --- build.sh | 1 - tests/RegressionTests_wcoss_dell_p3.log | 989 +++++++++++++++++------- tests/compile.sh | 4 +- tests/tests/datm_cdeps_mx025_cfsr | 1 - tests/tests/datm_cdeps_mx025_gefs | 1 - tests/tests/datm_mx025_cfsr | 1 - tests/tests/datm_mx025_gefs | 1 - 7 files changed, 694 insertions(+), 304 deletions(-) diff --git a/build.sh b/build.sh index fb38cbce50..bcc1483b28 100755 --- a/build.sh +++ b/build.sh @@ -16,7 +16,6 @@ export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} -[[ -n "${CCPP_SUITES:-""}" ]] && CMAKE_FLAGS+=" -DCCPP_SUITES=${CCPP_SUITES}" [[ -n "${MAPL_ROOT:-""}" ]] && CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${MAPL_ROOT}/share/MAPL/cmake" cd ${BUILD_DIR} diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index cddd4da29f..612716826d 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,25 +1,26 @@ -Thu Jun 17 02:11:58 UTC 2021 +Wed Jul 7 13:14:59 UTC 2021 Start Regression test -Compile 001 elapsed time 2093 seconds. APP=S2S SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -Compile 002 elapsed time 2107 seconds. APP=S2SW SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -Compile 003 elapsed time 598 seconds. APP=S2S DEBUG=Y SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -Compile 004 elapsed time 1071 seconds. APP=ATM SUITES=FV3_GFS_v16 32BIT=Y -Compile 005 elapsed time 1556 seconds. APP=ATM 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 -Compile 006 elapsed time 1141 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP 32BIT=Y -Compile 008 elapsed time 1141 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -Compile 009 elapsed time 360 seconds. APP=ATM DEBUG=Y 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 32BIT=Y -Compile 010 elapsed time 305 seconds. APP=ATM DEBUG=Y SUITES=FV3_GFS_v16_thompson 32BIT=Y -Compile 011 elapsed time 315 seconds. APP=ATM SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha 32BIT=Y DEBUG=Y -Compile 012 elapsed time 284 seconds. APP=ATM SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf DEBUG=Y -Compile 013 elapsed time 886 seconds. APP=NG-GODAS-NEMSDATM -Compile 014 elapsed time 322 seconds. APP=NG-GODAS-NEMSDATM DEBUG=Y -Compile 015 elapsed time 923 seconds. APP=NG-GODAS -Compile 016 elapsed time 336 seconds. APP=NG-GODAS DEBUG=Y -Compile 017 elapsed time 1090 seconds. APP=ATMW SUITES=FV3_GFS_v16 - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_control +Compile 001 elapsed time 3046 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 2926 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_coupled_noahmp,FV3_GFS_v16_coupled_nsstNoahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1778 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 004 elapsed time 1602 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1884 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 2536 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 1317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GSD_v0,FV3_RAP,FV3_HRRR,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 1160 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 379 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 436 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_thompson -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 312 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v15_thompson_mynn,FV3_GSD_v0,FV3_RRFS_v1beta,FV3_RRFS_v1alpha -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 318 seconds. -DAPP=ATM -DCCPP_SUITES=HAFS_v0_hwrf_thompson,HAFS_v0_hwrf -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 903 seconds. -DAPP=NG-GODAS-NEMSDATM -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 014 elapsed time 426 seconds. -DAPP=NG-GODAS-NEMSDATM -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 015 elapsed time 1172 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 016 elapsed time 1454 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 017 elapsed time 1697 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control Checking test 001 cpld_control results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -69,13 +70,13 @@ Checking test 001 cpld_control results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 104.034148 +[0] The total amount of wall time = 102.851306 Test 001 cpld_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart Checking test 002 cpld_restart results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -125,13 +126,13 @@ Checking test 002 cpld_restart results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 66.902944 +[0] The total amount of wall time = 69.621159 Test 002 cpld_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_decomp Checking test 003 cpld_decomp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -181,13 +182,13 @@ Checking test 003 cpld_decomp results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 100.994884 +[0] The total amount of wall time = 102.474105 Test 003 cpld_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_ca -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_ca +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_ca Checking test 004 cpld_ca results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -237,13 +238,13 @@ Checking test 004 cpld_ca results .... Comparing RESTART/iced.2016-10-04-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-04-00000.nc .........OK -[0] The total amount of wall time = 101.249602 +[0] The total amount of wall time = 101.410251 Test 004 cpld_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c192 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_c192 Checking test 005 cpld_control_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -293,13 +294,13 @@ Checking test 005 cpld_control_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 414.867024 +[0] The total amount of wall time = 414.742667 Test 005 cpld_control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control_c192 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_restart_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c192 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_c192 Checking test 006 cpld_restart_c192 results .... Comparing sfcf048.tile1.nc .........OK Comparing sfcf048.tile2.nc .........OK @@ -349,13 +350,13 @@ Checking test 006 cpld_restart_c192 results .... Comparing RESTART/iced.2016-10-05-00000.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-05-00000.nc .........OK -[0] The total amount of wall time = 324.060476 +[0] The total amount of wall time = 313.127742 Test 006 cpld_restart_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c384 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_c384 Checking test 007 cpld_control_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -408,13 +409,13 @@ Checking test 007 cpld_control_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 803.571768 +[0] The total amount of wall time = 802.639057 Test 007 cpld_control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control_c384 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_restart_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_c384 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_c384 Checking test 008 cpld_restart_c384 results .... Comparing sfcf012.tile1.nc .........OK Comparing sfcf012.tile2.nc .........OK @@ -467,13 +468,13 @@ Checking test 008 cpld_restart_c384 results .... Comparing RESTART/iced.2016-10-03-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-43200.nc .........OK -[0] The total amount of wall time = 473.620828 +[0] The total amount of wall time = 475.901393 Test 008 cpld_restart_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_bmark_v16 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_bmark_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_v16 Checking test 009 cpld_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -516,13 +517,13 @@ Checking test 009 cpld_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 824.015202 +[0] The total amount of wall time = 817.738192 Test 009 cpld_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_bmark_v16 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_restart_bmark_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_restart_bmark_v16 Checking test 010 cpld_restart_bmark_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -565,13 +566,13 @@ Checking test 010 cpld_restart_bmark_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 512.327839 +[0] The total amount of wall time = 526.243050 Test 010 cpld_restart_bmark_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_bmark_v16_nsst -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_bmark_v16_nsst +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_v16_nsst +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_v16_nsst Checking test 011 cpld_bmark_v16_nsst results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -614,13 +615,13 @@ Checking test 011 cpld_bmark_v16_nsst results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 820.304375 +[0] The total amount of wall time = 828.959610 Test 011 cpld_bmark_v16_nsst PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_bmark_wave_v16 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_bmark_wave_v16 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_wave_v16 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_wave_v16 Checking test 012 cpld_bmark_wave_v16 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -665,13 +666,13 @@ Checking test 012 cpld_bmark_wave_v16 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 903.701210 +[0] The total amount of wall time = 929.406140 Test 012 cpld_bmark_wave_v16 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_bmark_wave_v16_noahmp -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_bmark_wave_v16_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_bmark_wave_v16_noahmp +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_bmark_wave_v16_noahmp Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -716,13 +717,13 @@ Checking test 013 cpld_bmark_wave_v16_noahmp results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 907.915634 +[0] The total amount of wall time = 918.443483 Test 013 cpld_bmark_wave_v16_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_control_wave -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_control_wave +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_control_wave +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_control_wave Checking test 014 cpld_control_wave results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -775,13 +776,13 @@ Checking test 014 cpld_control_wave results .... Comparing 20161004.000000.out_pnt.points .........OK Comparing 20161004.000000.restart.glo_1deg .........OK -[0] The total amount of wall time = 125.353354 +[0] The total amount of wall time = 126.092655 Test 014 cpld_control_wave PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/cpld_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/cpld_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/cpld_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/cpld_debug Checking test 015 cpld_debug results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -831,13 +832,13 @@ Checking test 015 cpld_debug results .... Comparing RESTART/iced.2016-10-03-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2016-10-03-21600.nc .........OK -[0] The total amount of wall time = 319.979720 +[0] The total amount of wall time = 319.192694 Test 015 cpld_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control Checking test 016 control results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -880,13 +881,13 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 168.696609 +[0] The total amount of wall time = 168.618081 Test 016 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_decomp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -929,13 +930,13 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 172.435395 +[0] The total amount of wall time = 172.857457 Test 017 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -978,13 +979,13 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 155.512841 +[0] The total amount of wall time = 155.436287 Test 018 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1023,13 +1024,13 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 73.973907 +[0] The total amount of wall time = 73.950704 Test 019 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_CubedSphereGrid +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1056,30 +1057,30 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 133.637103 +[0] The total amount of wall time = 133.485959 Test 020 control_CubedSphereGrid PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_wrtGauss_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf024.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 = 197.439814 +[0] The total amount of wall time = 197.142140 Test 021 control_wrtGauss_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_c192 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_c192 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c192 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c192 Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1090,13 +1091,13 @@ Checking test 022 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 546.608700 +[0] The total amount of wall time = 541.845705 Test 022 control_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_c384 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_c384 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c384 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c384 Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1107,13 +1108,13 @@ Checking test 023 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1021.720606 +[0] The total amount of wall time = 1022.695556 Test 023 control_c384 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_c384gdas -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_c384gdas +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_c384gdas +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_c384gdas Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1156,13 +1157,13 @@ Checking test 024 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 884.403925 +[0] The total amount of wall time = 905.750269 Test 024 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_stochy +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1173,13 +1174,13 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 119.585918 +[0] The total amount of wall time = 119.423577 Test 025 control_stochy PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ca -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_ca +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ca +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ca Checking test 026 control_ca results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1190,13 +1191,13 @@ Checking test 026 control_ca results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 117.897749 +[0] The total amount of wall time = 117.767828 Test 026 control_ca PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_lndp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1207,13 +1208,13 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 120.853691 +[0] The total amount of wall time = 120.759083 Test 027 control_lndp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_lheatstrg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lheatstrg Checking test 028 control_lheatstrg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1224,13 +1225,13 @@ Checking test 028 control_lheatstrg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 169.520154 +[0] The total amount of wall time = 167.355746 Test 028 control_lheatstrg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_merra2 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_merra2 Checking test 029 control_merra2 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1241,13 +1242,13 @@ Checking test 029 control_merra2 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 196.269099 +[0] The total amount of wall time = 194.605765 Test 029 control_merra2 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_rrtmgp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_rrtmgp Checking test 030 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1258,13 +1259,13 @@ Checking test 030 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 227.153977 +[0] The total amount of wall time = 227.408806 Test 030 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_csawmg +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmg Checking test 031 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1275,13 +1276,13 @@ Checking test 031 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 304.466978 +[0] The total amount of wall time = 306.451628 Test 031 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_csawmgt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmgt Checking test 032 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1292,13 +1293,13 @@ Checking test 032 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 367.087924 +[0] The total amount of wall time = 368.315319 Test 032 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_flake -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_flake +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_flake +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_flake Checking test 033 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1309,13 +1310,13 @@ Checking test 033 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 252.239513 +[0] The total amount of wall time = 244.144226 Test 033 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1 -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_ugwpv1 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1 +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ugwpv1 Checking test 034 control_ugwpv1 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1326,13 +1327,13 @@ Checking test 034 control_ugwpv1 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 206.411680 +[0] The total amount of wall time = 208.609263 Test 034 control_ugwpv1 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_ras +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ras Checking test 035 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1343,13 +1344,13 @@ Checking test 035 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 195.679536 +[0] The total amount of wall time = 197.000786 Test 035 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson Checking test 036 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1360,13 +1361,13 @@ Checking test 036 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 234.965757 +[0] The total amount of wall time = 234.049111 Test 036 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_thompson_no_aero +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_no_aero Checking test 037 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1377,13 +1378,13 @@ Checking test 037 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 225.747357 +[0] The total amount of wall time = 226.070202 Test 037 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_noahmp -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_noahmp +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_noahmp +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_noahmp Checking test 038 control_noahmp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1394,13 +1395,13 @@ Checking test 038 control_noahmp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 196.614261 +[0] The total amount of wall time = 199.645112 Test 038 control_noahmp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_control +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_control Checking test 039 regional_control results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1408,25 +1409,25 @@ Checking test 039 regional_control results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 348.972413 +[0] The total amount of wall time = 357.690768 Test 039 regional_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_restart -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_restart +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_restart +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_restart Checking test 040 regional_restart results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK -[0] The total amount of wall time = 200.250917 +[0] The total amount of wall time = 200.494860 Test 040 regional_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_quilt +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt Checking test 041 regional_quilt results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1437,13 +1438,13 @@ Checking test 041 regional_quilt results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 345.491017 +[0] The total amount of wall time = 347.514646 Test 041 regional_quilt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_quilt_2threads +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_2threads Checking test 042 regional_quilt_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1454,13 +1455,13 @@ Checking test 042 regional_quilt_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 190.200237 +[0] The total amount of wall time = 195.449950 Test 042 regional_quilt_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_hafs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_quilt_hafs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_hafs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_hafs Checking test 043 regional_quilt_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1469,27 +1470,27 @@ Checking test 043 regional_quilt_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 344.463327 +[0] The total amount of wall time = 349.130537 Test 043 regional_quilt_hafs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_quilt_netcdf_parallel +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_netcdf_parallel +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_netcdf_parallel Checking test 044 regional_quilt_netcdf_parallel results .... Comparing atmos_4xdaily.nc .........OK - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK + Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 345.244287 +[0] The total amount of wall time = 344.224056 Test 044 regional_quilt_netcdf_parallel PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_quilt_RRTMGP -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_quilt_RRTMGP +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_quilt_RRTMGP +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_quilt_RRTMGP Checking test 045 regional_quilt_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1500,13 +1501,392 @@ Checking test 045 regional_quilt_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 470.067880 +[0] The total amount of wall time = 475.094931 Test 045 regional_quilt_RRTMGP PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd +Checking test 046 fv3_gsd 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 sfcf027.tile1.nc .........OK + Comparing sfcf027.tile2.nc .........OK + Comparing sfcf027.tile3.nc .........OK + Comparing sfcf027.tile4.nc .........OK + Comparing sfcf027.tile5.nc .........OK + Comparing sfcf027.tile6.nc .........OK + Comparing sfcf048.tile1.nc .........OK + Comparing sfcf048.tile2.nc .........OK + Comparing sfcf048.tile3.nc .........OK + Comparing sfcf048.tile4.nc .........OK + Comparing sfcf048.tile5.nc .........OK + Comparing sfcf048.tile6.nc .........OK + Comparing 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 atmf027.tile1.nc .........OK + Comparing atmf027.tile2.nc .........OK + Comparing atmf027.tile3.nc .........OK + Comparing atmf027.tile4.nc .........OK + Comparing atmf027.tile5.nc .........OK + Comparing atmf027.tile6.nc .........OK + Comparing atmf048.tile1.nc .........OK + Comparing atmf048.tile2.nc .........OK + Comparing atmf048.tile3.nc .........OK + Comparing atmf048.tile4.nc .........OK + Comparing atmf048.tile5.nc .........OK + Comparing atmf048.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +[0] The total amount of wall time = 197.700028 + +Test 046 fv3_gsd PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1alpha +Checking test 047 fv3_rrfs_v1alpha 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/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 = 101.681913 + +Test 047 fv3_rrfs_v1alpha PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rap +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rap +Checking test 048 fv3_rap 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/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 = 101.875346 + +Test 048 fv3_rap PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_hrrr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_hrrr +Checking test 049 fv3_hrrr 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/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 = 100.218844 + +Test 049 fv3_hrrr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1beta +Checking test 050 fv3_rrfs_v1beta 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/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 = 101.118565 + +Test 050 fv3_rrfs_v1beta PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_HAFS_v0_hwrf_thompson Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1571,13 +1951,13 @@ Checking test 051 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 172.000259 +[0] The total amount of wall time = 171.396775 Test 051 fv3_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_esg_HAFS_v0_hwrf_thompson +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_esg_HAFS_v0_hwrf_thompson Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1592,39 +1972,39 @@ Checking test 052 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 320.551061 +[0] The total amount of wall time = 321.229692 Test 052 fv3_esg_HAFS_v0_hwrf_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_debug Checking test 053 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.429586 +[0] The total amount of wall time = 167.023727 Test 053 control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_2threads_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_2threads_debug Checking test 054 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 155.368157 +[0] The total amount of wall time = 154.919353 Test 054 control_2threads_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_CubedSphereGrid_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_CubedSphereGrid_debug Checking test 055 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1651,169 +2031,169 @@ Checking test 055 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.923445 +[0] The total amount of wall time = 180.765585 Test 055 control_CubedSphereGrid_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_wrtGauss_netcdf_parallel_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_wrtGauss_netcdf_parallel_debug Checking test 056 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 170.922005 +[0] The total amount of wall time = 170.275229 Test 056 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_stochy_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_stochy_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_stochy_debug Checking test 057 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.845994 +[0] The total amount of wall time = 190.986563 Test 057 control_stochy_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_lndp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lndp_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lndp_debug Checking test 058 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 171.957681 +[0] The total amount of wall time = 171.968745 Test 058 control_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_lheatstrg_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_lheatstrg_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_lheatstrg_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_lheatstrg_debug Checking test 059 control_lheatstrg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.661571 +[0] The total amount of wall time = 166.843770 Test 059 control_lheatstrg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_merra2_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_merra2_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_merra2_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_merra2_debug Checking test 060 control_merra2_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 215.372669 +[0] The total amount of wall time = 215.106709 Test 060 control_merra2_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_rrtmgp_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_rrtmgp_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_rrtmgp_debug Checking test 061 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 188.884507 +[0] The total amount of wall time = 188.443616 Test 061 control_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_csawmg_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmg_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmg_debug Checking test 062 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 261.160069 +[0] The total amount of wall time = 258.785061 Test 062 control_csawmg_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_csawmgt_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_csawmgt_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_csawmgt_debug Checking test 063 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 296.658635 +[0] The total amount of wall time = 294.240861 Test 063 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ugwpv1_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_ugwpv1_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ugwpv1_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ugwpv1_debug Checking test 064 control_ugwpv1_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 181.944473 +[0] The total amount of wall time = 181.152078 Test 064 control_ugwpv1_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_ras_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_ras_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_ras_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 170.150284 +[0] The total amount of wall time = 169.847686 Test 065 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_debug Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 197.431923 +[0] The total amount of wall time = 196.117225 Test 066 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_thompson_no_aero_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_thompson_no_aero_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_thompson_no_aero_debug Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 190.043209 +[0] The total amount of wall time = 189.624682 Test 067 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_regional_control_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/regional_control_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_regional_control_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/regional_control_debug Checking test 068 regional_control_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1821,13 +2201,13 @@ Checking test 068 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 = 277.973962 +[0] The total amount of wall time = 277.076070 Test 068 regional_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_gsd_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd_debug Checking test 069 fv3_gsd_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1892,13 +2272,13 @@ Checking test 069 fv3_gsd_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 233.188357 +[0] The total amount of wall time = 232.345035 Test 069 fv3_gsd_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_gsd_diag3d_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_gsd_diag3d_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_gsd_diag3d_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_gsd_diag3d_debug Checking test 070 fv3_gsd_diag3d_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1963,13 +2343,13 @@ Checking test 070 fv3_gsd_diag3d_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 289.090983 +[0] The total amount of wall time = 304.064980 Test 070 fv3_gsd_diag3d_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_rrfs_v1beta_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1beta_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1beta_debug Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2034,13 +2414,13 @@ Checking test 071 fv3_rrfs_v1beta_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 225.781158 +[0] The total amount of wall time = 224.540191 Test 071 fv3_rrfs_v1beta_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/fv3_rrfs_v1alpha_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_rrfs_v1alpha_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/fv3_rrfs_v1alpha_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_rrfs_v1alpha_debug Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2105,13 +2485,13 @@ Checking test 072 fv3_rrfs_v1alpha_debug results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 225.650506 +[0] The total amount of wall time = 224.852228 Test 072 fv3_rrfs_v1alpha_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_HAFS_v0_hwrf_thompson_debug Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2176,13 +2556,13 @@ Checking test 073 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 237.113467 +[0] The total amount of wall time = 236.221623 Test 073 fv3_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/fv3_esg_HAFS_v0_hwrf_thompson_debug +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/ESG_HAFS_v0_HWRF_thompson_debug +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2197,213 +2577,228 @@ Checking test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 434.438009 +[0] The total amount of wall time = 433.028656 Test 074 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_control_cfsr Checking test 075 datm_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 107.413019 +[0] The total amount of wall time = 107.851819 Test 075 datm_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_control_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_restart_cfsr Checking test 076 datm_restart_cfsr results .... 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.993650 +[0] The total amount of wall time = 78.866530 Test 076 datm_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_control_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_control_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_control_gefs Checking test 077 datm_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 100.846349 +[0] The total amount of wall time = 100.418882 Test 077 datm_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_bulk_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_bulk_cfsr Checking test 078 datm_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 104.139003 +[0] The total amount of wall time = 103.415477 Test 078 datm_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_bulk_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_bulk_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_bulk_gefs Checking test 079 datm_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 100.883633 +[0] The total amount of wall time = 100.578416 Test 079 datm_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_mx025_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_mx025_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_mx025_cfsr Checking test 080 datm_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + 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 = 383.970255 +[0] The total amount of wall time = 346.669192 Test 080 datm_mx025_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_mx025_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_mx025_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_mx025_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_mx025_gefs Checking test 081 datm_mx025_gefs results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + 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 = 377.213013 +[0] The total amount of wall time = 342.300055 Test 081 datm_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_debug_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_debug_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_debug_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_debug_cfsr Checking test 082 datm_debug_cfsr results .... 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 = 303.263795 +[0] The total amount of wall time = 300.035380 Test 082 datm_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_control_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_control_cfsr Checking test 083 datm_cdeps_control_cfsr results .... 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 = 173.758920 +[0] The total amount of wall time = 178.443748 Test 083 datm_cdeps_control_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_restart_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_restart_cfsr Checking test 084 datm_cdeps_restart_cfsr results .... 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.719001 +[0] The total amount of wall time = 128.832077 Test 084 datm_cdeps_restart_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_control_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_control_gefs Checking test 085 datm_cdeps_control_gefs results .... 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 = 168.455754 +[0] The total amount of wall time = 171.070894 Test 085 datm_cdeps_control_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_bulk_cfsr +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_bulk_cfsr Checking test 086 datm_cdeps_bulk_cfsr results .... 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 = 175.312932 +[0] The total amount of wall time = 179.669091 Test 086 datm_cdeps_bulk_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_bulk_gefs +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_bulk_gefs Checking test 087 datm_cdeps_bulk_gefs results .... 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 = 167.879387 +[0] The total amount of wall time = 171.779052 Test 087 datm_cdeps_bulk_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_mx025_gefs -Checking test 088 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_mx025_cfsr +Checking test 088 datm_cdeps_mx025_cfsr results .... 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.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + +[0] The total amount of wall time = 371.135308 + +Test 088 datm_cdeps_mx025_cfsr PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_mx025_gefs +Checking test 089 datm_cdeps_mx025_gefs results .... + 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.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 = 371.527267 +[0] The total amount of wall time = 367.764281 -Test 088 datm_cdeps_mx025_gefs PASS +Test 089 datm_cdeps_mx025_gefs PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_multiple_files_cfsr -Checking test 089 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_multiple_files_cfsr +Checking test 090 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 173.018420 +[0] The total amount of wall time = 175.898967 -Test 089 datm_cdeps_multiple_files_cfsr PASS +Test 090 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/datm_cdeps_debug_cfsr -Checking test 090 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/datm_cdeps_debug_cfsr +Checking test 091 datm_cdeps_debug_cfsr results .... 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 = 498.328648 +[0] The total amount of wall time = 496.892767 -Test 090 datm_cdeps_debug_cfsr PASS +Test 091 datm_cdeps_debug_cfsr PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210616/control_atmwav -working dir = /gpfs/dell2/ptmp/Wen.Meng/FV3_RT/rt_88322/control_atmwav -Checking test 091 control_atmwav results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20210706/control_atmwav +working dir = /gpfs/dell2/emc/modeling/noscrub/Dusan.Jovic/ufs/pr642/ptmp/Dusan.Jovic/FV3_RT/rt_50628/control_atmwav +Checking test 092 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2445,11 +2840,11 @@ Checking test 091 control_atmwav results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 363.664572 +[0] The total amount of wall time = 364.674231 -Test 091 control_atmwav PASS +Test 092 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 17 03:19:53 UTC 2021 -Elapsed time: 01h:07m:58s. Have a nice day! +Wed Jul 7 15:20:26 UTC 2021 +Elapsed time: 02h:05m:35s. Have a nice day! diff --git a/tests/compile.sh b/tests/compile.sh index 2ab7e69c37..59a8439011 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -114,11 +114,11 @@ set -ex # Valid applications if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" + CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then - CMAKE_FLAGS="${CMAKE_FLAGS} -DMOM6SOLO=ON" + CMAKE_FLAGS+=" -DMOM6SOLO=ON" fi CMAKE_FLAGS=$(trim "${CMAKE_FLAGS}") diff --git a/tests/tests/datm_cdeps_mx025_cfsr b/tests/tests/datm_cdeps_mx025_cfsr index eecec87747..e83ed29a44 100644 --- a/tests/tests/datm_cdeps_mx025_cfsr +++ b/tests/tests/datm_cdeps_mx025_cfsr @@ -23,7 +23,6 @@ export FHMAX=12 export RESTART_N=${FHMAX} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' -export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_cdeps_025 export TPN=$TPN_cdeps_025 diff --git a/tests/tests/datm_cdeps_mx025_gefs b/tests/tests/datm_cdeps_mx025_gefs index 7b6d02d35c..cf2d0a45db 100644 --- a/tests/tests/datm_cdeps_mx025_gefs +++ b/tests/tests/datm_cdeps_mx025_gefs @@ -20,7 +20,6 @@ export FHMAX=12 export RESTART_N=${FHMAX} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' -export CPL_SLOW=${DT_THERM_MOM6} export IATM=1536 export JATM=768 diff --git a/tests/tests/datm_mx025_cfsr b/tests/tests/datm_mx025_cfsr index d1e87d24e2..801a119e58 100644 --- a/tests/tests/datm_mx025_cfsr +++ b/tests/tests/datm_mx025_cfsr @@ -23,7 +23,6 @@ export FHMAX=12 export RESTART_N=${FHMAX} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' -export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025 diff --git a/tests/tests/datm_mx025_gefs b/tests/tests/datm_mx025_gefs index 48c6c1198a..de30025b23 100644 --- a/tests/tests/datm_mx025_gefs +++ b/tests/tests/datm_mx025_gefs @@ -19,7 +19,6 @@ export FHMAX=12 export RESTART_N=${FHMAX} export DT_DYNAM_MOM6='900' export DT_THERM_MOM6='1800' -export CPL_SLOW=${DT_THERM_MOM6} export TASKS=$TASKS_datm_025 export TPN=$TPN_datm_025