diff --git a/.gitmodules b/.gitmodules index a3775fc12d..fee3408ed6 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,7 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NOAA-EMC/fv3atm - branch = develop + url = https://github.com/SamuelTrahanNOAA/fv3atm + branch = ifi [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CMakeLists.txt b/CMakeLists.txt index 48dbbf9a7f..ea8664a18a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -83,6 +83,28 @@ if(CMAKE_Platform) endif() endif() +option(BUILD_WITH_IFI "Build NCEPpost with In-Flight Icing (IFI) library if present" OFF) +option(REQUIRE_IFI "Abort if libIFI is not found ; enables BUILD_WITH_IFI=ON" OFF) +option(INTERNAL_IFI "Compile with IFI inside the executable, instead of a library" OFF) + +if(INTERNAL_IFI) + message("Building with libIFI inside executable. Do not distribute executable outside of WCOSS2.") + set(BUILD_WITH_IFI OFF) + set(REQUIRE_IFI OFF) +endif() + +if(REQUIRE_IFI) + set(BUILD_WITH_IFI ON) +endif() + +if(BUILD_WITH_IFI) + if(REQUIRE_IFI) + find_package(IFI CONFIG REQUIRED) + else() + find_package(IFI CONFIG) + endif() +endif() + message("") message("32BIT ............ ${32BIT}") message("CCPP_32BIT ....... ${CCPP_32BIT}") @@ -316,6 +338,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) target_link_libraries(ufs_model ufs esmf w3emc::w3emc_d) +set_target_properties(ufs_model PROPERTIES LINKER_LANGUAGE Fortran) ############################################################################### ### Install diff --git a/FV3 b/FV3 index 8418428463..739fbd9181 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 841842846333801890cd3166c36581a6e9c2267b +Subproject commit 739fbd9181700629751aea012f3fbe8b20f6dcfe diff --git a/modulefiles/ufs_acorn.intel.lua b/modulefiles/ufs_acorn.intel.lua index 8432bb9462..fdf1d1567c 100644 --- a/modulefiles/ufs_acorn.intel.lua +++ b/modulefiles/ufs_acorn.intel.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common") +prepend_path("MODULEPATH", "/lfs/h1/oar/esrl/noscrub/samuel.trahan/ifi/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_acorn.intel_debug.lua b/modulefiles/ufs_acorn.intel_debug.lua index b9ba3794ba..58ab2923b3 100644 --- a/modulefiles/ufs_acorn.intel_debug.lua +++ b/modulefiles/ufs_acorn.intel_debug.lua @@ -28,6 +28,9 @@ load(pathJoin("hpc-cray-mpich", hpc_cray_mpich_ver)) load("ufs_common_debug") +prepend_path("MODULEPATH", "/lfs/h1/oar/esrl/noscrub/samuel.trahan/ifi/modulefiles") +load("ifi/20230118-intel-19.1.3.304") + setenv("CC", "cc") setenv("CXX", "CC") setenv("FC", "ftn") diff --git a/modulefiles/ufs_hera.intel.lua b/modulefiles/ufs_hera.intel.lua index 5209333988..2bc3722598 100644 --- a/modulefiles/ufs_hera.intel.lua +++ b/modulefiles/ufs_hera.intel.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_hera.intel_debug.lua b/modulefiles/ufs_hera.intel_debug.lua index 4c50ac2cab..cc4ae9e983 100644 --- a/modulefiles/ufs_hera.intel_debug.lua +++ b/modulefiles/ufs_hera.intel_debug.lua @@ -36,4 +36,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "hera.intel") +prepend_path("MODULEPATH", "/scratch2/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel.lua b/modulefiles/ufs_jet.intel.lua index c2d048bd2d..6ca3c691bc 100644 --- a/modulefiles/ufs_jet.intel.lua +++ b/modulefiles/ufs_jet.intel.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/modulefiles/ufs_jet.intel_debug.lua b/modulefiles/ufs_jet.intel_debug.lua index 8fd81d58f8..4b07640c79 100644 --- a/modulefiles/ufs_jet.intel_debug.lua +++ b/modulefiles/ufs_jet.intel_debug.lua @@ -31,4 +31,7 @@ setenv("CXX", "mpiicpc") setenv("FC", "mpiifort") setenv("CMAKE_Platform", "jet.intel") +prepend_path("MODULEPATH", "/lfs4/BMC/ifi/modulefiles") +try_load("ifi/20230118-intel-2022.1.2") + whatis("Description: UFS build environment") diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 2143d4c047..f61acb32f7 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,1709 +1,1066 @@ -Tue Mar 14 01:18:38 UTC 2023 +Tue Mar 14 20:52:20 UTC 2023 Start Regression test Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 388 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 312 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 002 elapsed time 186 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 311 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 93 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 392 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 316 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 314 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 266 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 147 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 257 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 224 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 143 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 111 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_c48 Checking test 001 control_c48 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - -0: The total amount of wall time = 685.871707 -0: The maximum resident set size (KB) = 702312 +Moving baseline 001 control_c48 files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + +0: The total amount of wall time = 683.379521 +0: The maximum resident set size (KB) = 699240 Test 001 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_stochy Checking test 002 control_stochy results .... - Comparing sfcf000.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - - 0: The total amount of wall time = 659.206878 - 0: The maximum resident set size (KB) = 479304 +Moving baseline 002 control_stochy files .... + Moving sfcf000.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF12 .........OK + + 0: The total amount of wall time = 655.105825 + 0: The maximum resident set size (KB) = 475796 Test 002 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_ras Checking test 003 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 = 835.205574 - 0: The maximum resident set size (KB) = 484824 +Moving baseline 003 control_ras files .... + Moving sfcf000.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 843.539347 + 0: The maximum resident set size (KB) = 484808 Test 003 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_p8 Checking test 004 control_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 896.145318 - 0: The maximum resident set size (KB) = 1235076 +Moving baseline 004 control_p8 files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 883.409755 + 0: The maximum resident set size (KB) = 1235616 Test 004 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control Checking test 005 rap_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1481.700860 - 0: The maximum resident set size (KB) = 828772 +Moving baseline 005 rap_control files .... + Moving sfcf000.nc .........OK + Moving sfcf021.nc .........OK + Moving sfcf024.nc .........OK + Moving atmf000.nc .........OK + Moving atmf021.nc .........OK + Moving atmf024.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF21 .........OK + Moving GFSFLX.GrbF24 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF21 .........OK + Moving GFSPRS.GrbF24 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1491.815067 + 0: The maximum resident set size (KB) = 834288 Test 005 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_decomp -Checking test 006 rap_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1437.078717 - 0: The maximum resident set size (KB) = 834356 - -Test 006 rap_decomp PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads -Checking test 007 rap_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf021.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf021.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1363.974420 - 0: The maximum resident set size (KB) = 899712 - -Test 007 rap_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart -Checking test 008 rap_restart results .... - Comparing sfcf024.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 721.878961 - 0: The maximum resident set size (KB) = 547336 - -Test 008 rap_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff -Checking test 009 rap_sfcdiff results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1482.554609 - 0: The maximum resident set size (KB) = 827048 - -Test 009 rap_sfcdiff PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_decomp -Checking test 010 rap_sfcdiff_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1435.362960 - 0: The maximum resident set size (KB) = 829572 - -Test 010 rap_sfcdiff_decomp PASS - - baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_sfcdiff_restart -Checking test 011 rap_sfcdiff_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1073.101195 - 0: The maximum resident set size (KB) = 553764 - -Test 011 rap_sfcdiff_restart PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control -Checking test 012 hrrr_control results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1467.314960 - 0: The maximum resident set size (KB) = 826692 - -Test 012 hrrr_control PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads -Checking test 013 hrrr_control_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1315.000444 - 0: The maximum resident set size (KB) = 893820 - -Test 013 hrrr_control_2threads PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp -Checking test 014 hrrr_control_decomp results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1432.182447 - 0: The maximum resident set size (KB) = 830820 - -Test 014 hrrr_control_decomp PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_sfcdiff +Checking test 006 rap_sfcdiff results .... +Moving baseline 006 rap_sfcdiff files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1505.729870 + 0: The maximum resident set size (KB) = 828608 + +Test 006 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart -Checking test 015 hrrr_control_restart results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1041.707336 - 0: The maximum resident set size (KB) = 547088 - -Test 015 hrrr_control_restart PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/hrrr_control +Checking test 007 hrrr_control results .... +Moving baseline 007 hrrr_control files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1407.294479 + 0: The maximum resident set size (KB) = 831896 + +Test 007 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta -Checking test 016 rrfs_v1beta results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1451.428825 - 0: The maximum resident set size (KB) = 823780 - -Test 016 rrfs_v1beta PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_v1beta +Checking test 008 rrfs_v1beta results .... +Moving baseline 008 rrfs_v1beta files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1453.092449 + 0: The maximum resident set size (KB) = 831428 + +Test 008 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm -Checking test 017 rrfs_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_conus13km_hrrr_warm +Checking test 009 rrfs_conus13km_hrrr_warm results .... +Moving baseline 009 rrfs_conus13km_hrrr_warm files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK - 0: The total amount of wall time = 774.380972 - 0: The maximum resident set size (KB) = 635460 + 0: The total amount of wall time = 765.217048 + 0: The maximum resident set size (KB) = 636804 -Test 017 rrfs_conus13km_hrrr_warm PASS +Test 009 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_smoke_conus13km_hrrr_warm -Checking test 018 rrfs_smoke_conus13km_hrrr_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_smoke_conus13km_hrrr_warm +Checking test 010 rrfs_smoke_conus13km_hrrr_warm results .... +Moving baseline 010 rrfs_smoke_conus13km_hrrr_warm files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK - 0: The total amount of wall time = 741.227633 - 0: The maximum resident set size (KB) = 650696 + 0: The total amount of wall time = 806.421793 + 0: The maximum resident set size (KB) = 650272 -Test 018 rrfs_smoke_conus13km_hrrr_warm PASS +Test 010 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm -Checking test 019 rrfs_conus13km_radar_tten_warm results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK - - 0: The total amount of wall time = 727.677854 - 0: The maximum resident set size (KB) = 638948 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_conus13km_radar_tten_warm +Checking test 011 rrfs_conus13km_radar_tten_warm results .... +Moving baseline 011 rrfs_conus13km_radar_tten_warm files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving sfcf002.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK + Moving atmf002.nc .........OK -Test 019 rrfs_conus13km_radar_tten_warm PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_2threads -Checking test 020 rrfs_conus13km_radar_tten_warm_2threads results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing sfcf002.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - Comparing atmf002.nc .........OK + 0: The total amount of wall time = 768.954183 + 0: The maximum resident set size (KB) = 640132 - 0: The total amount of wall time = 910.275340 - 0: The maximum resident set size (KB) = 637364 - -Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 011 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_diag_debug -Checking test 021 control_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_diag_debug +Checking test 012 control_diag_debug results .... +Moving baseline 012 control_diag_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 131.857250 - 0: The maximum resident set size (KB) = 533492 + 0: The total amount of wall time = 126.724160 + 0: The maximum resident set size (KB) = 535924 -Test 021 control_diag_debug PASS +Test 012 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/regional_debug -Checking test 022 regional_debug results .... - Comparing dynf000.nc .........OK - Comparing dynf001.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/regional_debug +Checking test 013 regional_debug results .... +Moving baseline 013 regional_debug files .... + Moving dynf000.nc .........OK + Moving dynf001.nc .........OK + Moving phyf000.nc .........OK + Moving phyf001.nc .........OK - 0: The total amount of wall time = 570.756507 - 0: The maximum resident set size (KB) = 594108 + 0: The total amount of wall time = 756.022156 + 0: The maximum resident set size (KB) = 595484 -Test 022 regional_debug PASS +Test 013 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug -Checking test 023 rap_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control_debug +Checking test 014 rap_control_debug results .... +Moving baseline 014 rap_control_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 181.283020 - 0: The maximum resident set size (KB) = 848856 + 0: The total amount of wall time = 177.965947 + 0: The maximum resident set size (KB) = 847656 -Test 023 rap_control_debug PASS +Test 014 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug -Checking test 024 hrrr_control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/hrrr_control_debug +Checking test 015 hrrr_control_debug results .... +Moving baseline 015 hrrr_control_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 174.037937 - 0: The maximum resident set size (KB) = 841016 + 0: The total amount of wall time = 176.915039 + 0: The maximum resident set size (KB) = 843864 -Test 024 hrrr_control_debug PASS +Test 015 hrrr_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_diag_debug -Checking test 025 rap_diag_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_diag_debug +Checking test 016 rap_diag_debug results .... +Moving baseline 016 rap_diag_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 212.242713 - 0: The maximum resident set size (KB) = 928280 + 0: The total amount of wall time = 213.269478 + 0: The maximum resident set size (KB) = 930400 -Test 025 rap_diag_debug PASS +Test 016 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 017 rap_noah_sfcdiff_cires_ugwp_debug results .... +Moving baseline 017 rap_noah_sfcdiff_cires_ugwp_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 277.086566 - 0: The maximum resident set size (KB) = 840496 + 0: The total amount of wall time = 277.487413 + 0: The maximum resident set size (KB) = 844644 -Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 017 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_progcld_thompson_debug -Checking test 027 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_progcld_thompson_debug +Checking test 018 rap_progcld_thompson_debug results .... +Moving baseline 018 rap_progcld_thompson_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 176.635253 - 0: The maximum resident set size (KB) = 846536 + 0: The total amount of wall time = 176.963510 + 0: The maximum resident set size (KB) = 851804 -Test 027 rap_progcld_thompson_debug PASS +Test 018 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_v1beta_debug -Checking test 028 rrfs_v1beta_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_v1beta_debug +Checking test 019 rrfs_v1beta_debug results .... +Moving baseline 019 rrfs_v1beta_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 177.344618 - 0: The maximum resident set size (KB) = 841024 + 0: The total amount of wall time = 177.312682 + 0: The maximum resident set size (KB) = 848776 -Test 028 rrfs_v1beta_debug PASS +Test 019 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_ras_debug -Checking test 029 control_ras_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_ras_debug +Checking test 020 control_ras_debug results .... +Moving baseline 020 control_ras_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 107.542396 - 0: The maximum resident set size (KB) = 484888 + 0: The total amount of wall time = 105.200550 + 0: The maximum resident set size (KB) = 490744 -Test 029 control_ras_debug PASS +Test 020 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_stochy_debug -Checking test 030 control_stochy_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_stochy_debug +Checking test 021 control_stochy_debug results .... +Moving baseline 021 control_stochy_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 122.320076 - 0: The maximum resident set size (KB) = 477064 + 0: The total amount of wall time = 121.219649 + 0: The maximum resident set size (KB) = 480540 -Test 030 control_stochy_debug PASS +Test 021 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_debug_p8 -Checking test 031 control_debug_p8 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_debug_p8 +Checking test 022 control_debug_p8 results .... +Moving baseline 022 control_debug_p8 files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 118.625767 - 0: The maximum resident set size (KB) = 1234076 + 0: The total amount of wall time = 119.903607 + 0: The maximum resident set size (KB) = 1238276 -Test 031 control_debug_p8 PASS +Test 022 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_hrrr_warm_debug -Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_conus13km_hrrr_warm_debug +Checking test 023 rrfs_conus13km_hrrr_warm_debug results .... +Moving baseline 023 rrfs_conus13km_hrrr_warm_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 581.310854 - 0: The maximum resident set size (KB) = 653940 + 0: The total amount of wall time = 556.181635 + 0: The maximum resident set size (KB) = 655928 -Test 032 rrfs_conus13km_hrrr_warm_debug PASS +Test 023 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rrfs_conus13km_radar_tten_warm_debug -Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rrfs_conus13km_radar_tten_warm_debug +Checking test 024 rrfs_conus13km_radar_tten_warm_debug results .... +Moving baseline 024 rrfs_conus13km_radar_tten_warm_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 543.172149 - 0: The maximum resident set size (KB) = 655880 + 0: The total amount of wall time = 552.209541 + 0: The maximum resident set size (KB) = 657188 -Test 033 rrfs_conus13km_radar_tten_warm_debug PASS +Test 024 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/control_wam_debug -Checking test 034 control_wam_debug results .... - Comparing sfcf019.nc .........OK - Comparing atmf019.nc .........OK - - 0: The total amount of wall time = 186.697462 - 0: The maximum resident set size (KB) = 196220 - -Test 034 control_wam_debug PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn32_phy32 -Checking test 035 rap_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1460.514614 - 0: The maximum resident set size (KB) = 684192 - -Test 035 rap_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_dyn32_phy32 -Checking test 036 hrrr_control_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 736.383454 - 0: The maximum resident set size (KB) = 685228 - -Test 036 hrrr_control_dyn32_phy32 PASS - +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/control_wam_debug +Checking test 025 control_wam_debug results .... +Moving baseline 025 control_wam_debug files .... + Moving sfcf019.nc .........OK + Moving atmf019.nc .........OK -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_2threads_dyn32_phy32 -Checking test 037 rap_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1321.323483 - 0: The maximum resident set size (KB) = 732936 - -Test 037 rap_2threads_dyn32_phy32 PASS + 0: The total amount of wall time = 184.134189 + 0: The maximum resident set size (KB) = 195300 - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_2threads_dyn32_phy32 -Checking test 038 hrrr_control_2threads_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 677.986373 - 0: The maximum resident set size (KB) = 728960 - -Test 038 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_decomp_dyn32_phy32 -Checking test 039 hrrr_control_decomp_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 707.577927 - 0: The maximum resident set size (KB) = 683848 - -Test 039 hrrr_control_decomp_dyn32_phy32 PASS +Test 025 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_restart_dyn32_phy32 -Checking test 040 rap_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1055.917213 - 0: The maximum resident set size (KB) = 517244 - -Test 040 rap_restart_dyn32_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control_dyn32_phy32 +Checking test 026 rap_control_dyn32_phy32 results .... +Moving baseline 026 rap_control_dyn32_phy32 files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1460.214358 + 0: The maximum resident set size (KB) = 689292 + +Test 026 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_restart_dyn32_phy32 -Checking test 041 hrrr_control_restart_dyn32_phy32 results .... - Comparing sfcf012.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 364.072439 - 0: The maximum resident set size (KB) = 508236 - -Test 041 hrrr_control_restart_dyn32_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/hrrr_control_dyn32_phy32 +Checking test 027 hrrr_control_dyn32_phy32 results .... +Moving baseline 027 hrrr_control_dyn32_phy32 files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 756.137933 + 0: The maximum resident set size (KB) = 689420 + +Test 027 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32 -Checking test 042 rap_control_dyn64_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf009.nc .........OK - Comparing sfcf012.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf009.nc .........OK - Comparing atmf012.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF09 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF09 .........OK - Comparing GFSPRS.GrbF12 .........OK - Comparing RESTART/20210322.180000.coupler.res .........OK - Comparing RESTART/20210322.180000.fv_core.res.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 1059.285964 - 0: The maximum resident set size (KB) = 711788 - -Test 042 rap_control_dyn64_phy32 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control_dyn64_phy32 +Checking test 028 rap_control_dyn64_phy32 results .... +Moving baseline 028 rap_control_dyn64_phy32 files .... + Moving sfcf000.nc .........OK + Moving sfcf009.nc .........OK + Moving sfcf012.nc .........OK + Moving atmf000.nc .........OK + Moving atmf009.nc .........OK + Moving atmf012.nc .........OK + Moving GFSFLX.GrbF00 .........OK + Moving GFSFLX.GrbF09 .........OK + Moving GFSFLX.GrbF12 .........OK + Moving GFSPRS.GrbF00 .........OK + Moving GFSPRS.GrbF09 .........OK + Moving GFSPRS.GrbF12 .........OK + Moving RESTART/20210322.180000.coupler.res .........OK + Moving RESTART/20210322.180000.fv_core.res.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.180000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.180000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.180000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1058.432414 + 0: The maximum resident set size (KB) = 709812 + +Test 028 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_debug_dyn32_phy32 -Checking test 043 rap_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control_debug_dyn32_phy32 +Checking test 029 rap_control_debug_dyn32_phy32 results .... +Moving baseline 029 rap_control_debug_dyn32_phy32 files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 172.517556 - 0: The maximum resident set size (KB) = 704748 + 0: The total amount of wall time = 172.304024 + 0: The maximum resident set size (KB) = 708160 -Test 043 rap_control_debug_dyn32_phy32 PASS +Test 029 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/hrrr_control_debug_dyn32_phy32 -Checking test 044 hrrr_control_debug_dyn32_phy32 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/hrrr_control_debug_dyn32_phy32 +Checking test 030 hrrr_control_debug_dyn32_phy32 results .... +Moving baseline 030 hrrr_control_debug_dyn32_phy32 files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 170.029556 - 0: The maximum resident set size (KB) = 701984 + 0: The total amount of wall time = 171.696428 + 0: The maximum resident set size (KB) = 703704 -Test 044 hrrr_control_debug_dyn32_phy32 PASS +Test 030 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/rap_control_dyn64_phy32_debug -Checking test 045 rap_control_dyn64_phy32_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/rap_control_dyn64_phy32_debug +Checking test 031 rap_control_dyn64_phy32_debug results .... +Moving baseline 031 rap_control_dyn64_phy32_debug files .... + Moving sfcf000.nc .........OK + Moving sfcf001.nc .........OK + Moving atmf000.nc .........OK + Moving atmf001.nc .........OK - 0: The total amount of wall time = 207.217954 - 0: The maximum resident set size (KB) = 724012 + 0: The total amount of wall time = 206.063085 + 0: The maximum resident set size (KB) = 720984 -Test 045 rap_control_dyn64_phy32_debug PASS +Test 031 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_p8 -Checking test 046 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.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 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 gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_pnt.ww3 .........OK - Comparing 20210323.060000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 1687.169685 - 0: The maximum resident set size (KB) = 1429480 - -Test 046 cpld_control_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/cpld_control_p8 +Checking test 032 cpld_control_p8 results .... +Moving baseline 032 cpld_control_p8 files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving gocart.inst_aod.20210323_0600z.nc4 .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Moving 20210323.060000.out_pnt.ww3 .........OK + Moving 20210323.060000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 1731.214997 + 0: The maximum resident set size (KB) = 1430044 + +Test 032 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_control_nowave_noaero_p8 -Checking test 047 cpld_control_nowave_noaero_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.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 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/20210323.060000.coupler.res .........OK - Comparing RESTART/20210323.060000.fv_core.res.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210323.060000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - - 0: The total amount of wall time = 1233.193815 - 0: The maximum resident set size (KB) = 1335076 - -Test 047 cpld_control_nowave_noaero_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/cpld_control_nowave_noaero_p8 +Checking test 033 cpld_control_nowave_noaero_p8 results .... +Moving baseline 033 cpld_control_nowave_noaero_p8 files .... + Moving sfcf021.tile1.nc .........OK + Moving sfcf021.tile2.nc .........OK + Moving sfcf021.tile3.nc .........OK + Moving sfcf021.tile4.nc .........OK + Moving sfcf021.tile5.nc .........OK + Moving sfcf021.tile6.nc .........OK + Moving atmf021.tile1.nc .........OK + Moving atmf021.tile2.nc .........OK + Moving atmf021.tile3.nc .........OK + Moving atmf021.tile4.nc .........OK + Moving atmf021.tile5.nc .........OK + Moving atmf021.tile6.nc .........OK + Moving sfcf024.tile1.nc .........OK + Moving sfcf024.tile2.nc .........OK + Moving sfcf024.tile3.nc .........OK + Moving sfcf024.tile4.nc .........OK + Moving sfcf024.tile5.nc .........OK + Moving sfcf024.tile6.nc .........OK + Moving atmf024.tile1.nc .........OK + Moving atmf024.tile2.nc .........OK + Moving atmf024.tile3.nc .........OK + Moving atmf024.tile4.nc .........OK + Moving atmf024.tile5.nc .........OK + Moving atmf024.tile6.nc .........OK + Moving RESTART/20210323.060000.coupler.res .........OK + Moving RESTART/20210323.060000.fv_core.res.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK + Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK + Moving RESTART/20210323.060000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-23-21600.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + + 0: The total amount of wall time = 1221.562292 + 0: The maximum resident set size (KB) = 1332356 + +Test 033 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/cpld_debug_p8 -Checking test 048 cpld_debug_p8 results .... - Comparing sfcf003.tile1.nc .........OK - Comparing sfcf003.tile2.nc .........OK - Comparing sfcf003.tile3.nc .........OK - Comparing sfcf003.tile4.nc .........OK - Comparing sfcf003.tile5.nc .........OK - Comparing sfcf003.tile6.nc .........OK - Comparing atmf003.tile1.nc .........OK - Comparing atmf003.tile2.nc .........OK - Comparing atmf003.tile3.nc .........OK - Comparing atmf003.tile4.nc .........OK - Comparing atmf003.tile5.nc .........OK - Comparing atmf003.tile6.nc .........OK - Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK - Comparing RESTART/20210322.090000.coupler.res .........OK - Comparing RESTART/20210322.090000.fv_core.res.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_core.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK - Comparing RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.phy_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile1.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile2.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile3.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile4.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile5.nc .........OK - Comparing RESTART/20210322.090000.sfc_data.tile6.nc .........OK - Comparing RESTART/20210322.090000.MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-32400.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK - Comparing 20210322.090000.out_pnt.ww3 .........OK - Comparing 20210322.090000.out_grd.ww3 .........OK - - 0: The total amount of wall time = 849.010083 - 0: The maximum resident set size (KB) = 1446956 - -Test 048 cpld_debug_p8 PASS +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/cpld_debug_p8 +Checking test 034 cpld_debug_p8 results .... +Moving baseline 034 cpld_debug_p8 files .... + Moving sfcf003.tile1.nc .........OK + Moving sfcf003.tile2.nc .........OK + Moving sfcf003.tile3.nc .........OK + Moving sfcf003.tile4.nc .........OK + Moving sfcf003.tile5.nc .........OK + Moving sfcf003.tile6.nc .........OK + Moving atmf003.tile1.nc .........OK + Moving atmf003.tile2.nc .........OK + Moving atmf003.tile3.nc .........OK + Moving atmf003.tile4.nc .........OK + Moving atmf003.tile5.nc .........OK + Moving atmf003.tile6.nc .........OK + Moving gocart.inst_aod.20210322_0900z.nc4 .........OK + Moving RESTART/20210322.090000.coupler.res .........OK + Moving RESTART/20210322.090000.fv_core.res.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_core.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_srf_wnd.res.tile6.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile1.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile2.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile3.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile4.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile5.nc .........OK + Moving RESTART/20210322.090000.fv_tracer.res.tile6.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile1.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile2.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile3.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile4.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile5.nc .........OK + Moving RESTART/20210322.090000.phy_data.tile6.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile1.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile2.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile3.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile4.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile5.nc .........OK + Moving RESTART/20210322.090000.sfc_data.tile6.nc .........OK + Moving RESTART/20210322.090000.MOM.res.nc .........OK + Moving RESTART/iced.2021-03-22-32400.nc .........OK + Moving RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc .........OK + Moving 20210322.090000.out_pnt.ww3 .........OK + Moving 20210322.090000.out_grd.ww3 .........OK + + 0: The total amount of wall time = 898.744968 + 0: The maximum resident set size (KB) = 1442512 + +Test 034 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11809/datm_cdeps_control_cfsr -Checking test 049 datm_cdeps_control_cfsr results .... - Comparing RESTART/20111002.000000.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 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_193550/datm_cdeps_control_cfsr +Checking test 035 datm_cdeps_control_cfsr results .... +Moving baseline 035 datm_cdeps_control_cfsr files .... + Moving RESTART/20111002.000000.MOM.res.nc .........OK + Moving RESTART/iced.2011-10-02-00000.nc .........OK + Moving RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 180.715136 - 0: The maximum resident set size (KB) = 663828 + 0: The total amount of wall time = 175.537572 + 0: The maximum resident set size (KB) = 656604 -Test 049 datm_cdeps_control_cfsr PASS +Test 035 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 02:12:43 UTC 2023 -Elapsed time: 00h:54m:05s. Have a nice day! +Tue Mar 14 22:04:51 UTC 2023 +Elapsed time: 01h:12m:31s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index dfc7c7856c..0fac6450af 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,42 +1,42 @@ -Tue Mar 14 01:02:52 UTC 2023 +Wed Mar 15 14:53:11 UTC 2023 Start Regression test -Compile 001 elapsed time 598 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 621 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 559 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 212 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 496 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 690 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 009 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 418 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 589 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 014 elapsed time 216 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 015 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 016 elapsed time 428 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 017 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 613 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 610 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 562 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 222 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 194 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 512 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 499 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 696 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 009 elapsed time 486 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 463 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 426 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 570 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 208 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 015 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 016 elapsed time 447 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 452 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 018 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 019 elapsed time 166 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 563 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 187 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 019 elapsed time 161 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 549 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 192 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 022 elapsed time 629 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 023 elapsed time 590 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 024 elapsed time 182 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 025 elapsed time 114 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 026 elapsed time 185 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 027 elapsed time 61 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 468 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 522 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 030 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 031 elapsed time 460 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 032 elapsed time 170 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 033 elapsed time 539 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release - -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_mixedmode +Compile 023 elapsed time 608 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 024 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 179 seconds. -DAPP=NG-GODAS -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 027 elapsed time 73 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 481 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 505 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 463 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 473 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 202 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 533 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -101,14 +101,14 @@ Checking test 001 cpld_control_p8_mixedmode results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 307.221136 - 0: The maximum resident set size (KB) = 3140152 + 0: The total amount of wall time = 306.485565 + 0: The maximum resident set size (KB) = 3138420 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_gfsv17 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_gfsv17 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_gfsv17 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -172,14 +172,14 @@ Checking test 002 cpld_control_gfsv17 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 222.631996 - 0: The maximum resident set size (KB) = 1736868 + 0: The total amount of wall time = 221.587854 + 0: The maximum resident set size (KB) = 1737004 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -244,14 +244,14 @@ Checking test 003 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 337.620589 - 0: The maximum resident set size (KB) = 3179152 + 0: The total amount of wall time = 338.008680 + 0: The maximum resident set size (KB) = 3179448 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 004 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 198.722927 - 0: The maximum resident set size (KB) = 3055096 + 0: The total amount of wall time = 194.538807 + 0: The maximum resident set size (KB) = 3048272 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_2threads_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -364,14 +364,14 @@ Checking test 005 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 349.530375 - 0: The maximum resident set size (KB) = 3508296 + 0: The total amount of wall time = 349.381876 + 0: The maximum resident set size (KB) = 3510356 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_decomp_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -424,14 +424,14 @@ Checking test 006 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 338.450619 - 0: The maximum resident set size (KB) = 3170632 + 0: The total amount of wall time = 337.484827 + 0: The maximum resident set size (KB) = 3167032 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_mpi_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -484,14 +484,14 @@ Checking test 007 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 277.065736 - 0: The maximum resident set size (KB) = 3019492 + 0: The total amount of wall time = 277.771028 + 0: The maximum resident set size (KB) = 3016332 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_ciceC_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -556,14 +556,14 @@ Checking test 008 cpld_control_ciceC_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 335.329431 - 0: The maximum resident set size (KB) = 3177816 + 0: The total amount of wall time = 336.782574 + 0: The maximum resident set size (KB) = 3178404 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c192_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -616,14 +616,14 @@ Checking test 009 cpld_control_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 580.740245 - 0: The maximum resident set size (KB) = 3252580 + 0: The total amount of wall time = 576.491829 + 0: The maximum resident set size (KB) = 3247924 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c192_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -676,14 +676,14 @@ Checking test 010 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 408.705195 - 0: The maximum resident set size (KB) = 3155504 + 0: The total amount of wall time = 400.123788 + 0: The maximum resident set size (KB) = 3154792 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_bmark_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_bmark_p8 Checking test 011 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,14 +731,14 @@ Checking test 011 cpld_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 712.502587 - 0: The maximum resident set size (KB) = 4033108 + 0: The total amount of wall time = 704.012685 + 0: The maximum resident set size (KB) = 4033416 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_bmark_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_restart_bmark_p8 Checking test 012 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -786,14 +786,14 @@ Checking test 012 cpld_restart_bmark_p8 results .... Comparing 20130401.060000.out_pnt.ww3 .........OK Comparing 20130401.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 444.277684 - 0: The maximum resident set size (KB) = 3972408 + 0: The total amount of wall time = 447.925060 + 0: The maximum resident set size (KB) = 3968352 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -857,14 +857,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 262.854982 - 0: The maximum resident set size (KB) = 1726776 + 0: The total amount of wall time = 262.399482 + 0: The maximum resident set size (KB) = 1723552 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_nowave_noaero_p8 Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -926,14 +926,14 @@ Checking test 014 cpld_control_nowave_noaero_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 257.310744 - 0: The maximum resident set size (KB) = 1766140 + 0: The total amount of wall time = 257.147261 + 0: The maximum resident set size (KB) = 1768576 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -986,14 +986,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 643.828486 - 0: The maximum resident set size (KB) = 3240144 + 0: The total amount of wall time = 653.680082 + 0: The maximum resident set size (KB) = 3249220 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_debug_noaero_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1045,14 +1045,14 @@ Checking test 016 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.601314 - 0: The maximum resident set size (KB) = 1743524 + 0: The total amount of wall time = 409.622260 + 0: The maximum resident set size (KB) = 1743692 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1114,14 +1114,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 267.324618 - 0: The maximum resident set size (KB) = 1765568 + 0: The total amount of wall time = 265.150127 + 0: The maximum resident set size (KB) = 1763932 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_c48 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1171,14 +1171,14 @@ Checking test 018 cpld_control_c48 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 583.269253 - 0: The maximum resident set size (KB) = 2798096 + 0: The total amount of wall time = 575.046118 + 0: The maximum resident set size (KB) = 2803572 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_warmstart_c48 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1228,14 +1228,14 @@ Checking test 019 cpld_warmstart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 155.745040 - 0: The maximum resident set size (KB) = 2798644 + 0: The total amount of wall time = 151.193827 + 0: The maximum resident set size (KB) = 2800572 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_warmstart_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_restart_c48 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_warmstart_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1285,14 +1285,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 82.024750 - 0: The maximum resident set size (KB) = 2251936 + 0: The total amount of wall time = 78.962919 + 0: The maximum resident set size (KB) = 2250064 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/cpld_control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/cpld_control_p8_faster +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/cpld_control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/cpld_control_p8_faster Checking test 021 cpld_control_p8_faster results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1357,14 +1357,14 @@ Checking test 021 cpld_control_p8_faster results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 319.458710 - 0: The maximum resident set size (KB) = 3183208 + 0: The total amount of wall time = 315.058402 + 0: The maximum resident set size (KB) = 3179616 Test 021 cpld_control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_CubedSphereGrid Checking test 022 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1391,28 +1391,28 @@ Checking test 022 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.325733 - 0: The maximum resident set size (KB) = 628420 + 0: The total amount of wall time = 130.267497 + 0: The maximum resident set size (KB) = 630452 Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_parallel +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_CubedSphereGrid_parallel Checking test 023 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.150938 - 0: The maximum resident set size (KB) = 627600 + 0: The total amount of wall time = 126.651884 + 0: The maximum resident set size (KB) = 629092 Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_latlon +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_latlon Checking test 024 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1423,14 +1423,14 @@ Checking test 024 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.459410 - 0: The maximum resident set size (KB) = 629972 + 0: The total amount of wall time = 133.752927 + 0: The maximum resident set size (KB) = 628480 Test 024 control_latlon PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_wrtGauss_netcdf_parallel Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1441,14 +1441,14 @@ Checking test 025 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.830957 - 0: The maximum resident set size (KB) = 628164 + 0: The total amount of wall time = 135.883052 + 0: The maximum resident set size (KB) = 624392 Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c48 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_c48 Checking test 026 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1487,14 +1487,14 @@ Checking test 026 control_c48 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK -0: The total amount of wall time = 369.575712 -0: The maximum resident set size (KB) = 814768 +0: The total amount of wall time = 368.791938 +0: The maximum resident set size (KB) = 820088 Test 026 control_c48 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c192 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_c192 Checking test 027 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1505,14 +1505,14 @@ Checking test 027 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 530.567762 - 0: The maximum resident set size (KB) = 763276 + 0: The total amount of wall time = 527.244361 + 0: The maximum resident set size (KB) = 765100 Test 027 control_c192 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_c384 Checking test 028 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1523,14 +1523,14 @@ Checking test 028 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 538.565027 - 0: The maximum resident set size (KB) = 1257272 + 0: The total amount of wall time = 532.264571 + 0: The maximum resident set size (KB) = 1262404 Test 028 control_c384 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_c384gdas +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_c384gdas Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 029 control_c384gdas results .... Comparing RESTART/20210322.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 475.361934 - 0: The maximum resident set size (KB) = 1375788 + 0: The total amount of wall time = 461.916893 + 0: The maximum resident set size (KB) = 1360940 Test 029 control_c384gdas PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_stochy Checking test 030 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1591,28 +1591,28 @@ Checking test 030 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.669998 - 0: The maximum resident set size (KB) = 629512 + 0: The total amount of wall time = 86.338307 + 0: The maximum resident set size (KB) = 631808 Test 030 control_stochy PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_restart +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_stochy_restart Checking test 031 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.275305 - 0: The maximum resident set size (KB) = 483676 + 0: The total amount of wall time = 46.972735 + 0: The maximum resident set size (KB) = 482100 Test 031 control_stochy_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_lndp Checking test 032 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1623,14 +1623,14 @@ Checking test 032 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.046872 - 0: The maximum resident set size (KB) = 630828 + 0: The total amount of wall time = 80.194212 + 0: The maximum resident set size (KB) = 628428 Test 032 control_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr4 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_iovr4 Checking test 033 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1645,14 @@ Checking test 033 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.379899 - 0: The maximum resident set size (KB) = 628184 + 0: The total amount of wall time = 134.322837 + 0: The maximum resident set size (KB) = 628136 Test 033 control_iovr4 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_iovr5 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_iovr5 Checking test 034 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1667,14 +1667,14 @@ Checking test 034 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.569747 - 0: The maximum resident set size (KB) = 632268 + 0: The total amount of wall time = 135.147165 + 0: The maximum resident set size (KB) = 630712 Test 034 control_iovr5 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_p8 Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1721,14 @@ Checking test 035 control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.152452 - 0: The maximum resident set size (KB) = 1600108 + 0: The total amount of wall time = 166.987997 + 0: The maximum resident set size (KB) = 1599152 Test 035 control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_lndp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_p8_lndp Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1747,14 +1747,14 @@ Checking test 036 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 316.382797 - 0: The maximum resident set size (KB) = 1598328 + 0: The total amount of wall time = 311.047011 + 0: The maximum resident set size (KB) = 1594856 Test 036 control_p8_lndp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_restart_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_restart_p8 Checking test 037 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1793,14 +1793,14 @@ Checking test 037 control_restart_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 86.586472 - 0: The maximum resident set size (KB) = 878656 + 0: The total amount of wall time = 88.444018 + 0: The maximum resident set size (KB) = 872696 Test 037 control_restart_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_decomp_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_decomp_p8 Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1843,14 +1843,14 @@ Checking test 038 control_decomp_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 178.023795 - 0: The maximum resident set size (KB) = 1584536 + 0: The total amount of wall time = 172.684180 + 0: The maximum resident set size (KB) = 1585440 Test 038 control_decomp_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_2threads_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_2threads_p8 Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1893,14 +1893,14 @@ Checking test 039 control_2threads_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 168.625635 - 0: The maximum resident set size (KB) = 1678416 + 0: The total amount of wall time = 161.884811 + 0: The maximum resident set size (KB) = 1680468 Test 039 control_2threads_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_rrtmgp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_p8_rrtmgp Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1947,14 +1947,14 @@ Checking test 040 control_p8_rrtmgp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 223.947706 - 0: The maximum resident set size (KB) = 1675140 + 0: The total amount of wall time = 225.496003 + 0: The maximum resident set size (KB) = 1674560 Test 040 control_p8_rrtmgp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/merra2_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/merra2_thompson +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/merra2_thompson +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/merra2_thompson Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2001,14 +2001,14 @@ Checking test 041 merra2_thompson results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.659849 - 0: The maximum resident set size (KB) = 1612768 + 0: The total amount of wall time = 190.508078 + 0: The maximum resident set size (KB) = 1607044 Test 041 merra2_thompson PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_control Checking test 042 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2019,28 +2019,28 @@ Checking test 042 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 298.207262 - 0: The maximum resident set size (KB) = 869608 + 0: The total amount of wall time = 299.912049 + 0: The maximum resident set size (KB) = 861976 Test 042 regional_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_restart +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_restart Checking test 043 regional_restart results .... Comparing dynf006.nc .........OK Comparing phyf006.nc .........OK Comparing PRSLEV.GrbF06 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 151.105835 - 0: The maximum resident set size (KB) = 858480 + 0: The total amount of wall time = 152.229412 + 0: The maximum resident set size (KB) = 863276 Test 043 regional_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_decomp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_decomp Checking test 044 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2051,14 +2051,14 @@ Checking test 044 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 315.113515 - 0: The maximum resident set size (KB) = 862316 + 0: The total amount of wall time = 316.512574 + 0: The maximum resident set size (KB) = 861816 Test 044 regional_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2threads +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_2threads Checking test 045 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2069,14 +2069,14 @@ Checking test 045 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 183.774985 - 0: The maximum resident set size (KB) = 846352 + 0: The total amount of wall time = 185.247429 + 0: The maximum resident set size (KB) = 841564 Test 045 regional_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_noquilt +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_noquilt Checking test 046 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2084,28 +2084,28 @@ Checking test 046 regional_noquilt 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 = 319.752331 - 0: The maximum resident set size (KB) = 858436 + 0: The total amount of wall time = 321.167039 + 0: The maximum resident set size (KB) = 857572 Test 046 regional_noquilt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_netcdf_parallel +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_netcdf_parallel Checking test 047 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 295.265561 - 0: The maximum resident set size (KB) = 862784 + 0: The total amount of wall time = 297.698990 + 0: The maximum resident set size (KB) = 859152 Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_2dwrtdecomp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_2dwrtdecomp Checking test 048 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2116,14 +2116,14 @@ Checking test 048 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 299.883535 - 0: The maximum resident set size (KB) = 868976 + 0: The total amount of wall time = 300.310215 + 0: The maximum resident set size (KB) = 868444 Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/fv3_regional_wofs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_wofs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/fv3_regional_wofs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_wofs Checking test 049 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -2134,14 +2134,14 @@ Checking test 049 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 378.073893 - 0: The maximum resident set size (KB) = 630048 + 0: The total amount of wall time = 374.398390 + 0: The maximum resident set size (KB) = 625376 Test 049 regional_wofs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2188,14 +2188,14 @@ Checking test 050 rap_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 457.286327 - 0: The maximum resident set size (KB) = 1062528 + 0: The total amount of wall time = 457.923071 + 0: The maximum resident set size (KB) = 1056260 Test 050 rap_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_spp_sppt_shum_skeb Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2206,14 +2206,14 @@ Checking test 051 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 282.929494 - 0: The maximum resident set size (KB) = 1182552 + 0: The total amount of wall time = 285.332609 + 0: The maximum resident set size (KB) = 1184948 Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_decomp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_decomp Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2260,14 +2260,14 @@ Checking test 052 rap_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 482.377870 - 0: The maximum resident set size (KB) = 1005644 + 0: The total amount of wall time = 480.386846 + 0: The maximum resident set size (KB) = 1001292 Test 052 rap_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_2threads Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2314,14 +2314,14 @@ Checking test 053 rap_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 439.657649 - 0: The maximum resident set size (KB) = 1132704 + 0: The total amount of wall time = 440.048623 + 0: The maximum resident set size (KB) = 1139396 Test 053 rap_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_restart Checking test 054 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -2360,14 +2360,14 @@ Checking test 054 rap_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 235.274557 - 0: The maximum resident set size (KB) = 979104 + 0: The total amount of wall time = 233.185584 + 0: The maximum resident set size (KB) = 967316 Test 054 rap_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_sfcdiff Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2414,14 +2414,14 @@ Checking test 055 rap_sfcdiff results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.046441 - 0: The maximum resident set size (KB) = 1067020 + 0: The total amount of wall time = 451.438736 + 0: The maximum resident set size (KB) = 1060088 Test 055 rap_sfcdiff PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_decomp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_sfcdiff_decomp Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2468,14 +2468,14 @@ Checking test 056 rap_sfcdiff_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.904897 - 0: The maximum resident set size (KB) = 1002688 + 0: The total amount of wall time = 478.516356 + 0: The maximum resident set size (KB) = 1001544 Test 056 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_restart +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_sfcdiff_restart Checking test 057 rap_sfcdiff_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2514,14 +2514,14 @@ Checking test 057 rap_sfcdiff_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.266838 - 0: The maximum resident set size (KB) = 979144 + 0: The total amount of wall time = 341.098346 + 0: The maximum resident set size (KB) = 988812 Test 057 rap_sfcdiff_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2568,14 +2568,14 @@ Checking test 058 hrrr_control results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 436.018687 - 0: The maximum resident set size (KB) = 1061832 + 0: The total amount of wall time = 434.808306 + 0: The maximum resident set size (KB) = 1057992 Test 058 hrrr_control PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_decomp Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2622,14 +2622,14 @@ Checking test 059 hrrr_control_decomp results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.666807 - 0: The maximum resident set size (KB) = 1005440 + 0: The total amount of wall time = 455.222558 + 0: The maximum resident set size (KB) = 1002168 Test 059 hrrr_control_decomp PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_2threads Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2676,14 +2676,14 @@ Checking test 060 hrrr_control_2threads results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 417.933550 - 0: The maximum resident set size (KB) = 1131396 + 0: The total amount of wall time = 416.222029 + 0: The maximum resident set size (KB) = 1143436 Test 060 hrrr_control_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_restart Checking test 061 hrrr_control_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -2722,14 +2722,14 @@ Checking test 061 hrrr_control_restart results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 330.449069 - 0: The maximum resident set size (KB) = 987544 + 0: The total amount of wall time = 329.931040 + 0: The maximum resident set size (KB) = 982616 Test 061 hrrr_control_restart PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_v1beta Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2776,14 +2776,14 @@ Checking test 062 rrfs_v1beta results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 446.646060 - 0: The maximum resident set size (KB) = 1060100 + 0: The total amount of wall time = 446.753546 + 0: The maximum resident set size (KB) = 1054192 Test 062 rrfs_v1beta PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_v1nssl Checking test 063 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2798,14 +2798,14 @@ Checking test 063 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.559905 - 0: The maximum resident set size (KB) = 696316 + 0: The total amount of wall time = 524.700083 + 0: The maximum resident set size (KB) = 688076 Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1nssl_nohailnoccn +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_v1nssl_nohailnoccn Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2820,14 +2820,14 @@ Checking test 064 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 512.966940 - 0: The maximum resident set size (KB) = 761772 + 0: The total amount of wall time = 511.840567 + 0: The maximum resident set size (KB) = 756036 Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_hrrr_warm Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2836,14 +2836,14 @@ Checking test 065 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.916329 - 0: The maximum resident set size (KB) = 930508 + 0: The total amount of wall time = 124.183047 + 0: The maximum resident set size (KB) = 935004 Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_smoke_conus13km_hrrr_warm Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2852,14 +2852,14 @@ Checking test 066 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 138.588293 - 0: The maximum resident set size (KB) = 962416 + 0: The total amount of wall time = 139.499452 + 0: The maximum resident set size (KB) = 959108 Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_radar_tten_warm Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2868,14 +2868,14 @@ Checking test 067 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 127.041292 - 0: The maximum resident set size (KB) = 936576 + 0: The total amount of wall time = 126.215851 + 0: The maximum resident set size (KB) = 939224 Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_hrrr_warm_2threads Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2884,14 +2884,14 @@ Checking test 068 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.431746 - 0: The maximum resident set size (KB) = 839424 + 0: The total amount of wall time = 79.066450 + 0: The maximum resident set size (KB) = 880136 Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_radar_tten_warm_2threads Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2900,14 +2900,14 @@ Checking test 069 rrfs_conus13km_radar_tten_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 78.258180 - 0: The maximum resident set size (KB) = 883784 + 0: The total amount of wall time = 79.521741 + 0: The maximum resident set size (KB) = 876616 Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_csawmg Checking test 070 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2918,14 +2918,14 @@ Checking test 070 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 342.585193 - 0: The maximum resident set size (KB) = 728640 + 0: The total amount of wall time = 340.455714 + 0: The maximum resident set size (KB) = 725040 Test 070 control_csawmg PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_csawmgt Checking test 071 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2936,14 +2936,14 @@ Checking test 071 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 340.893034 - 0: The maximum resident set size (KB) = 731672 + 0: The total amount of wall time = 340.079219 + 0: The maximum resident set size (KB) = 725684 Test 071 control_csawmgt PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_ras +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_ras Checking test 072 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2954,26 +2954,26 @@ Checking test 072 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 179.470427 - 0: The maximum resident set size (KB) = 718292 + 0: The total amount of wall time = 179.310234 + 0: The maximum resident set size (KB) = 714256 Test 072 control_ras PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_wam +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_wam Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.823326 - 0: The maximum resident set size (KB) = 647560 + 0: The total amount of wall time = 111.436079 + 0: The maximum resident set size (KB) = 637344 Test 073 control_wam PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_faster +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8_faster +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_p8_faster Checking test 074 control_p8_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -3020,14 +3020,14 @@ Checking test 074 control_p8_faster results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 151.900639 - 0: The maximum resident set size (KB) = 1607516 + 0: The total amount of wall time = 152.114541 + 0: The maximum resident set size (KB) = 1599012 Test 074 control_p8_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_control_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_control_faster +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_control_faster +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_control_faster Checking test 075 regional_control_faster results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -3038,42 +3038,42 @@ Checking test 075 regional_control_faster results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 270.437061 - 0: The maximum resident set size (KB) = 864472 + 0: The total amount of wall time = 272.862184 + 0: The maximum resident set size (KB) = 867500 Test 075 regional_control_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_hrrr_warm_debug Checking test 076 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 724.459357 - 0: The maximum resident set size (KB) = 962876 + 0: The total amount of wall time = 723.334589 + 0: The maximum resident set size (KB) = 955340 Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_conus13km_radar_tten_warm_debug Checking test 077 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 726.871197 - 0: The maximum resident set size (KB) = 965680 + 0: The total amount of wall time = 743.137174 + 0: The maximum resident set size (KB) = 964864 Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_CubedSphereGrid_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_CubedSphereGrid_debug Checking test 078 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -3100,334 +3100,334 @@ Checking test 078 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.614884 - 0: The maximum resident set size (KB) = 795052 + 0: The total amount of wall time = 161.097814 + 0: The maximum resident set size (KB) = 789788 Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wrtGauss_netcdf_parallel_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_wrtGauss_netcdf_parallel_debug Checking test 079 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.261332 - 0: The maximum resident set size (KB) = 791020 + 0: The total amount of wall time = 152.524364 + 0: The maximum resident set size (KB) = 793964 Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_stochy_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_stochy_debug Checking test 080 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 = 168.272166 - 0: The maximum resident set size (KB) = 797872 + 0: The total amount of wall time = 171.673164 + 0: The maximum resident set size (KB) = 796544 Test 080 control_stochy_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_lndp_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_lndp_debug Checking test 081 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 = 154.223818 - 0: The maximum resident set size (KB) = 797856 + 0: The total amount of wall time = 154.425893 + 0: The maximum resident set size (KB) = 797544 Test 081 control_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmg_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_csawmg_debug Checking test 082 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 = 230.571831 - 0: The maximum resident set size (KB) = 848408 + 0: The total amount of wall time = 229.435177 + 0: The maximum resident set size (KB) = 847032 Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_csawmgt_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_csawmgt_debug Checking test 083 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 = 225.138000 - 0: The maximum resident set size (KB) = 840036 + 0: The total amount of wall time = 228.613110 + 0: The maximum resident set size (KB) = 843248 Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_ras_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_ras_debug Checking test 084 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 = 154.972680 - 0: The maximum resident set size (KB) = 806112 + 0: The total amount of wall time = 152.785085 + 0: The maximum resident set size (KB) = 804912 Test 084 control_ras_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_diag_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_diag_debug Checking test 085 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.102472 - 0: The maximum resident set size (KB) = 852712 + 0: The total amount of wall time = 158.987670 + 0: The maximum resident set size (KB) = 848860 Test 085 control_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_debug_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_debug_p8 Checking test 086 control_debug_p8 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.907390 - 0: The maximum resident set size (KB) = 1628396 + 0: The total amount of wall time = 176.372469 + 0: The maximum resident set size (KB) = 1626724 Test 086 control_debug_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_debug Checking test 087 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 1005.893574 - 0: The maximum resident set size (KB) = 891616 + 0: The total amount of wall time = 980.427882 + 0: The maximum resident set size (KB) = 885088 Test 087 regional_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control_debug Checking test 088 rap_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 = 277.837989 - 0: The maximum resident set size (KB) = 1176976 + 0: The total amount of wall time = 279.611781 + 0: The maximum resident set size (KB) = 1174268 Test 088 rap_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_debug Checking test 089 hrrr_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 = 268.704799 - 0: The maximum resident set size (KB) = 1179500 + 0: The total amount of wall time = 273.448364 + 0: The maximum resident set size (KB) = 1169844 Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_drag_suite_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_unified_drag_suite_debug Checking test 090 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.182977 - 0: The maximum resident set size (KB) = 1177128 + 0: The total amount of wall time = 269.493634 + 0: The maximum resident set size (KB) = 1177352 Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_diag_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_diag_debug Checking test 091 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 292.112111 - 0: The maximum resident set size (KB) = 1258464 + 0: The total amount of wall time = 293.603847 + 0: The maximum resident set size (KB) = 1253820 Test 091 rap_diag_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_cires_ugwp_debug Checking test 092 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.781163 - 0: The maximum resident set size (KB) = 1175124 + 0: The total amount of wall time = 284.381100 + 0: The maximum resident set size (KB) = 1175920 Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_unified_ugwp_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_unified_ugwp_debug Checking test 093 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.043088 - 0: The maximum resident set size (KB) = 1178708 + 0: The total amount of wall time = 282.609981 + 0: The maximum resident set size (KB) = 1171416 Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_lndp_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_lndp_debug Checking test 094 rap_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 = 278.562159 - 0: The maximum resident set size (KB) = 1176952 + 0: The total amount of wall time = 286.143389 + 0: The maximum resident set size (KB) = 1176668 Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_flake_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_flake_debug Checking test 095 rap_flake_debug 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.417117 - 0: The maximum resident set size (KB) = 1176180 + 0: The total amount of wall time = 275.600919 + 0: The maximum resident set size (KB) = 1178344 Test 095 rap_flake_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_progcld_thompson_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_progcld_thompson_debug Checking test 096 rap_progcld_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 = 275.241406 - 0: The maximum resident set size (KB) = 1173156 + 0: The total amount of wall time = 280.438529 + 0: The maximum resident set size (KB) = 1174900 Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_noah_debug Checking test 097 rap_noah_debug 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.590600 - 0: The maximum resident set size (KB) = 1180780 + 0: The total amount of wall time = 272.679780 + 0: The maximum resident set size (KB) = 1177012 Test 097 rap_noah_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_sfcdiff_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_sfcdiff_debug Checking test 098 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.658775 - 0: The maximum resident set size (KB) = 1179596 + 0: The total amount of wall time = 278.251349 + 0: The maximum resident set size (KB) = 1174832 Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_noah_sfcdiff_cires_ugwp_debug Checking test 099 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 442.548197 - 0: The maximum resident set size (KB) = 1173372 + 0: The total amount of wall time = 447.892255 + 0: The maximum resident set size (KB) = 1170376 Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rrfs_v1beta_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rrfs_v1beta_debug Checking test 100 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.801710 - 0: The maximum resident set size (KB) = 1177084 + 0: The total amount of wall time = 269.571375 + 0: The maximum resident set size (KB) = 1171720 Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_wam_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_wam_debug Checking test 101 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 272.949961 - 0: The maximum resident set size (KB) = 522068 + 0: The total amount of wall time = 285.670200 + 0: The maximum resident set size (KB) = 519752 Test 101 control_wam_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_spp_sppt_shum_skeb_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -3438,14 +3438,14 @@ Checking test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 259.694383 - 0: The maximum resident set size (KB) = 1072796 + 0: The total amount of wall time = 262.624528 + 0: The maximum resident set size (KB) = 1072444 Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control_dyn32_phy32 Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3492,14 +3492,14 @@ Checking test 103 rap_control_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 369.589805 - 0: The maximum resident set size (KB) = 1005840 + 0: The total amount of wall time = 371.160517 + 0: The maximum resident set size (KB) = 996980 Test 103 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_dyn32_phy32 Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3546,14 +3546,14 @@ Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.723108 - 0: The maximum resident set size (KB) = 948932 + 0: The total amount of wall time = 192.725679 + 0: The maximum resident set size (KB) = 955688 Test 104 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_2threads_dyn32_phy32 Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3600,14 +3600,14 @@ Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 357.554377 - 0: The maximum resident set size (KB) = 1025644 + 0: The total amount of wall time = 356.041870 + 0: The maximum resident set size (KB) = 1019592 Test 105 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_2threads_dyn32_phy32 Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3654,14 +3654,14 @@ Checking test 106 hrrr_control_2threads_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.411512 - 0: The maximum resident set size (KB) = 1003256 + 0: The total amount of wall time = 189.667438 + 0: The maximum resident set size (KB) = 1007540 Test 106 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_decomp_dyn32_phy32 Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3708,14 +3708,14 @@ Checking test 107 hrrr_control_decomp_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.493453 - 0: The maximum resident set size (KB) = 896168 + 0: The total amount of wall time = 203.725511 + 0: The maximum resident set size (KB) = 891808 Test 107 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_restart_dyn32_phy32 Checking test 108 rap_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3754,14 +3754,14 @@ Checking test 108 rap_restart_dyn32_phy32 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 279.088594 - 0: The maximum resident set size (KB) = 951728 + 0: The total amount of wall time = 279.139671 + 0: The maximum resident set size (KB) = 953824 Test 108 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_restart_dyn32_phy32 Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK @@ -3800,14 +3800,14 @@ Checking test 109 hrrr_control_restart_dyn32_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 100.519303 - 0: The maximum resident set size (KB) = 869872 + 0: The total amount of wall time = 101.259669 + 0: The maximum resident set size (KB) = 869908 Test 109 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control_dyn64_phy32 Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -3854,81 +3854,81 @@ Checking test 110 rap_control_dyn64_phy32 results .... Comparing RESTART/20210322.180000.sfc_data.tile5.nc .........OK Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 241.503284 - 0: The maximum resident set size (KB) = 966964 + 0: The total amount of wall time = 239.969207 + 0: The maximum resident set size (KB) = 965788 Test 110 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control_debug_dyn32_phy32 Checking test 111 rap_control_debug_dyn32_phy32 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.714679 - 0: The maximum resident set size (KB) = 1056556 + 0: The total amount of wall time = 274.171033 + 0: The maximum resident set size (KB) = 1060428 Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hrrr_control_debug_dyn32_phy32 Checking test 112 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.297158 - 0: The maximum resident set size (KB) = 1055340 + 0: The total amount of wall time = 270.537047 + 0: The maximum resident set size (KB) = 1055052 Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/rap_control_dyn64_phy32_debug Checking test 113 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.435962 - 0: The maximum resident set size (KB) = 1107896 + 0: The total amount of wall time = 276.455305 + 0: The maximum resident set size (KB) = 1106140 Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_atm Checking test 114 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 242.955584 - 0: The maximum resident set size (KB) = 1048488 + 0: The total amount of wall time = 238.473198 + 0: The maximum resident set size (KB) = 1051180 Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_thompson_gfdlsf +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_atm_thompson_gfdlsf Checking test 115 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 328.182298 - 0: The maximum resident set size (KB) = 1413356 + 0: The total amount of wall time = 314.841763 + 0: The maximum resident set size (KB) = 1423508 Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_atm_ocn Checking test 116 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3937,14 +3937,14 @@ Checking test 116 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 384.993350 - 0: The maximum resident set size (KB) = 1221444 + 0: The total amount of wall time = 382.581767 + 0: The maximum resident set size (KB) = 1218492 Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_wav +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_atm_wav Checking test 117 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3953,14 +3953,14 @@ Checking test 117 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 770.019132 - 0: The maximum resident set size (KB) = 1247720 + 0: The total amount of wall time = 740.671503 + 0: The maximum resident set size (KB) = 1244448 Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_atm_ocn_wav Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3971,28 +3971,28 @@ Checking test 118 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 837.503485 - 0: The maximum resident set size (KB) = 1274444 + 0: The total amount of wall time = 837.513226 + 0: The maximum resident set size (KB) = 1271916 Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_1nest_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_1nest_atm Checking test 119 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 323.356677 - 0: The maximum resident set size (KB) = 508348 + 0: The total amount of wall time = 322.240359 + 0: The maximum resident set size (KB) = 506692 Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_telescopic_2nests_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_telescopic_2nests_atm Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4001,28 +4001,28 @@ Checking test 120 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK - 0: The total amount of wall time = 368.543455 - 0: The maximum resident set size (KB) = 513552 + 0: The total amount of wall time = 360.950620 + 0: The maximum resident set size (KB) = 513088 Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_1nest_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_global_1nest_atm Checking test 121 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 146.081995 - 0: The maximum resident set size (KB) = 352076 + 0: The total amount of wall time = 147.356039 + 0: The maximum resident set size (KB) = 346624 Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_multiple_4nests_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_global_multiple_4nests_atm Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4040,14 +4040,14 @@ Checking test 122 hafs_global_multiple_4nests_atm results .... Comparing HURPRS.GrbF06.nest04 .........OK Comparing HURPRS.GrbF06.nest05 .........OK - 0: The total amount of wall time = 418.454535 - 0: The maximum resident set size (KB) = 452284 + 0: The total amount of wall time = 414.554280 + 0: The maximum resident set size (KB) = 424752 Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_specified_moving_1nest_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_specified_moving_1nest_atm Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4056,28 +4056,28 @@ Checking test 123 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 201.570506 - 0: The maximum resident set size (KB) = 517180 + 0: The total amount of wall time = 203.579851 + 0: The maximum resident set size (KB) = 514628 Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_storm_following_1nest_atm Checking test 124 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 191.223663 - 0: The maximum resident set size (KB) = 512396 + 0: The total amount of wall time = 191.739988 + 0: The maximum resident set size (KB) = 515632 Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_storm_following_1nest_atm_ocn Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4086,42 +4086,42 @@ Checking test 125 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 221.839606 - 0: The maximum resident set size (KB) = 553232 + 0: The total amount of wall time = 220.516865 + 0: The maximum resident set size (KB) = 547632 Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_global_storm_following_1nest_atm +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_global_storm_following_1nest_atm Checking test 126 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 57.966599 - 0: The maximum resident set size (KB) = 364772 + 0: The total amount of wall time = 59.306499 + 0: The maximum resident set size (KB) = 365764 Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 127 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 774.344168 - 0: The maximum resident set size (KB) = 578000 + 0: The total amount of wall time = 767.374920 + 0: The maximum resident set size (KB) = 578460 Test 127 hafs_regional_storm_following_1nest_atm_ocn_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_storm_following_1nest_atm_ocn_wav +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4132,14 +4132,14 @@ Checking test 128 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 512.999576 - 0: The maximum resident set size (KB) = 613656 + 0: The total amount of wall time = 514.526073 + 0: The maximum resident set size (KB) = 611592 Test 128 hafs_regional_storm_following_1nest_atm_ocn_wav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_docn Checking test 129 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4147,14 +4147,14 @@ Checking test 129 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.738028 - 0: The maximum resident set size (KB) = 1224592 + 0: The total amount of wall time = 353.935301 + 0: The maximum resident set size (KB) = 1225668 Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_docn_oisst +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_docn_oisst Checking test 130 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -4162,131 +4162,131 @@ Checking test 130 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 354.032162 - 0: The maximum resident set size (KB) = 1213328 + 0: The total amount of wall time = 354.989644 + 0: The maximum resident set size (KB) = 1205208 Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/hafs_regional_datm_cdeps +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/hafs_regional_datm_cdeps Checking test 131 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 958.972743 - 0: The maximum resident set size (KB) = 1039888 + 0: The total amount of wall time = 952.046283 + 0: The maximum resident set size (KB) = 1033640 Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_control_cfsr Checking test 132 datm_cdeps_control_cfsr results .... Comparing RESTART/20111002.000000.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.509189 - 0: The maximum resident set size (KB) = 1067200 + 0: The total amount of wall time = 152.146263 + 0: The maximum resident set size (KB) = 1067404 Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_restart_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_restart_cfsr Checking test 133 datm_cdeps_restart_cfsr results .... Comparing RESTART/20111002.000000.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 = 91.274729 - 0: The maximum resident set size (KB) = 1011756 + 0: The total amount of wall time = 89.631964 + 0: The maximum resident set size (KB) = 1012148 Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_gefs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_control_gefs Checking test 134 datm_cdeps_control_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.717256 - 0: The maximum resident set size (KB) = 961944 + 0: The total amount of wall time = 149.162069 + 0: The maximum resident set size (KB) = 960816 Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_iau_gefs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_iau_gefs Checking test 135 datm_cdeps_iau_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.047499 - 0: The maximum resident set size (KB) = 958916 + 0: The total amount of wall time = 149.200171 + 0: The maximum resident set size (KB) = 965948 Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_stochy_gefs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_stochy_gefs Checking test 136 datm_cdeps_stochy_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.018825 - 0: The maximum resident set size (KB) = 970304 + 0: The total amount of wall time = 148.866178 + 0: The maximum resident set size (KB) = 959240 Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_ciceC_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_ciceC_cfsr Checking test 137 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/20111002.000000.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 = 154.712892 - 0: The maximum resident set size (KB) = 1070416 + 0: The total amount of wall time = 151.587890 + 0: The maximum resident set size (KB) = 1066656 Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_bulk_cfsr Checking test 138 datm_cdeps_bulk_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.370258 - 0: The maximum resident set size (KB) = 1058064 + 0: The total amount of wall time = 152.780141 + 0: The maximum resident set size (KB) = 1059728 Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_bulk_gefs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_bulk_gefs Checking test 139 datm_cdeps_bulk_gefs results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.055211 - 0: The maximum resident set size (KB) = 968664 + 0: The total amount of wall time = 149.577208 + 0: The maximum resident set size (KB) = 959932 Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_mx025_cfsr Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4295,14 +4295,14 @@ Checking test 140 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 399.453884 - 0: The maximum resident set size (KB) = 877240 + 0: The total amount of wall time = 392.710219 + 0: The maximum resident set size (KB) = 872112 Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_mx025_gefs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_mx025_gefs Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/20111001.120000.MOM.res.nc .........OK Comparing RESTART/20111001.120000.MOM.res_1.nc .........OK @@ -4311,77 +4311,77 @@ Checking test 141 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 393.169957 - 0: The maximum resident set size (KB) = 935464 + 0: The total amount of wall time = 389.834336 + 0: The maximum resident set size (KB) = 928728 Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_multiple_files_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_multiple_files_cfsr Checking test 142 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.922241 - 0: The maximum resident set size (KB) = 1075212 + 0: The total amount of wall time = 154.697328 + 0: The maximum resident set size (KB) = 1076516 Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_3072x1536_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_3072x1536_cfsr Checking test 143 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/20111002.000000.MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 217.389971 - 0: The maximum resident set size (KB) = 2374092 + 0: The total amount of wall time = 212.871391 + 0: The maximum resident set size (KB) = 2369828 Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_gfs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_gfs Checking test 144 datm_cdeps_gfs results .... Comparing RESTART/20210323.060000.MOM.res.nc .........OK Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/DATM_GFS.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 217.281501 - 0: The maximum resident set size (KB) = 2368220 + 0: The total amount of wall time = 215.015181 + 0: The maximum resident set size (KB) = 2359256 Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_debug_cfsr +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_debug_cfsr Checking test 145 datm_cdeps_debug_cfsr results .... Comparing RESTART/20111001.060000.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 = 440.546373 - 0: The maximum resident set size (KB) = 983616 + 0: The total amount of wall time = 443.708020 + 0: The maximum resident set size (KB) = 983504 Test 145 datm_cdeps_debug_cfsr PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_control_cfsr_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_control_cfsr_faster +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_control_cfsr_faster Checking test 146 datm_cdeps_control_cfsr_faster results .... Comparing RESTART/20111002.000000.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.435970 - 0: The maximum resident set size (KB) = 1057416 + 0: The total amount of wall time = 151.757345 + 0: The maximum resident set size (KB) = 1070576 Test 146 datm_cdeps_control_cfsr_faster PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_lnd_gswp3 Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4390,14 +4390,14 @@ Checking test 147 datm_cdeps_lnd_gswp3 results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 6.853825 - 0: The maximum resident set size (KB) = 255360 + 0: The total amount of wall time = 6.435747 + 0: The maximum resident set size (KB) = 256732 Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/datm_cdeps_lnd_gswp3_rst +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/datm_cdeps_lnd_gswp3_rst Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK @@ -4406,14 +4406,14 @@ Checking test 148 datm_cdeps_lnd_gswp3_rst results .... Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK - 0: The total amount of wall time = 12.162825 - 0: The maximum resident set size (KB) = 254720 + 0: The total amount of wall time = 13.094859 + 0: The maximum resident set size (KB) = 247400 Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_p8_atmlnd_sbs +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_p8_atmlnd_sbs Checking test 149 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4498,14 +4498,14 @@ Checking test 149 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 201.535774 - 0: The maximum resident set size (KB) = 1615160 + 0: The total amount of wall time = 201.469150 + 0: The maximum resident set size (KB) = 1605848 Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/control_atmwav +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/control_atmwav Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -4549,14 +4549,14 @@ Checking test 150 control_atmwav results .... Comparing RESTART/20210322.180000.sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 86.416940 - 0: The maximum resident set size (KB) = 664156 + 0: The total amount of wall time = 87.160359 + 0: The maximum resident set size (KB) = 658540 Test 150 control_atmwav PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8 +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/atmaero_control_p8 Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4600,14 +4600,14 @@ Checking test 151 atmaero_control_p8 results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 226.129838 - 0: The maximum resident set size (KB) = 2974392 + 0: The total amount of wall time = 224.145613 + 0: The maximum resident set size (KB) = 2974056 Test 151 atmaero_control_p8 PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/atmaero_control_p8_rad Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4651,14 +4651,14 @@ Checking test 152 atmaero_control_p8_rad results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 278.367521 - 0: The maximum resident set size (KB) = 3050176 + 0: The total amount of wall time = 282.169104 + 0: The maximum resident set size (KB) = 3042344 Test 152 atmaero_control_p8_rad PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/atmaero_control_p8_rad_micro +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/atmaero_control_p8_rad_micro Checking test 153 atmaero_control_p8_rad_micro results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -4702,14 +4702,14 @@ Checking test 153 atmaero_control_p8_rad_micro results .... Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 283.984874 - 0: The maximum resident set size (KB) = 3054772 + 0: The total amount of wall time = 281.403704 + 0: The maximum resident set size (KB) = 3051532 Test 153 atmaero_control_p8_rad_micro PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_atmaq +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_atmaq Checking test 154 regional_atmaq results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4725,14 +4725,14 @@ Checking test 154 regional_atmaq results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 603.633149 - 0: The maximum resident set size (KB) = 1567884 + 0: The total amount of wall time = 589.091788 + 0: The maximum resident set size (KB) = 1562972 Test 154 regional_atmaq PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_debug +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_atmaq_debug +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_atmaq_debug Checking test 155 regional_atmaq_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -4746,14 +4746,14 @@ Checking test 155 regional_atmaq_debug results .... Comparing RESTART/20190801.130000.phy_data.nc .........OK Comparing RESTART/20190801.130000.sfc_data.nc .........OK - 0: The total amount of wall time = 1323.205196 - 0: The maximum resident set size (KB) = 1510800 + 0: The total amount of wall time = 1320.392284 + 0: The maximum resident set size (KB) = 1497688 Test 155 regional_atmaq_debug PASS -baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20230308/INTEL/regional_atmaq_faster -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15969/regional_atmaq_faster +baseline dir = /scratch1/NCEPDEV/stmp4/Samuel.Trahan/IFI_RT/REGRESSION_TEST_INTEL/regional_atmaq_faster +working dir = /scratch1/NCEPDEV/stmp2/Samuel.Trahan/IFI_RT/rt_87807/regional_atmaq_faster Checking test 156 regional_atmaq_faster results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -4769,12 +4769,12 @@ Checking test 156 regional_atmaq_faster results .... Comparing RESTART/20190801.180000.phy_data.nc .........OK Comparing RESTART/20190801.180000.sfc_data.nc .........OK - 0: The total amount of wall time = 567.628965 - 0: The maximum resident set size (KB) = 1563280 + 0: The total amount of wall time = 561.613525 + 0: The maximum resident set size (KB) = 1550004 Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 14 02:26:40 UTC 2023 -Elapsed time: 01h:23m:49s. Have a nice day! +Wed Mar 15 16:31:13 UTC 2023 +Elapsed time: 01h:38m:03s. Have a nice day! diff --git a/tests/fv3_conf/rrfs_warm_run.IN b/tests/fv3_conf/rrfs_warm_run.IN index ddfbeba4a8..966f17dfa6 100644 --- a/tests/fv3_conf/rrfs_warm_run.IN +++ b/tests/fv3_conf/rrfs_warm_run.IN @@ -48,6 +48,8 @@ if [ $IMP_PHYSICS = 8 ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_gsd/CCN_ACTIVATE.BIN . fi +cp ${PATHRT}/parm/postxconfig-NT-fv3lam.txt postxconfig-NT.txt + if [ $DO_RRTMGP = .true. ]; then cp @[INPUTDATA_ROOT]/FV3_input_data_RRTMGP/* . fi diff --git a/tests/parm/postxconfig-NT-fv3lam.txt b/tests/parm/postxconfig-NT-fv3lam.txt index db3ccdde66..83972b3ed3 100644 --- a/tests/parm/postxconfig-NT-fv3lam.txt +++ b/tests/parm/postxconfig-NT-fv3lam.txt @@ -1,6 +1,6 @@ 2 -219 -264 +225 +263 PRSLEV 32769 ncep_nco @@ -9341,43 +9341,6 @@ surface ? ? ? -444 -LTNG_ON_SURFACE -lightning -1 -tmpl4_0 -LTNG -NCEP -? -surface -0 -? -0 -? -? -0 -? -0 -? -? -? -0 -0.0 -0 -0.0 -? -0 -0.0 -0 -0.0 -1 -1.0 -0 -0 -0 -? -? -? 581 VIL_ON_ENTIRE_ATMOS entire atmosphere Vertically Integrated Liquid (kg/m-2) @@ -17904,3 +17867,225 @@ surface ? ? ? +704 +GSD_MAX_LTG_THREAT3_ON_ENTIRE_ATMOS +? +1 +tmpl4_8 +LTNG +NCEP +MAX +entire_atmos +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1006 +SDEN_ON_SURFACE +? +1 +tmpl4_0 +SDEN +? +? +surface +0 +? +0 +? +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +6.0 +0 +0 +0 +? +? +? +1007 +ICE_PROB_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICPRB +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1008 +SLD_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +SIPD +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1009 +ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICSEV +NCEP +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? +1010 +WMO_ICE_SEV_CAT_IFI_FLIGHT_LEVEL +? +1 +tmpl4_0 +ICESEV +? +? +spec_alt_above_mean_sea_lvl +1 +1 +60 +5000. 10000. 15000. 20000. 25000. 30000. 35000. 40000. 45000. 50000. 55000. 60000. 65000. 70000. 75000. 80000. 85000. 90000. 95000. 100000. 105000. 110000. 115000. 120000. 125000. 130000. 135000. 140000. 145000. 150000. 155000. 160000. 165000. 170000. 175000. 180000. 185000. 190000. 195000. 200000. 205000. 210000. 215000. 220000. 225000. 230000. 235000. 240000. 245000. 250000. 255000. 260000. 265000. 270000. 275000. 280000. 285000. 290000. 295000. 300000. +? +0 +? +0 +? +? +? +0 +0.0 +0 +0.0 +? +0 +0.0 +0 +0.0 +1 +4.0 +0 +0 +0 +? +? +? diff --git a/tests/rt.conf b/tests/rt.conf index dce308f1ca..844251759a 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -80,6 +80,12 @@ RUN | regional_netcdf_parallel RUN | regional_2dwrtdecomp | | | RUN | regional_wofs | | fv3 | +COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DREQUIRE_IFI=ON | + acorn.intel | fv3 | +RUN | regional_control_ifi | + acorn.intel | fv3 | +RUN | regional_decomp_ifi | + acorn.intel | | +RUN | regional_2threads_ifi | + acorn.intel | | + + COMPILE | -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON | | fv3 | RUN | rap_control | | fv3 | diff --git a/tests/tests/regional_2threads_ifi b/tests/tests/regional_2threads_ifi new file mode 100644 index 0000000000..4f1fb4a7dd --- /dev/null +++ b/tests/tests/regional_2threads_ifi @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional threading test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional threading results with previous trunk version" + +export CNTL_DIR=regional_control_ifi + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export atm_omp_num_threads=2 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_control_ifi b/tests/tests/regional_control_ifi new file mode 100644 index 0000000000..57521c8f72 --- /dev/null +++ b/tests/tests/regional_control_ifi @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional control with IFI (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional control results with IFI against previous trunk version" + +export CNTL_DIR=regional_control_ifi + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="3 -1" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=10 +export JNPES=11 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1 diff --git a/tests/tests/regional_decomp_ifi b/tests/tests/regional_decomp_ifi new file mode 100644 index 0000000000..e2a560950d --- /dev/null +++ b/tests/tests/regional_decomp_ifi @@ -0,0 +1,45 @@ +############################################################################### +# +# FV3 regional + IFI with different MPI decomposition (hi-res 3km, small domain) test +# +############################################################################### + +export TEST_DESCR="Compare FV3 regional with IFI; different decomposition results with previous trunk version" + +export CNTL_DIR=regional_control_ifi + +export LIST_FILES="dynf000.nc \ + dynf006.nc \ + phyf000.nc \ + phyf006.nc \ + PRSLEV.GrbF00 \ + PRSLEV.GrbF06 \ + NATLEV.GrbF00 \ + NATLEV.GrbF06" + +export_fv3 + +export FV3_RUN=regional_run.IN + +export OZ_PHYS_OLD=.false. +export OZ_PHYS_NEW=.true. +export H2O_PHYS=.true. +export HYBEDMF=.false. +export RESTART_INTERVAL="0" +export WRITE_DOPOST=.true. +export POSTAPP='lam' + +export CCPP_SUITE=FV3_GFS_v15_thompson_mynn_lam3km +export INPUT_NML=regional.nml.IN +export MODEL_CONFIGURE=model_configure_regional.IN +export DIAG_TABLE=diag_table_lam +export FIELD_TABLE=field_table_regional + +export WLCLK=15 +export FHMAX=6 +export INPES=11 +export JNPES=10 +export OUTPUT_FH="3 -1" +WRITE_GROUP=1 +WRTTASK_PER_GROUP=10 +NTILES=1